diff --git a/docs/Architecture.html b/docs/Architecture.html new file mode 100644 index 000000000..9f411bbeb --- /dev/null +++ b/docs/Architecture.html @@ -0,0 +1,293 @@ + + + + + + Architecture - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Architecture

+

Near node consists roughly of a blockchain layer and a runtime layer. +These layers are designed to be independent from each other: the blockchain layer can in theory support runtime that processes +transactions differently, has a different virtual machine (e.g. RISC-V), has different fees; on the other hand the runtime +is oblivious to where the transactions are coming from. It is not aware whether the +blockchain it runs on is sharded, what consensus it uses, and whether it runs as part of a blockchain at all.

+

The blockchain layer and the runtime layer share the following components and invariants:

+

Transactions and Receipts

+

Transactions and receipts are a fundamental concept in Near Protocol. Transactions represent actions requested by the +blockchain user, e.g. send assets, create account, execute a method, etc. Receipts, on the other hand is an internal +structure; think of a receipt as a message which is used inside a message-passing system.

+

Transactions are created outside the Near Protocol node, by the user who sends them via RPC or network communication. +Receipts are created by the runtime from transactions or as the result of processing other receipts.

+

Blockchain layer cannot create or process transactions and receipts, it can only manipulate them by passing them +around and feeding them to a runtime.

+

Account-Based System

+

Similar to Ethereum, Near Protocol is an account-based system. Which means that each blockchain user is roughly +associated with one or several accounts (there are exceptions though, when users share an account and are separated +through the access keys).

+

The runtime is essentially a complex set of rules on what to do with accounts based on the information from the +transactions and the receipts. It is therefore deeply aware of the concept of account.

+

Blockchain layer however is mostly aware of the accounts through the trie (see below) and the validators (see below). +Outside these two it does not operate on the accounts directly.

+

Assume every account belongs to its own shard

+

Every account at NEAR belongs to some shard. +All the information related to this account also belongs to the same shard. The information includes:

+
    +
  • Balance
  • +
  • Locked balance (for staking)
  • +
  • Code of the contract
  • +
  • Key-value storage of the contract
  • +
  • All Access Keys
  • +
+

Runtime assumes, it's the only information that is available for the contract execution. +While other accounts may belong to the same shards, the Runtime never uses or provides them during contract execution. +We can just assume that every account belongs to its own shard. So there is no reason to intentionally try to collocate accounts.

+

Trie

+

Near Protocol is a stateful blockchain -- there is a state associated with each account and the user actions performed +through transactions mutate that state. The state then is stored as a trie, and both the blockchain layer and the +runtime layer are aware of this technical detail.

+

The blockchain layer manipulates the trie directly. It partitions the trie between the shards to distribute the load. +It synchronizes the trie between the nodes, and eventually it is responsible for maintaining the consistency of the trie +between the nodes through its consensus mechanism and other game-theoretic methods.

+

The runtime layer is also aware that the storage that it uses to perform the operations on is a trie. In general it does +not have to know this technical detail and in theory we could have abstracted out the trie as a generic key-value storage. +However, we allow some trie-specific operations that we expose to the smart contract developers so that they utilize +Near Protocol to its maximum efficiency.

+

Tokens and gas

+

Even though tokens is a fundamental concept of the blockchain, it is neatly encapsulated +inside the runtime layer together with the gas, fees, and rewards.

+

The only way the blockchain layer is aware of the tokens and the gas is through the computation of the exchange rate +and the inflation which is based strictly on the block production mechanics.

+

Validators

+

Both the blockchain layer and the runtime layer are aware of a special group of participants who are +responsible for maintaining the integrity of the Near Protocol. These participants are associated with the +accounts and are rewarded accordingly. The reward part is what the runtime layer is aware of, while everything +around the orchestration of the validators is inside the blockchain layer.

+

Blockchain Layer Concepts

+

Interestingly, the following concepts are for the blockchain layer only and the runtime layer is not aware of them:

+
    +
  • Sharding -- the runtime layer does not know that it is being used in a sharded blockchain, e.g. it does not know +that the trie it works on is only a part of the overall blockchain state;
  • +
  • Blocks or chunks -- the runtime does not know that the receipts that it processes constitute a chunk and that the output +receipts will be used in other chunks. From the runtime perspective it consumes and outputs batches of transactions and receipts;
  • +
  • Consensus -- the runtime does not know how consistency of the state is maintained;
  • +
  • Communication -- the runtime don't know anything about the current network topology. Receipt has only a receiver_id (a recipient account), but knows nothing about the destination shard, so it's a responsibility of a blockchain layer to route a particular receipt.
  • +
+

Runtime Layer Concepts

+
    +
  • Fees and rewards -- fees and rewards are neatly encapsulated in the runtime layer. The blockchain layer, however +has an indirect knowledge of them through the computation of the tokens-to-gas exchange rate and the inflation.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/ChainSpec/README.html b/docs/ChainSpec/README.html new file mode 100644 index 000000000..0ba56a068 --- /dev/null +++ b/docs/ChainSpec/README.html @@ -0,0 +1,223 @@ + + + + + + Chain specification - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Chain Specification

+

TBD

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/ChainSpec/Transactions.html b/docs/ChainSpec/Transactions.html new file mode 100644 index 000000000..5b6da0ecb --- /dev/null +++ b/docs/ChainSpec/Transactions.html @@ -0,0 +1,471 @@ + + + + + + Transactions - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Transactions in the Blockchain Layer

+

A client creates a transaction, computes the transaction hash and signs this hash to get a signed transaction. +Now this signed transaction can be sent to a node.

+

When a node receives a new signed transaction, it validates the transaction (if the node tracks the shard) and gossips it to the peers. Eventually, the valid transaction is added to a transaction pool.

+

Every validating node has its own transaction pool. The transaction pool maintains transactions that were not yet discarded and not yet included into the chain.

+

Before producing a chunk transactions are ordered and validated again. This is done to produce chunks with only valid transactions.

+

Transaction ordering

+

The transaction pool groups transactions by a pair of (signer_id, signer_public_key). +The signer_id is the account ID of the user who signed the transaction, the signer_public_key is the public key of the account's access key that was used to sign the transactions. +Transactions within a group are not ordered.

+

The valid order of the transactions in a chunk is the following:

+
    +
  • transactions are ordered in batches.
  • +
  • within a batch all transactions keys should have different.
  • +
  • a set of transaction keys in each subsequent batch should be a sub-set of keys from the previous batch.
  • +
  • transactions with the same key should be ordered in strictly increasing order of their corresponding nonces.
  • +
+

Note:

+
    +
  • the order within a batch is undefined. Each node should use a unique secret seed for that ordering to users from finding the lowest keys to get advantage of every node.
  • +
+

Transaction pool provides a draining structure that allows to pull transactions in a proper order.

+

Transaction validation

+

The transaction validation happens twice, once before adding to the transaction pool, next before adding to a chunk.

+

Before adding to a transaction pool

+

This is done to quickly filter out transactions that have an invalid signature or are invalid on the latest state.

+

Before adding to a chunk

+

A chunk producer has to create a chunk with valid and ordered transactions up to some limits. +One limit is the maximum number of transactions, another is the total gas burnt for transactions.

+

To order and filter transactions, chunk producer gets a pool iterator and passes it to the runtime adapter. +The runtime adapter pulls transactions one by one. +The valid transactions are added to the result, invalid transactions are discarded. +Once the limit is reached, all the remaining transactions from the iterator are returned back to the pool.

+

Pool iterator

+

Pool Iterator is a trait that iterates over transaction groups until all transaction group are empty. +Pool Iterator returns a mutable reference to a transaction group that implements a draining iterator. +The draining iterator is like a normal iterator, but it removes the returned entity from the group. +It pulls transactions from the group in order from the smallest nonce to largest.

+

The pool iterator and draining iterators for transaction groups allow the runtime adapter to create proper order. +For every transaction group, the runtime adapter keeps pulling transactions until the valid transaction is found. +If the transaction group becomes empty, then it's skipped.

+

The runtime adapter may implement the following code to pull all valid transactions:

+

+#![allow(unused_variables)]
+fn main() {
+let mut valid_transactions = vec![];
+let mut pool_iter = pool.pool_iterator();
+while let Some(group_iter) = pool_iter.next() {
+    while let Some(tx) = group_iter.next() {
+        if is_valid(tx) {
+            valid_transactions.push(tx);
+            break;
+        }
+    }
+}
+valid_transactions
+}
+
+

Transaction ordering example using pool iterator.

+

Let's say:

+
    +
  • account IDs as uppercase letters ("A", "B", "C" ...)
  • +
  • public keys are lowercase letters ("a", "b", "c" ...)
  • +
  • nonces are numbers (1, 2, 3 ...)
  • +
+

A pool might have group of transactions in the hashmap:

+
transactions: {
+  ("A", "a") -> [1, 3, 2, 1, 2]
+  ("B", "b") -> [13, 14]
+  ("C", "d") -> [7]
+  ("A", "c") -> [5, 2, 3]
+}
+
+

There are 3 accounts ("A", "B", "C"). Account "A" used 2 public keys ("a", "c"). Other accounts used 1 public key each. +Transactions within each group may have repeated nonces while in the pool. +That's because the pool doesn't filter transactions with the same nonce, only transactions with the same hash.

+

For this example, let's say that transactions are valid if the nonce is even and strictly greater than the previous nonce for the same key.

+
Initialization
+

When .pool_iterator() is called, a new PoolIteratorWrapper is created and it holds the mutuable reference to the pool, +so the pool can't be modified outside of this iterator. The wrapper looks like this:

+
pool: {
+    transactions: {
+      ("A", "a") -> [1, 3, 2, 1, 2]
+      ("B", "b") -> [13, 14]
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [],
+
+

sorted_groups is a queue of sorted transaction groups that were already sorted and pulled from the pool.

+
Transaction #1
+

The first group to be selected is for key ("A", "a"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[1, 1, 2, 2, 3]. Runtime adapter pulls 1, then 1, and then 2. Both transactions with nonce 1 are invalid because of odd nonce.

+

Transaction with nonce 2 is added to the list of valid transactions.

+

The transaction group is dropped and the pool iterator wrapper becomes the following:

+
pool: {
+    transactions: {
+      ("B", "b") -> [13, 14]
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+
Transaction #2
+

The next group is for key ("B", "b"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[13, 14]. Runtime adapter pulls 13, then 14. The transaction with nonce 13 is invalid because of odd nonce.

+

Transaction with nonce 14 is added to the list of valid transactions.

+

The transaction group is dropped, but it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: {
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+
Transaction #3
+

The next group is for key ("C", "d"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[7]. Runtime adapter pulls 7. The transaction with nonce 7 is invalid because of odd nonce.

+

No valid transactions is added for this group.

+

The transaction group is dropped, it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: {
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+

The next group is for key ("A", "c"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[2, 3, 5]. Runtime adapter pulls 2.

+

It's a valid transaction, so it's added to the list of valid transactions.

+

The transaction group is dropped, so the pool iterator drops it completely:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+  ("A", "c") -> [3, 5]
+],
+
+
Transaction #4
+

The next group is pulled not from the pool, but from the sorted_groups. The key is ("A", "a"). +It's already sorted, so the iterator returns the mutable reference. Nonces are: +[2, 3]. Runtime adapter pulls 2, then pulls 3.

+

The transaction with nonce 2 is invalid, because we've already pulled a transaction #1 from this group and it had nonce 2. +The new nonce has to be larger than the previous nonce, so this transaction is invalid.

+

The transaction with nonce 3 is invalid because of odd nonce.

+

No valid transactions is added for this group.

+

The transaction group is dropped, it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [
+  ("A", "c") -> [3, 5]
+],
+
+

The next group is for key ("A", "c"), with nonces [3, 5]. +Runtime adapter pulls 3, then pulls 5. Both transactions are invalid, because the nonce is odd.

+

No transactions are added.

+

The transaction group is dropped, the pool iterator wrapper becomes empty:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [ ],
+
+

When runtime adapter tries to pull the next group, the pool iterator returns None, so the runtime adapter drops the iterator.

+
Dropping iterator
+

If the iterator was not fully drained, but some transactions still remained. They would be reinserted back into the pool.

+
Chunk Transactions
+

Transactions that were pulled from the pool:

+
// First batch
+("A", "a", 1),
+("A", "a", 1),
+("A", "a", 2),
+("B", "b", 13),
+("B", "b", 14),
+("C", "d", 7),
+("A", "c", 2),
+
+// Next batch
+("A", "a", 2),
+("A", "a", 3),
+("A", "c", 3),
+("A", "c", 5),
+
+

The valid transactions are:

+
("A", "a", 2),
+("B", "b", 14),
+("A", "c", 2),
+
+

In total there were only 3 valid transactions, that resulted in one batch.

+

Order validation

+

Other validators need to check the order of transactions in the produced chunk. +It can be done in linear time, using a greedy algorithm.

+

To select a first batch we need to iterate over transactions one by one until we see a transaction +with the key that we've already included in the first batch. +This transaction belongs to the next batch.

+

Now all transactions in the N+1 batch should have a corresponding transaction with the same key in the N batch. +If there are no transaction with the same key in the N batch, then the order is invalid.

+

We also enforce the order of the sequence of transactions for the same key, the nonces of them should be in strictly increasing order.

+

Here is the algorithm that validates the order:

+

+#![allow(unused_variables)]
+fn main() {
+fn validate_order(txs: &Vec<Transaction>) -> bool {
+    let mut nonces: HashMap<Key, Nonce> = HashMap::new();
+    let mut batches: HashMap<Key, usize> = HashMap::new();
+    let mut current_batch = 1;
+
+    for tx in txs {
+        let key = tx.key();
+
+        // Verifying nonce
+        let nonce = tx.nonce();
+        if let Some(last_nonce) = nonces.get(key) {
+            if nonce <= last_nonce {
+                // Nonces should increase.
+                return false;
+            }
+        }
+        nonces.insert(key, nonce);
+
+        // Verifying batch
+        if let Some(last_batch) = batches.get(key) {
+            if last_batch == current_batch {
+                current_batch += 1;
+            } else if last_batch < current_batch - 1 {
+                // Was skipped this key in the previous batch
+                return false;
+            }
+        } else {
+            if current_batch > 1 {
+                // Not in first batch
+                return false;
+            }
+        }
+        batches.insert(key, batch);
+    }
+    true
+}
+}
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/DataStructures/AccessKey.html b/docs/DataStructures/AccessKey.html new file mode 100644 index 000000000..bebdb77c3 --- /dev/null +++ b/docs/DataStructures/AccessKey.html @@ -0,0 +1,274 @@ + + + + + + Access Key - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Access Keys

+

Access key provides an access for a particular account. Each access key belongs to some account and +is identified by a unique (within the account) public key. Access keys are stored as account_id,public_key in a trie state. Account can have from zero to multiple access keys.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct AccessKey {
+    /// The nonce for this access key.
+    /// NOTE: In some cases the access key needs to be recreated. If the new access key reuses the
+    /// same public key, the nonce of the new access key should be equal to the nonce of the old
+    /// access key. It's required to avoid replaying old transactions again.
+    pub nonce: Nonce,
+    /// Defines permissions for this access key.
+    pub permission: AccessKeyPermission,
+}
+}
+
+

There are 2 types of AccessKeyPermission in Near currently: FullAccess and FunctionCall. FunctionCall grants a permission to issue any action on account like DeployContract, Transfer tokens to other account, call functions FunctionCall, Stake and even delete account DeleteAccountAction. FullAccess also allow to manage access keys. AccessKeyPermission::FunctionCall limits to do only contract calls.

+

+#![allow(unused_variables)]
+fn main() {
+pub enum AccessKeyPermission {
+    FunctionCall(FunctionCallPermission),
+    FullAccess,
+}
+}
+
+

AccessKeyPermission::FunctionCall

+

Grants limited permission to make FunctionCall to a specified receiver_id and methods of a particular contract with a limit of allowed balance to spend.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct FunctionCallPermission {
+    /// Allowance is a balance limit to use by this access key to pay for function call gas and
+    /// transaction fees. When this access key is used, both account balance and the allowance is
+    /// decreased by the same value.
+    /// `None` means unlimited allowance.
+    /// NOTE: To change or increase the allowance, the old access key needs to be deleted and a new
+    /// access key should be created.
+    pub allowance: Option<Balance>,
+
+    /// The access key only allows transactions with the given receiver's account id.
+    pub receiver_id: AccountId,
+
+    /// A list of method names that can be used. The access key only allows transactions with the
+    /// function call of one of the given method names.
+    /// Empty list means any method name can be used.
+    pub method_names: Vec<String>,
+}
+}
+
+

Account without access keys

+

If account has no access keys attached it means that it has no owner who can run transactions from its behalf. However, if such accounts has code it can be invoked by other accounts and contracts.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/DataStructures/Account.html b/docs/DataStructures/Account.html new file mode 100644 index 000000000..10840719c --- /dev/null +++ b/docs/DataStructures/Account.html @@ -0,0 +1,323 @@ + + + + + + Account - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Accounts

+

Account ID

+

NEAR Protocol has an account names system. Account ID is similar to a username. Account IDs have to follow the rules.

+

Account ID Rules

+
    +
  • minimum length is 2
  • +
  • maximum length is 64
  • +
  • Account ID consists of Account ID parts separated by .
  • +
  • Account ID part consists of lowercase alphanumeric symbols separated by either _ or -.
  • +
+

Account names are similar to a domain names. +Anyone can create a top level account (TLA) without separators, e.g. near. +Only near can create alice.near. And only alice.near can create app.alice.near and so on. +Note, near can NOT create app.alice.near directly.

+

Regex for a full account ID, without checking for length:

+
^(([a-z\d]+[\-_])*[a-z\d]+\.)*([a-z\d]+[\-_])*[a-z\d]+$
+
+

Top Level Accounts

+ + + +
NameValue
REGISTRAR_ACCOUNT_IDregistrar
MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH32
+

Top level account names (TLAs) are very valuable as they provide root of trust and discoverability for companies, applications and users. +To allow for fair access to them, the top level account names that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters going to be auctioned off.

+

Specifically, only REGISTRAR_ACCOUNT_ID account can create new top level accounts that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters. REGISTRAR_ACCOUNT_ID implements standard Account Naming (link TODO) interface to allow create new accounts.

+
def action_create_account(predecessor_id, account_id):
+    """Called on CreateAccount action in receipt."""
+    if len(account_id) < MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH and predecessor_id != REGISTRAR_ACCOUNT_ID:
+        raise CreateAccountOnlyByRegistrar(account_id, REGISTRAR_ACCOUNT_ID, predecessor_id)
+    # Otherwise, create account with given `account_id`.
+
+

Note: we are not going to deploy registrar auction at launch, instead allow to deploy it by Foundation after initial launch. The link to details of the auction will be added here in the next spec release post MainNet.

+

Examples

+

Valid accounts:

+
ok
+bowen
+ek-2
+ek.near
+com
+google.com
+bowen.google.com
+near
+illia.cheap-accounts.near
+max_99.near
+100
+near2019
+over.9000
+a.bro
+// Valid, but can't be created, because "a" is too short
+bro.a
+
+

Invalid accounts:

+
not ok           // Whitespace characters are not allowed
+a                // Too short
+100-             // Suffix separator
+bo__wen          // Two separators in a row
+_illia           // Prefix separator
+.near            // Prefix dot separator
+near.            // Suffix dot separator
+a..near          // Two dot separators in a row
+$$$              // Non alphanumeric characters are not allowed
+WAT              // Non lowercase characters are not allowed
+me@google.com    // @ is not allowed (it was allowed in the past)
+// TOO LONG:
+abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz
+
+

Account

+

Data for an single account is collocated in one shard. The account data consists of the following:

+ +

Balances

+

Total account balance consists of unlocked balance and locked balance.

+

Unlocked balance is tokens that the account can use for transaction fees, transfers staking and other operations.

+

Locked balance is the tokens that are currently in use for staking to be a validator or to become a validator. +Locked balance may become unlocked at the beginning of an epoch. See [Staking] for details.

+

Contracts

+

A contract (AKA smart contract) is a program in WebAssembly that belongs to a specific account. +When account is created, it doesn't have a contract. +A contract has to be explicitly deployed, either by the account owner, or during the account creation. +A contract can be executed by anyone who calls a method on your account. A contract has access to the storage on your account.

+

Storage

+

Every account has its own storage. It's a persistent key-value trie. Keys are ordered in lexicographical order. +The storage can only be modified by the contract on the account. +Current implementation on Runtime only allows your account's contract to read from the storage, but this might change in the future and other accounts's contracts will be able to read from your storage.

+

NOTE: Accounts are charged recurrent rent for the total storage. This includes storage of the account itself, contract code, contract storage and all access keys.

+

Access Keys

+

An access key grants an access to a account. Each access key on the account is identified by a unique public key. +This public key is used to validate signature of transactions. +Each access key contains a unique nonce to differentiate or order transactions signed with this access key.

+

An access keys have a permission associated with it. The permission can be one of two types:

+
    +
  • Full permission. It grants full access to the account.
  • +
  • Function call permission. It grants access to only issue function call transactions.
  • +
+

See [Access Keys] for more details.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/DataStructures/README.html b/docs/DataStructures/README.html new file mode 100644 index 000000000..70f55d507 --- /dev/null +++ b/docs/DataStructures/README.html @@ -0,0 +1,232 @@ + + + + + + Data Structures - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Primitives

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/DataStructures/Transaction.html b/docs/DataStructures/Transaction.html new file mode 100644 index 000000000..b3c84fed5 --- /dev/null +++ b/docs/DataStructures/Transaction.html @@ -0,0 +1,222 @@ + + + + + + Transaction - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Transaction

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Economics/README.html b/docs/Economics/README.html new file mode 100644 index 000000000..458601b4a --- /dev/null +++ b/docs/Economics/README.html @@ -0,0 +1,369 @@ + + + + + + Economics - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Economics

+

This is under heavy development

+

Units

+ + + + + +
NameValue
yoctoNEARsmallest undividable amount of native currency NEAR.
NEAR10**24 yoctoNEAR
blocksmallest on-chain unit of time
gasunit to measure usage of blockchain
+

General Parameters

+ + + + + + + + + + + + + + + + +
NameValue
INITIAL_SUPPLY10**33 yoctoNEAR
NEAR10**24 yoctoNEAR
MIN_GAS_PRICE10**5 yoctoNEAR
REWARD_PCT_PER_YEAR0.05
BLOCK_TIME1 second
EPOCH_LENGTH43,200 blocks
EPOCHS_A_YEAR730 epochs
POKE_THRESHOLD500 blocks
INITIAL_MAX_STORAGE10 * 2**40 bytes == 10 TB
TREASURY_PCT0.1
TREASURY_ACCOUNT_IDtreasury
CONTRACT_PCT0.3
INVALID_STATE_SLASH_PCT0.05
ADJ_FEE0.001
TOTAL_SEATS100
+

General Variables

+ + + + +
NameDescriptionInitial value
totalSupply[t]Total supply of NEAR at given epoch[t]INITIAL_SUPPLY
gasPrice[t]The cost of 1 unit of gas in NEAR tokens (see Transaction Fees section below)MIN_GAS_PRICE
storageAmountPerByte[t]keeping constant, INITIAL_SUPPLY / INITIAL_MAX_STORAGE~9.09 * 10**19 yoctoNEAR
+

Issuance

+

The protocol sets a ceiling for the maximum issuance of tokens, and dynamically decreases this issuance depending on the amount of total fees in the system.

+ + + + +
NameDescription
reward[t]totalSupply[t] * ((1 - REWARD_PCT_PER_YEAR) ** (1/EPOCHS_A_YEAR) - 1)
epochFee[t]sum([(1 - DEVELOPER_PCT_PER_YEAR) * block.txFee + block.stateFee for block in epoch[t]])
issuance[t]The amount of token issued at a certain epoch[t], issuance[t] = reward[t] - epochFee[t]
+

Where totalSupply[t] is the total number of tokens in the system at a given time t. +If epochFee[t] > reward[t] the issuance is negative, thus the totalSupply[t] decreases in given epoch.

+

Transaction Fees

+

Each transaction before inclusion must buy gas enough to cover the cost of bandwidth and execution.

+

Gas unifies execution and bytes of bandwidth usage of blockchain. Each WASM instruction or pre-compiled function gets assigned an amount of gas based on measurements on common-denominator computer. Same goes for weighting the used bandwidth based on general unified costs. For specific gas mapping numbers see ???.

+

Gas is priced dynamically in NEAR tokens. At each block t, we update gasPrice[t] = gasPrice[t - 1] * (gasUsed[t - 1] / gasLimit[t - 1] - 0.5) * ADJ_FEE.

+

Where gasUsed[t] = sum([sum([gas(tx) for tx in chunk]) for chunk in block[t]]). +gasLimit[t] is defined as gasLimit[t] = gasLimit[t - 1] + validatorGasDiff[t - 1], where validatorGasDiff is parameter with which each chunk producer can either increase or decrease gas limit based on how long it to execute the previous chunk. validatorGasDiff[t] can be only within ±0.1% of gasLimit[t] and only if gasUsed[t - 1] > 0.9 * gasLimit[t - 1].

+

State Stake

+

Amount of NEAR on the account represents right for this account to take portion of the blockchain's overall global state. Transactions fail if account doesn't have enough balance to cover the storage required for given account.

+
def check_storage_cost(account):
+    # Compute requiredAmount given size of the account.
+    requiredAmount = sizeOf(account) * storageAmountPerByte
+    return Ok() if account.amount + account.locked < requiredAmount else Error(requiredAmount)
+
+# Check when transaction is received to verify that it is valid.
+def verify_transaction(tx, signer_account):
+    # ...
+    # Updates signer's account with the amount it will have after executing this tx.
+    update_post_amount(signer_account, tx)
+    result = check_storage_cost(signer_account)
+    # If enough balance OR account is been deleted by the owner.
+    if not result.ok() or DeleteAccount(tx.signer_id) in tx.actions:
+        assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err())
+
+# After account touched / changed, we check it still has enough balance to cover it's storage.
+def on_account_change(block_height, account):
+    # ... execute transaction / receipt changes ...
+    # Validate post-condition and revert if it fails.
+    result = check_storage_cost(sender_account)
+    if not result.ok():
+        assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err())
+
+

Where sizeOf(account) includes size of account_id, account structure and size of all the data stored under the account.

+

Account can end up with not enough balance in case it gets slashed. Account will become unusable as all orginating transactions will fail (including deletion). +The only way to recover it in this case is by sending extra funds from a different accounts.

+

Validators

+

NEAR validators provide their resources in exchange for a reward epochReward[t], where [t] represents the considered epoch

+ + + +
NameDescription
epochReward[t]= coinbaseReward[t] + epochFee[t]
coinbaseReward[t]The maximum inflation per epoch[t], as a function of REWARD_PCT_PER_YEAR / EPOCHS_A_YEAR
+

Validator Selection

+ + + + + + + + + + +
NameDescription
proposalsThe array of all existing validators, minus the ones which were online less than ONLINE_THRESHOLD, plus new validators
INCLUSION_FEEThe arbitrary transaction fee that new validators offer to be included in the proposals, to mitigate censorship risks by existing validators
ONLINE_THRESHOLD0.9
epoch[T]The epoch when validator[v] is selected from the proposals auction array
seatPriceThe minimum stake needed to become validator in epoch[T]
stake[v]The amount in NEAR tokens staked by validator[v] during the auction at the end of epoch[T-2], minus INCLUSION_FEE
shard[v]The shard is randomly assigned to validator[v] at epoch[T-1], such that its node can download and sync with its state
numSeatsNumber of seats assigned to validator[v], calculated from stake[v]/seatPrice
validatorAssignmentsThe resulting ordered array of all proposals with a stake higher than seatPrice
+

validatorAssignments is then split in two groups: block/chunk producers and hidden validators.

+

Rewards Calculation

+ + +
NameValue
epochFee[t]sum([(1 - DEVELOPER_PCT_PER_YEAR) * txFee[i] + stateFee[i] for i in epoch[t]]), where [i] represents any considered block within the epoch[t]
+

Total reward every epoch t is equal to:

+
reward[t] = totalSupply * ((1 + REWARD_PCT_PER_YEAR) ** (1 / EPOCHS_A_YEAR) - 1)
+
+

Uptime of a specific validator is computed:

+
pct_online[t][j] = (num_produced_blocks[t][j] / expected_produced_blocks[t][j] + num_produced_chunks[t][j] / expected_produced_chunks[t][j]) / 2
+if pct_online > ONLINE_THRESHOLD:
+    uptime[t][j] = (pct_online[t][j] - ONLINE_THRESHOLD) / (1 - ONLINE_THRESHOLD)
+else:
+    uptime[t][j] = 0
+
+

Where expected_produced_blocks and expected_produced_chunks is the number of blocks and chunks respectively that is expected to be produced by given validator j in the epoch t.

+

The specific validator[t][j] reward for epoch t is then proportional to the fraction of stake of this validator from total stake:

+
validator[t][j] = (uptime[t][j] * stake[t][j] * reward[t]) / total_stake[t]
+
+

Slashing

+

ChunkProofs

+
# Check that chunk is invalid, because the proofs in header don't match the body.
+def chunk_proofs_condition(chunk):
+    # TODO
+
+# At the end of the epoch, run update validators and
+# determine how much to slash validators.
+def end_of_epoch_update_validators(validators):
+    # ...
+    for validator in validators:
+        if validator.is_slashed:
+            validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake
+
+

ChunkState

+
# Check that chunk header post state root is invalid, 
+# because the execution of previous chunk doesn't lead to it.
+def chunk_state_condition(prev_chunk, prev_state, chunk_header):
+    # TODO
+
+# At the end of the epoch, run update validators and
+# determine how much to slash validators.
+def end_of_epoch(..., validators):
+    # ...
+    for validator in validators:
+        if validator.is_slashed:
+            validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake
+
+

Protocol Treasury

+

Treasury account TREASURY_ACCOUNT_ID receives fraction of reward every epoch t:

+
# At the end of the epoch, update treasury
+def end_of_epoch(..., reward):
+    # ...
+    accounts[TREASURY_ACCOUNT_ID].amount = TREASURY_PCT * reward
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/ExtCostsConfig.html b/docs/GenesisConfig/ExtCostsConfig.html new file mode 100644 index 000000000..b922eb584 --- /dev/null +++ b/docs/GenesisConfig/ExtCostsConfig.html @@ -0,0 +1,359 @@ + + + + + + ExtCostsConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

ExtCostsConfig

+

base

+

type: Gas

+

Base cost for calling a host function.

+

read_memory_base

+

type: Gas

+

Base cost for guest memory read

+

read_memory_byte

+

type: Gas

+

Cost for guest memory read

+

write_memory_base

+

type: Gas

+

Base cost for guest memory write

+

write_memory_byte

+

type: Gas

+

Cost for guest memory write per byte

+

read_register_base

+

type: Gas

+

Base cost for reading from register

+

read_register_byte

+

type: Gas

+

Cost for reading byte from register

+

write_register_base

+

type: Gas

+

Base cost for writing into register

+

write_register_byte

+

type: Gas

+

Cost for writing byte into register

+

utf8_decoding_base

+

type: Gas

+

Base cost of decoding utf8.

+

utf8_decoding_byte

+

type: Gas

+

Cost per bye of decoding utf8.

+

utf16_decoding_base

+

type: Gas

+

Base cost of decoding utf16.

+

utf16_decoding_byte

+

type: Gas

+

Cost per bye of decoding utf16.

+

sha256_base

+

type: Gas

+

Cost of getting sha256 base

+

sha256_byte

+

type: Gas

+

Cost of getting sha256 per byte

+

keccak256_base

+

type: Gas

+

Cost of getting keccak256 base

+

keccak256_byte

+

type: Gas

+

Cost of getting keccak256 per byte

+

keccak512_base

+

type: Gas

+

Cost of getting keccak512 base

+

keccak512_byte

+

type: Gas

+

Cost of getting keccak512 per byte

+

log_base

+

type: Gas

+

Cost for calling logging.

+

log_byte

+

type: Gas

+

Cost for logging per byte

+

Storage API

+

storage_write_base

+

type: Gas

+

Storage trie write key base cost

+

storage_write_key_byte

+

type: Gas

+

Storage trie write key per byte cost

+

storage_write_value_byte

+

type: Gas

+

Storage trie write value per byte cost

+

storage_write_evicted_byte

+

type: Gas

+

Storage trie write cost per byte of evicted value.

+

storage_read_base

+

type: Gas

+

Storage trie read key base cost

+

storage_read_key_byte

+

type: Gas

+

Storage trie read key per byte cost

+

storage_read_value_byte

+

type: Gas

+

Storage trie read value cost per byte cost

+

storage_remove_base

+

type: Gas

+

Remove key from trie base cost

+

storage_remove_key_byte

+

type: Gas

+

Remove key from trie per byte cost

+

storage_remove_ret_value_byte

+

type: Gas

+

Remove key from trie ret value byte cost

+

storage_has_key_base

+

type: Gas

+

Storage trie check for key existence cost base

+

storage_has_key_byte

+

type: Gas

+

Storage trie check for key existence per key byte

+

storage_iter_create_prefix_base

+

type: Gas

+

Create trie prefix iterator cost base

+

storage_iter_create_prefix_byte

+

type: Gas

+

Create trie prefix iterator cost per byte.

+

storage_iter_create_range_base

+

type: Gas

+

Create trie range iterator cost base

+

storage_iter_create_from_byte

+

type: Gas

+

Create trie range iterator cost per byte of from key.

+

storage_iter_create_to_byte

+

type: Gas

+

Create trie range iterator cost per byte of to key.

+

storage_iter_next_base

+

type: Gas

+

Trie iterator per key base cost

+

storage_iter_next_key_byte

+

type: Gas

+

Trie iterator next key byte cost

+

storage_iter_next_value_byte

+

type: Gas

+

Trie iterator next key byte cost

+

touching_trie_node

+

type: Gas

+

Cost per touched trie node

+

Promise API

+

promise_and_base

+

type: Gas

+

Cost for calling promise_and

+

promise_and_per_promise

+

type: Gas

+

Cost for calling promise_and for each promise

+

promise_return

+

type: Gas

+

Cost for calling promise_return

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/GenesisConfig.html b/docs/GenesisConfig/GenesisConfig.html new file mode 100644 index 000000000..be747691f --- /dev/null +++ b/docs/GenesisConfig/GenesisConfig.html @@ -0,0 +1,296 @@ + + + + + + GenesisConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

GenesisConfig

+

protocol_version

+

type: u32

+

Protocol version that this genesis works with.

+

genesis_time

+

type: DateTime

+

Official time of blockchain start.

+

chain_id

+

type: String

+

ID of the blockchain. This must be unique for every blockchain. +If your testnet blockchains do not have unique chain IDs, you will have a bad time.

+

num_block_producers

+

type: u32

+

Number of block producer seats at genesis.

+

block_producers_per_shard

+

type: [ValidatorId]

+

Defines number of shards and number of validators per each shard at genesis.

+

avg_fisherman_per_shard

+

type: [ValidatorId]

+

Expected number of fisherman per shard.

+

dynamic_resharding

+

type: bool

+

Enable dynamic re-sharding.

+

epoch_length

+

type: BlockIndex,

+

Epoch length counted in blocks.

+

gas_limit

+

type: Gas,

+

Initial gas limit for a block

+

gas_price

+

type: Balance,

+

Initial gas price

+

block_producer_kickout_threshold

+

type: u8

+

Criterion for kicking out block producers (this is a number between 0 and 100)

+

chunk_producer_kickout_threshold

+

type: u8

+

Criterion for kicking out chunk producers (this is a number between 0 and 100)

+

gas_price_adjustment_rate

+

type: Fraction

+

Gas price adjustment rate

+

runtime_config

+

type: RuntimeConfig

+

Runtime configuration (mostly economics constants).

+

validators

+

type: [AccountInfo]

+

List of initial validators.

+

records

+

type: Vec<StateRecord>

+

Records in storage at genesis (get split into shards at genesis creation).

+

transaction_validity_period

+

type: u64

+

Number of blocks for which a given transaction is valid

+

developer_reward_percentage

+

type: Fraction

+

Developer reward percentage.

+

protocol_reward_percentage

+

type: Fraction

+

Protocol treasury percentage.

+

max_inflation_rate

+

type: Fraction

+

Maximum inflation on the total supply every epoch.

+

total_supply

+

type: Balance

+

Total supply of tokens at genesis.

+

num_blocks_per_year

+

type: u64

+

Expected number of blocks per year

+

protocol_treasury_account

+

type: AccountId

+

Protocol treasury account

+

protocol economics

+
+

For the specific economic specs, refer to Economics Section.

+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeConfig.html b/docs/GenesisConfig/RuntimeConfig.html new file mode 100644 index 000000000..a3904ba26 --- /dev/null +++ b/docs/GenesisConfig/RuntimeConfig.html @@ -0,0 +1,244 @@ + + + + + + RuntimeConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

RuntimeConfig

+

The structure that holds the parameters of the runtime, mostly economics.

+

storage_cost_byte_per_block

+

type: Balance

+

The cost to store one byte of storage per block.

+

storage_cost_byte_per_block

+

type: Balance

+

Costs of different actions that need to be performed when sending and processing transaction +and receipts.

+

poke_threshold

+

type: BlockIndex

+

The minimum number of blocks of storage rent an account has to maintain to prevent forced deletion.

+

transaction_costs

+

type: RuntimeFeesConfig

+

Costs of different actions that need to be performed when sending and processing transaction and receipts.

+

wasm_config

+

type: VMConfig,

+

Config of wasm operations.

+

account_length_baseline_cost_per_block

+

type: Balance

+

The baseline cost to store account_id of short length per block. +The original formula in NEP#0006 is 1,000 / (3 ^ (account_id.length - 2)) for cost per year. +This value represents 1,000 above adjusted to use per block

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig.html b/docs/GenesisConfig/RuntimeFeeConfig.html new file mode 100644 index 000000000..4e29a4062 --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig.html @@ -0,0 +1,239 @@ + + + + + + RuntimeFeeConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

RuntimeFeesConfig

+

Economic parameters for runtime

+

action_receipt_creation_config

+

type: Fee

+

Describes the cost of creating an action receipt, ActionReceipt, excluding the actual cost +of actions.

+

data_receipt_creation_config

+

type: DataReceiptCreationConfig

+

Describes the cost of creating a data receipt, DataReceipt.

+

action_creation_config

+

type: ActionCreationConfig

+

Describes the cost of creating a certain action, Action. Includes all variants.

+

storage_usage_config

+

type: StorageUsageConfig

+

Describes fees for storage rent

+

burnt_gas_reward

+

type: Fraction

+

Fraction of the burnt gas to reward to the contract account for execution.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html b/docs/GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html new file mode 100644 index 000000000..0dc6360cd --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html @@ -0,0 +1,232 @@ + + + + + + AccessKeyCreationConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

AccessKeyCreationConfig

+

Describes the cost of creating an access key.

+

full_access_cost

+

type: Fee +Base cost of creating a full access access-key.

+

function_call_cost

+

type: Fee +Base cost of creating an access-key restricted to specific functions.

+

function_call_cost_per_byte

+

type: Fee +Cost per byte of method_names of creating a restricted access-key.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html b/docs/GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html new file mode 100644 index 000000000..6aa703fa6 --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html @@ -0,0 +1,253 @@ + + + + + + ActionCreationConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

action_creation_config

+

Describes the cost of creating a specific action, Action. Includes all variants.

+

create_account_cost

+

type: Fee

+

Base cost of creating an account.

+

deploy_contract_cost

+

type: Fee

+

Base cost of deploying a contract.

+

deploy_contract_cost_per_byte

+

type: Fee

+

Cost per byte of deploying a contract.

+

function_call_cost

+

type: Fee

+

Base cost of calling a function.

+

function_call_cost_per_byte

+

type: Fee

+

Cost per byte of method name and arguments of calling a function.

+

transfer_cost

+

type: Fee

+

Base cost of making a transfer.

+

stake_cost

+

type: Fee

+

Base cost of staking.

+

add_key_cost:

+

type: AccessKeyCreationConfig +Base cost of adding a key.

+

delete_key_cost

+

type: Fee

+

Base cost of deleting a key.

+

delete_account_cost

+

type: Fee

+

Base cost of deleting an account.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html b/docs/GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html new file mode 100644 index 000000000..ebc62d399 --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html @@ -0,0 +1,229 @@ + + + + + + DataReceiptCreationConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

DataReceiptCreationConfig

+

Describes the cost of creating a data receipt, DataReceipt.

+

base_cost

+

type: Fee +Base cost of creating a data receipt.

+

cost_per_byte

+

type: Fee +Additional cost per byte sent.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/Fee.html b/docs/GenesisConfig/RuntimeFeeConfig/Fee.html new file mode 100644 index 000000000..d1ec2856d --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/Fee.html @@ -0,0 +1,229 @@ + + + + + + Fee - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Fee

+

Costs associated with an object that can only be sent over the network (and executed by the receiver).

+

send_sir

+

Fee for sending an object from the sender to itself, guaranteeing that it does not leave

+

send_not_sir

+

Fee for sending an object potentially across the shards.

+

execution

+

Fee for executing the object.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/Fraction.html b/docs/GenesisConfig/RuntimeFeeConfig/Fraction.html new file mode 100644 index 000000000..da1dbf34f --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/Fraction.html @@ -0,0 +1,226 @@ + + + + + + Fraction - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Fraction

+

numerator

+

type: u64

+

denominator

+

type: u64

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html b/docs/GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html new file mode 100644 index 000000000..6d7ea7b88 --- /dev/null +++ b/docs/GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html @@ -0,0 +1,238 @@ + + + + + + StorageUsageConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

StorageUsageConfig

+

Describes cost of storage per block

+

account_cost

+

type: Gas +Base storage usage for an account

+

data_record_cost

+

type: Gas +Base cost for a k/v record

+

key_cost_per_byte:

+

type: Gas +Cost per byte of key

+

value_cost_per_byte: Gas

+

type: Gas +Cost per byte of value

+

code_cost_per_byte: Gas

+

type: Gas +Cost per byte of contract code

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/GenesisConfig/VMConfig.html b/docs/GenesisConfig/VMConfig.html new file mode 100644 index 000000000..60cf16b8a --- /dev/null +++ b/docs/GenesisConfig/VMConfig.html @@ -0,0 +1,260 @@ + + + + + + VMConfig - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

VMConfig

+

Config of wasm operations.

+

ext_costs:

+

type: ExtCostsConfig

+

Costs for runtime externals

+

grow_mem_cost

+

type: u32

+

Gas cost of a growing memory by single page.

+

regular_op_cost

+

type: u32

+

Gas cost of a regular operation.

+

max_gas_burnt

+

type: Gas

+

Max amount of gas that can be used, excluding gas attached to promises.

+

max_stack_height

+

type: u32

+

How tall the stack is allowed to grow?

+

initial_memory_pages

+

type: u32

+

max_memory_pages

+

type: u32

+

The initial number of memory pages. +What is the maximal memory pages amount is allowed to have for +a contract.

+

registers_memory_limit

+

type: u64

+

Limit of memory used by registers.

+

max_register_size

+

type: u64

+

Maximum number of bytes that can be stored in a single register.

+

max_number_registers

+

type: u64

+

Maximum number of registers that can be used simultaneously.

+

max_number_logs

+

type: u64

+

Maximum number of log entries.

+

max_log_len

+

type: u64

+

Maximum length of a single log, in bytes.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/README.html b/docs/README.html new file mode 100644 index 000000000..c0c672797 --- /dev/null +++ b/docs/README.html @@ -0,0 +1,226 @@ + + + + + + Introduction - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

The NEAR Protocol Specification

+

Near Protocol is the scalable blockchain protocol.

+

For the overview of the NEAR Protocol, read the following documents in numerical order.

+
    +
  1. Terminology
  2. +
  3. Data structures
  4. +
  5. Architecture
  6. +
  7. Chain specification
  8. +
  9. Runtime specification
  10. +
  11. Economics
  12. +
+

Standards

+

Standards such as Fungible Token Standard can be found in Standards page.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Actions.html b/docs/RuntimeSpec/Actions.html new file mode 100644 index 000000000..9a229cff2 --- /dev/null +++ b/docs/RuntimeSpec/Actions.html @@ -0,0 +1,383 @@ + + + + + + Actions - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Actions

+

There are a several action types in Near:

+

+#![allow(unused_variables)]
+fn main() {
+pub enum Action {
+    CreateAccount(CreateAccountAction),
+    DeployContract(DeployContractAction),
+    FunctionCall(FunctionCallAction),
+    Transfer(TransferAction),
+    Stake(StakeAction),
+    AddKey(AddKeyAction),
+    DeleteKey(DeleteKeyAction),
+    DeleteAccount(DeleteAccountAction),
+}
+}
+
+

Each transaction consists a list of actions to be performed on the receiver_id side. Sometimes the singer_id equals to receiver_id. There is a set of action types when signer_id and receiver_id are required to be equal. Actions requires arguments and use data from the Transaction itself.

+

// TODO: how to introduce the concept of sender_id

+

CreateAccountAction

+

Requirements:

+
    +
  • unique tx.receiver_id
  • +
  • public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

CreateAccountAction doesn't take any additional arguments, it uses receiver_id from Transaction. receiver_id is an ID for an account to be created. Account ID should be valid and unique throughout the system.

+

Outcome:

+
    +
  • creates an account with id = receiver_id
  • +
  • sets Account storage_usage to account_cost (genesis config)
  • +
  • sets Account storage_paid_at to the current block height
  • +
+

NOTE: for the all subsequent actions in the transaction the signer_id becomes receiver_id until DeleteAccountAction. It allows to execute actions on behalf of the just created account.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct CreateAccountAction {}
+}
+
+

DeployContractAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Outcome:

+
    +
  • sets a code for account
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeployContractAction {
+    pub code: Vec<u8>, // a valid WebAssembly code
+}
+}
+
+

FunctionCallAction

+

Requirements:

+
    +
  • tx.public_key to be AccessKeyPermission::FullAccess or AccessKeyPermission::FunctionCall
  • +
+

Calls a method of a particular contract. See details.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct FunctionCallAction {
+    /// Name of exported Wasm function
+    pub method_name: String,
+    /// Serialized arguments
+    pub args: Vec<u8>,
+    /// Prepaid gas (gas_limit) for a function call
+    pub gas: Gas,
+    /// Amount of tokens to transfer to a receiver_id
+    pub deposit: Balance,
+}
+}
+
+

TransferAction

+

Requirements:

+
    +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Outcome:

+
    +
  • transfers amount specified in deposit from tx.signer to a tx.receiver_id account
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct TransferAction {
+    /// Amount of tokens to transfer to a receiver_id
+    pub deposit: Balance,
+}
+}
+
+

StakeAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct StakeAction {
+    // Amount of tokens to stake
+    pub stake: Balance,
+    // This public key is a public key of the validator node
+    pub public_key: PublicKey,
+}
+}
+
+

Outcome:

+
// TODO: cover staking
+
+

AddKeyAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Associates an AccessKey with a public_key provided.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct AddKeyAction {
+    pub public_key: PublicKey,
+    pub access_key: AccessKey,
+}
+}
+
+

DeleteKeyAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeleteKeyAction {
+    pub public_key: PublicKey,
+}
+}
+
+

DeleteAccountAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
  • tx.account shouldn't have any locked balance
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeleteAccountAction {
+    /// The remaining account balance will be transferred to the AccountId below
+    pub beneficiary_id: AccountId,
+}
+}
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/BindingsSpec.html b/docs/RuntimeSpec/Components/BindingsSpec/BindingsSpec.html new file mode 100644 index 000000000..de12fd498 --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/BindingsSpec.html @@ -0,0 +1,273 @@ + + + + + + Bindings Specification - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Bindings Specification

+

This is the low-level interface available to the smart contracts, it consists of the functions that the host (represented by +Wasmer inside near-vm-runner) exposes to the guest (the smart contract compiled to Wasm).

+

Due to Wasm restrictions the methods operate only with primitive types, like u64.

+

Also for all functions in the bindings specification the following is true:

+
    +
  • Method execution could result in MemoryAccessViolation error if one of the following happens: +
      +
    • The method causes host to read a piece of memory from the guest but it points outside the guest's memory;
    • +
    • The guest causes host to read from the register, but register id is invalid.
    • +
    +
  • +
+

Execution of a bindings function call result in an error being generated. This error causes execution of the smart contract +to be terminated and the error message written into the logs of the transaction that caused the execution. Many bindings +functions can throw specialized error messages, but there is also a list of error messages that can be thrown by almost +any function:

+
    +
  • IntegerOverflow -- happens when guest passes some data to the host but when host tries to apply arithmetic operation +on it it causes overflow or underflow;
  • +
  • GasExceeded -- happens when operation performed by the guest causes more gas than the remaining prepaid gas;
  • +
  • GasLimitExceeded -- happens when the execution uses more gas than allowed by the global limit imposed in the economics +config;
  • +
  • StorageError -- happens when method fails to do some operation on the trie.
  • +
+

The following binding methods cannot be invoked in a view call:

+
    +
  • signer_account_id
  • +
  • signer_account_pk
  • +
  • predecessor_account_id
  • +
  • attached_deposit
  • +
  • prepaid_gas
  • +
  • used_gas
  • +
  • promise_create
  • +
  • promise_then
  • +
  • promise_and
  • +
  • promise_batch_create
  • +
  • promise_batch_then
  • +
  • promise_batch_action_create_account
  • +
  • promise_batch_action_deploy_account
  • +
  • promise_batch_action_function_call
  • +
  • promise_batch_action_transfer
  • +
  • promise_batch_action_stake
  • +
  • promise_batch_action_add_key_with_full_access
  • +
  • promise_batch_action_add_key_with_function_call
  • +
  • promise_batch_action_delete_key
  • +
  • promise_batch_action_delete_account
  • +
  • promise_results_count
  • +
  • promise_result
  • +
  • promise_return
  • +
+

If they are invoked the smart contract execution will panic with ProhibitedInView(<method name>).

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/ContextAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/ContextAPI.html new file mode 100644 index 000000000..e80d5d230 --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/ContextAPI.html @@ -0,0 +1,376 @@ + + + + + + Context API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Context API

+

Context API mostly provides read-only functions that access current information about the blockchain, the accounts +(that originally initiated the chain of cross-contract calls, the immediate contract that called the current one, the account of the current contract), +other important information like storage usage.

+

Many of the below functions are currently implemented through data_read which allows to read generic context data. +However, there is no reason to have data_read instead of the specific functions:

+
    +
  • data_read does not solve forward compatibility. If later we want to add another context function, e.g. executed_operations +we can just declare it as a new function, instead of encoding it as DATA_TYPE_EXECUTED_OPERATIONS = 42 which is passed +as the first argument to data_read;
  • +
  • data_read does not help with renaming. If later we decide to rename signer_account_id to originator_id then one could +argue that contracts that rely on data_read would not break, while contracts relying on signer_account_id() would. However +the name change often means the change of the semantics, which means the contracts using this function are no longer safe to +execute anyway.
  • +
+

However there is one reason to not have data_read -- it makes API more human-like which is a general direction Wasm APIs, like WASI are moving towards to.

+
+

+#![allow(unused_variables)]
+fn main() {
+current_account_id(register_id: u64)
+}
+
+

Saves the account id of the current contract that we execute into the register.

+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+signer_account_id(register_id: u64)
+}
+
+

All contract calls are a result of some transaction that was signed by some account using +some access key and submitted into a memory pool (either through the wallet using RPC or by a node itself). This function returns the id of that account.

+
Normal operation
+
    +
  • Saves the bytes of the signer account id into the register.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Currently we conflate originator_id and sender_id in our code base.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+signer_account_pk(register_id: u64)
+}
+
+

Saves the public key fo the access key that was used by the signer into the register. +In rare situations smart contract might want to know the exact access key that was used to send the original transaction, +e.g. to increase the allowance or manipulate with the public key.

+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Not implemented.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+predecessor_account_id(register_id: u64)
+}
+
+

All contract calls are a result of a receipt, this receipt might be created by a transaction +that does function invocation on the contract or another contract as a result of cross-contract call.

+
Normal operation
+
    +
  • Saves the bytes of the predecessor account id into the register.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Not implemented.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+input(register_id: u64)
+}
+
+

Reads input to the contract call into the register. Input is expected to be in JSON-format.

+
Normal operation
+
    +
  • If input is provided saves the bytes (potentially zero) of input into register.
  • +
  • If input is not provided does not modify the register.
  • +
+
Returns
+
    +
  • If input was not provided returns 0;
  • +
  • If input was provided returns 1; If input is zero bytes returns 1, too.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • Implemented as part of data_read. However there is no reason to have one unified function, like data_read that can +be used to read all
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+block_index() -> u64
+}
+
+

Returns the current block height from genesis.

+
+

+#![allow(unused_variables)]
+fn main() {
+block_timestamp() -> u64
+}
+
+

Returns the current block timestamp (number of non-leap-nanoseconds since January 1, 1970 0:00:00 UTC).

+
+

+#![allow(unused_variables)]
+fn main() {
+epoch_height() -> u64
+}
+
+

Returns the current epoch height from genesis.

+
+

+#![allow(unused_variables)]
+fn main() {
+storage_usage() -> u64
+}
+
+

Returns the number of bytes used by the contract if it was saved to the trie as of the +invocation. This includes:

+
    +
  • The data written with storage_* functions during current and previous execution;
  • +
  • The bytes needed to store the account protobuf and the access keys of the given account.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/EconomicsAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/EconomicsAPI.html new file mode 100644 index 000000000..f29729bcb --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/EconomicsAPI.html @@ -0,0 +1,266 @@ + + + + + + Economics API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Economics API

+

Accounts own certain balance; and each transaction and each receipt have certain amount of balance and prepaid gas +attached to them. +During the contract execution, the contract has access to the following u128 values:

+
    +
  • account_balance -- the balance attached to the given account. This includes the attached_deposit that was attached +to the transaction;
  • +
  • attached_deposit -- the balance that was attached to the call that will be immediately deposited before +the contract execution starts;
  • +
  • prepaid_gas -- the tokens attached to the call that can be used to pay for the gas;
  • +
  • used_gas -- the gas that was already burnt during the contract execution and attached to promises (cannot exceed prepaid_gas);
  • +
+

If contract execution fails prepaid_gas - used_gas is refunded back to signer_account_id and attached_deposit +is refunded back to predecessor_account_id.

+

The following spec is the same for all functions:

+

+#![allow(unused_variables)]
+fn main() {
+account_balance(balance_ptr: u64)
+attached_deposit(balance_ptr: u64)
+
+}
+
+

-- writes the value into the u128 variable pointed by balance_ptr.

+
Panics
+
    +
  • If balance_ptr + 16 points outside the memory of the guest with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Use a different name;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+prepaid_gas() -> u64
+used_gas() -> u64
+}
+
+
Panics
+
    +
  • If called in a view function panics with ProhibitedInView.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/MathAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/MathAPI.html new file mode 100644 index 000000000..e64d460af --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/MathAPI.html @@ -0,0 +1,269 @@ + + + + + + Math API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Math API

+

+#![allow(unused_variables)]
+fn main() {
+random_seed(register_id: u64)
+}
+
+

Returns random seed that can be used for pseudo-random number generation in deterministic way.

+
Panics
+
    +
  • If the size of the registers exceed the set limit MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+sha256(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using sha256 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+keccak256(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using keccak256 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+keccak512(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using keccak512 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html new file mode 100644 index 000000000..2deaa1bac --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html @@ -0,0 +1,309 @@ + + + + + + Miscellaneous API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Miscellaneous API

+

+#![allow(unused_variables)]
+fn main() {
+value_return(value_len: u64, value_ptr: u64)
+}
+
+

Sets the blob of data as the return value of the contract.

+
Panics
+
    +
  • If value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+panic()
+}
+
+

Terminates the execution of the program with panic GuestPanic("explicit guest panic").

+
+

+#![allow(unused_variables)]
+fn main() {
+panic_utf8(len: u64, ptr: u64)
+}
+
+

Terminates the execution of the program with panic GuestPanic(s), where s is the given UTF-8 encoded string.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with character '\0';

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
  • If string is not UTF-8 returns BadUtf8.
  • +
  • If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+log_utf8(len: u64, ptr: u64)
+}
+
+

Logs the UTF-8 encoded string.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with character '\0';

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
  • If string is not UTF-8 returns BadUtf8.
  • +
  • If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+log_utf16(len: u64, ptr: u64)
+}
+
+

Logs the UTF-16 encoded string. len is the number of bytes in the string. +See https://stackoverflow.com/a/5923961 that explains that null termination is not defined through encoding.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with two-byte sequence of 0x00 0x00.

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+abort(msg_ptr: u32, filename_ptr: u32, line: u32, col: u32)
+}
+
+

Special import kept for compatibility with AssemblyScript contracts. Not called by smart contracts directly, but instead +called by the code generated by AssemblyScript.

+

Future Improvements

+

In the future we can have some of the registers to be on the guest. +For instance a guest can tell the host that it has some pre-allocated memory that it wants to be used for the register, +e.g.

+

+#![allow(unused_variables)]
+fn main() {
+set_guest_register(register_id: u64, register_ptr: u64, max_register_size: u64)
+}
+
+

will assign register_id to a span of memory on the guest. Host then would also know the size of that buffer on guest +and can throw a panic if there is an attempted copying that exceeds the guest register size.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/PromisesAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/PromisesAPI.html new file mode 100644 index 000000000..d110b1688 --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/PromisesAPI.html @@ -0,0 +1,576 @@ + + + + + + Promises API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Promises API

+

+#![allow(unused_variables)]
+fn main() {
+promise_create(account_id_len: u64,
+               account_id_ptr: u64,
+               method_name_len: u64,
+               method_name_ptr: u64,
+               arguments_len: u64,
+               arguments_ptr: u64,
+               amount_ptr: u64,
+               gas: u64) -> u64
+}
+
+

Creates a promise that will execute a method on account with given arguments and attaches the given amount. +amount_ptr point to slices of bytes representing u128.

+
Panics
+
    +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_then(promise_idx: u64,
+             account_id_len: u64,
+             account_id_ptr: u64,
+             method_name_len: u64,
+             method_name_ptr: u64,
+             arguments_len: u64,
+             arguments_ptr: u64,
+             amount_ptr: u64,
+             gas: u64) -> u64
+}
+
+

Attaches the callback that is executed after promise pointed by promise_idx is complete.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_and(promise_idx_ptr: u64, promise_idx_count: u64) -> u64
+}
+
+

Creates a new promise which completes when time all promises passed as arguments complete. Cannot be used with registers. +promise_idx_ptr points to an array of u64 elements, with promise_idx_count denoting the number of elements. +The array contains indices of promises that need to be waited on jointly.

+
Panics
+
    +
  • If promise_ids_ptr + 8 * promise_idx_count extend outside the guest memory with MemoryAccessViolation;
  • +
  • If any of the promises in the array do not correspond to existing promises panics with InvalidPromiseIndex.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_results_count() -> u64
+}
+
+

If the current function is invoked by a callback we can access the execution results of the promises that +caused the callback. This function returns the number of complete and incomplete callbacks.

+

Note, we are only going to have incomplete callbacks once we have promise_or combinator.

+
Normal execution
+
    +
  • If there is only one callback promise_results_count() returns 1;
  • +
  • If there are multiple callbacks (e.g. created through promise_and) promise_results_count() returns their number.
  • +
  • If the function was called not through the callback promise_results_count() returns 0.
  • +
+
Panics
+
    +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_result(result_idx: u64, register_id: u64) -> u64
+}
+
+

If the current function is invoked by a callback we can access the execution results of the promises that +caused the callback. This function returns the result in blob format and places it into the register.

+
Normal execution
+
    +
  • If promise result is complete and successful copies its blob into the register;
  • +
  • If promise result is complete and failed or incomplete keeps register unused;
  • +
+
Returns
+
    +
  • If promise result is not complete returns 0;
  • +
  • If promise result is complete and successful returns 1;
  • +
  • If promise result is complete and failed returns 2.
  • +
+
Panics
+
    +
  • If result_idx does not correspond to an existing result panics with InvalidResultIndex.
  • +
  • If copying the blob exhausts the memory limit it panics with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • We currently have two separate functions to check for result completion and copy it.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_return(promise_idx: u64)
+}
+
+

When promise promise_idx finishes executing its result is considered to be the result of the current function.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
+
Current bugs
+
    +
  • The current name return_promise is inconsistent with the naming convention of Promise API.
  • +
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_create(account_id_len: u64, account_id_ptr: u64) -> u64
+}
+
+

Creates a new promise towards given account_id without any actions attached to it.

+
Panics
+
    +
  • If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64) -> u64
+}
+
+

Attaches a new empty promise that is executed after promise pointed by promise_idx is complete.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_create_account(promise_idx: u64)
+}
+
+

Appends CreateAccount action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R48

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_deploy_contract(promise_idx: u64, code_len: u64, code_ptr: u64)
+}
+
+

Appends DeployContract action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R49

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If code_len + code_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_function_call(promise_idx: u64,
+                                   method_name_len: u64,
+                                   method_name_ptr: u64,
+                                   arguments_len: u64,
+                                   arguments_ptr: u64,
+                                   amount_ptr: u64,
+                                   gas: u64)
+}
+
+

Appends FunctionCall action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R50

+

NOTE: Calling promise_batch_create and then promise_batch_action_function_call will produce the same promise as calling promise_create directly.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_transfer(promise_idx: u64, amount_ptr: u64)
+}
+
+

Appends Transfer action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R51

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_stake(promise_idx: u64,
+                           amount_ptr: u64,
+                           bls_public_key_len: u64,
+                           bls_public_key_ptr: u64)
+}
+
+

Appends Stake action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R52

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given BLS public key is not a valid BLS public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If amount_ptr + 16 or bls_public_key_len + bls_public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_add_key_with_full_access(promise_idx: u64,
+                                              public_key_len: u64,
+                                              public_key_ptr: u64,
+                                              nonce: u64)
+}
+
+

Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R54 +The access key will have FullAccess permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_add_key_with_function_call(promise_idx: u64,
+                                                public_key_len: u64,
+                                                public_key_ptr: u64,
+                                                nonce: u64,
+                                                allowance_ptr: u64,
+                                                receiver_id_len: u64,
+                                                receiver_id_ptr: u64,
+                                                method_names_len: u64,
+                                                method_names_ptr: u64)
+}
+
+

Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-156752ec7d78e7b85b8c7de4a19cbd4R54 +The access key will have FunctionCall permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation

+
    +
  • If the allowance value (not the pointer) is 0, the allowance is set to None (which means unlimited allowance). And positive value represents a Some(...) allowance.
  • +
  • Given method_names is a utf-8 string with , used as a separator. The vm will split the given string into a vector of strings.
  • +
+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • if method_names is not a valid utf-8 string, fails with BadUTF8.
  • +
  • If public_key_len + public_key_ptr, allowance_ptr + 16, receiver_id_len + receiver_id_ptr or +method_names_len + method_names_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_delete_key(promise_idx: u64,
+                                public_key_len: u64,
+                                public_key_ptr: u64)
+}
+
+

Appends DeleteKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R55

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_delete_account(promise_idx: u64,
+                                    beneficiary_id_len: u64,
+                                    beneficiary_id_ptr: u64)
+}
+
+

Appends DeleteAccount action to the batch of actions for the given promise pointed by promise_idx. +Action is used to delete an account. It can be performed on a newly created account, on your own account or an account with +insufficient funds to pay rent. Takes beneficiary_id to indicate where to send the remaining funds.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If beneficiary_id_len + beneficiary_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/RegistersAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/RegistersAPI.html new file mode 100644 index 000000000..918ce1fad --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/RegistersAPI.html @@ -0,0 +1,283 @@ + + + + + + Registers API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Registers API

+

Registers allow the host function to return the data into a buffer located inside the host oppose to the buffer +located on the client. A special operation can be used to copy the content of the buffer into the host. Memory pointers +can then be used to point either to the memory on the guest or the memory on the host, see below. Benefits:

+
    +
  • We can have functions that return values that are not necessarily used, e.g. inserting key-value into a trie can +also return the preempted old value, which might not be necessarily used. Previously, if we returned something we +would have to pass the blob from host into the guest, even if it is not used;
  • +
  • We can pass blobs of data between host functions without going through the guest, e.g. we can remove the value +from the storage and insert it into under a different key;
  • +
  • It makes API cleaner, because we don't need to pass buffer_len and buffer_ptr as arguments to other functions;
  • +
  • It allows merging certain functions together, see storage_iter_next;
  • +
  • This is consistent with other APIs that were created for high performance, e.g. allegedly Ewasm have implemented +SNARK-like computations in Wasm by exposing a bignum library through stack-like interface to the guest. The guest +can manipulate then with the stack of 256-bit numbers that is located on the host.
  • +
+

Host → host blob passing

+

The registers can be used to pass the blobs between host functions. For any function that +takes a pair of arguments *_len: u64, *_ptr: u64 this pair is pointing to a region of memory either on the guest or +the host:

+
    +
  • If *_len != u64::MAX it points to the memory on the guest;
  • +
  • If *_len == u64::MAX it points to the memory under the register *_ptr on the host.
  • +
+

For example: +storage_write(u64::MAX, 0, u64::MAX, 1, 2) -- insert key-value into storage, where key is read from register 0, +value is read from register 1, and result is saved to register 2.

+

Note, if some function takes register_id then it means this function can copy some data into this register. If +register_id == u64::MAX then the copying does not happen. This allows some micro-optimizations in the future.

+

Note, we allow multiple registers on the host, identified with u64 number. The guest does not have to use them in +order and can for instance save some blob in register 5000 and another value in register 1.

+

Specification

+

+#![allow(unused_variables)]
+fn main() {
+read_register(register_id: u64, ptr: u64)
+}
+
+

Writes the entire content from the register register_id into the memory of the guest starting with ptr.

+
Panics
+
    +
  • If the content extends outside the memory allocated to the guest. In Wasmer, it returns MemoryAccessViolation error message;
  • +
  • If register_id is pointing to unused register returns InvalidRegisterId error message.
  • +
+
Undefined Behavior
+
    +
  • If the content of register extends outside the preallocated memory on the host side, or the pointer points to a +wrong location this function will overwrite memory that it is not supposed to overwrite causing an undefined behavior.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+register_len(register_id: u64) -> u64
+}
+
+

Returns the size of the blob stored in the given register.

+
Normal operation
+
    +
  • If register is used, then returns the size, which can potentially be zero;
  • +
  • If register is not used, returns u64::MAX
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/BindingsSpec/TrieAPI.html b/docs/RuntimeSpec/Components/BindingsSpec/TrieAPI.html new file mode 100644 index 000000000..dd48af857 --- /dev/null +++ b/docs/RuntimeSpec/Components/BindingsSpec/TrieAPI.html @@ -0,0 +1,395 @@ + + + + + + Trie API - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Trie API

+

Here we provide a specification of trie API. After this NEP is merged, the cases where our current implementation does +not follow the specification are considered to be bugs that need to be fixed.

+
+

+#![allow(unused_variables)]
+fn main() {
+storage_write(key_len: u64, key_ptr: u64, value_len: u64, value_ptr: u64, register_id: u64) -> u64
+}
+
+

Writes key-value into storage.

+
Normal operation
+
    +
  • If key is not in use it inserts the key-value pair and does not modify the register;
  • +
  • If key is in use it inserts the key-value and copies the old value into the register_id.
  • +
+
Returns
+
    +
  • If key was not used returns 0;
  • +
  • If key was used returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr or value_len + value_ptr exceeds the memory container or points to an unused register it panics +with MemoryAccessViolation. (When we say that something panics with the given error we mean that we use Wasmer API to +create this error and terminate the execution of VM. For mocks of the host that would only cause a non-name panic.)
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • External::storage_set trait can return an error which is then converted to a generic non-descriptive +StorageUpdateError, here +however the actual implementation does not return error at all, see;
  • +
  • Does not return into the registers.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_read(key_len: u64, key_ptr: u64, register_id: u64) -> u64
+}
+
+

Reads the value stored under the given key.

+
Normal operation
+
    +
  • If key is used copies the content of the value into the register_id, even if the content is zero bytes;
  • +
  • If key is not present then does not modify the register.
  • +
+
Returns
+
    +
  • If key was not present returns 0;
  • +
  • If key was present returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • This function currently does not exist.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_remove(key_len: u64, key_ptr: u64, register_id: u64) -> u64
+}
+
+

Removes the value stored under the given key.

+
Normal operation
+

Very similar to storage_read:

+
    +
  • If key is used, removes the key-value from the trie and copies the content of the value into the register_id, even if the content is zero bytes.
  • +
  • If key is not present then does not modify the register.
  • +
+
Returns
+
    +
  • If key was not present returns 0;
  • +
  • If key was present returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • Does not return into the registers.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_has_key(key_len: u64, key_ptr: u64) -> u64
+}
+
+

Checks if there is a key-value pair.

+
Normal operation
+
    +
  • If key is used returns 1, even if the value is zero bytes;
  • +
  • Otherwise returns 0.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_prefix(prefix_len: u64, prefix_ptr: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Creates an iterator object inside the host. +Returns the identifier that uniquely differentiates the given iterator from other iterators that can be simultaneously +created.

+
Normal operation
+
    +
  • It iterates over the keys that have the provided prefix. The order of iteration is defined by the lexicographic +order of the bytes in the keys. If there are no keys, it creates an empty iterator, see below on empty iterators;
  • +
+
Panics
+
    +
  • If prefix_len + prefix_ptr exceeds the memory container it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_range(start_len: u64, start_ptr: u64, end_len: u64, end_ptr: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Similarly to storage_iter_prefix +creates an iterator object inside the host.

+
Normal operation
+

Unless lexicographically start < end, it creates an empty iterator. +Iterates over all key-values such that keys are between start and end, where start is inclusive and end is exclusive.

+

Note, this definition allows for start or end keys to not actually exist on the given trie.

+
Panics:
+
    +
  • If start_len + start_ptr or end_len + end_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_next(iterator_id: u64, key_register_id: u64, value_register_id: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Advances iterator and saves the next key and value in the register.

+
Normal operation
+
    +
  • If iterator is not empty (after calling next it points to a key-value), copies the key into key_register_id and value into value_register_id and returns 1;
  • +
  • If iterator is empty returns 0.
  • +
+

This allows us to iterate over the keys that have zero bytes stored in values.

+
Panics
+
    +
  • If key_register_id == value_register_id panics with MemoryAccessViolation;
  • +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If iterator_id does not correspond to an existing iterator panics with InvalidIteratorId
  • +
  • If between the creation of the iterator and calling storage_iter_next any modification to storage was done through +storage_write or storage_remove the iterator is invalidated and the error message is IteratorWasInvalidated.
  • +
+
Current bugs
+
    +
  • Not implemented, currently we have storage_iter_next and data_read + DATA_TYPE_STORAGE_ITER that together fulfill +the purpose, but have unspecified behavior.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/Components.html b/docs/RuntimeSpec/Components/Components.html new file mode 100644 index 000000000..4247e45b1 --- /dev/null +++ b/docs/RuntimeSpec/Components/Components.html @@ -0,0 +1,224 @@ + + + + + + Components - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Components

+

Here is the high-level diagram of various runtime components, including some blockchain layer components. +

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Components/RuntimeCrate.html b/docs/RuntimeSpec/Components/RuntimeCrate.html new file mode 100644 index 000000000..aeeeb46aa --- /dev/null +++ b/docs/RuntimeSpec/Components/RuntimeCrate.html @@ -0,0 +1,351 @@ + + + + + + Runtime crate - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Runtime crate

+

Runtime crate encapsulates the logic of how transactions and receipts should be handled. If it encounters +a smart contract call within a transaction or a receipt it calls near-vm-runner, for all other actions, like account +creation, it processes them in-place.

+

Runtime class

+

The main entry point of the Runtime is method apply. +It applies new singed transactions and incoming receipts for some chunk/shard on top of +given trie and the given state root. +If the validator accounts update is provided, updates validators accounts. +All new signed transactions should be valid and already verified by the chunk producer. +If any transaction is invalid, the method returns an InvalidTxError. +In case of success, the method returns ApplyResult that contains the new state root, trie changes, +new outgoing receipts, stats for validators (e.g. total rent paid by all the affected accounts), +execution outcomes.

+

Apply arguments

+

It takes the following arguments:

+
    +
  • trie: Arc<Trie> - the trie that contains the latest state.
  • +
  • root: CryptoHash - the hash of the state root in the trie.
  • +
  • validator_accounts_update: &Option<ValidatorAccountsUpdate> - optional field that contains updates for validator accounts. +It's provided at the beginning of the epoch or when someone is slashed.
  • +
  • apply_state: &ApplyState - contains block index and timestamp, epoch length, gas price and gas limit.
  • +
  • prev_receipts: &[Receipt] - the list of incoming receipts, from the previous block.
  • +
  • transactions: &[SignedTransaction] - the list of new signed transactions.
  • +
+

Apply logic

+

The execution consists of the following stages:

+
    +
  1. Snapshot the initial state.
  2. +
  3. Apply validator accounts update, if available.
  4. +
  5. Convert new signed transactions into the receipts.
  6. +
  7. Process receipts.
  8. +
  9. Check that incoming and outgoing balances match.
  10. +
  11. Finalize trie update.
  12. +
  13. Return ApplyResult.
  14. +
+

Validator accounts update

+

Validator accounts are accounts that staked some tokens to become a validator. +The validator accounts update usually happens when the current chunk is the first chunk of the epoch. +It also happens when there is a challenge in the current block with one of the participants belong to the current shard.

+

This update distributes validator rewards, return locked tokens and maybe slashes some accounts out of their stake.

+

Signed Transaction conversion

+

New signed transaction transactions are provided by the chunk producer in the chunk. These transactions should be ordered and already validated. +Runtime does validation again for the following reasons:

+
    +
  • to charge accounts for transactions fees, transfer balances, prepaid gas and account rents;
  • +
  • to create new receipts;
  • +
  • to compute burnt gas;
  • +
  • to validate transactions again, in case the chunk producer was malicious.
  • +
+

If the transaction has the the same signer_id and receiver_id, then the new receipt is added to the list of new local receipts, +otherwise it's added to the list of new outgoing receipts.

+

Receipt processing

+

Receipts are processed one by one in the following order:

+
    +
  1. Previously delayed receipts from the state.
  2. +
  3. New local receipts.
  4. +
  5. New incoming receipts.
  6. +
+

After each processed receipt, we compare total gas burnt (so far) with the gas limit. +When the total gas burnt reaches or exceeds the gas limit, the processing stops. +The remaining receipts are considered delayed and stored into the state.

+

Delayed receipts

+

Delayed receipts are stored as a persistent queue in the state. +Initially, the first unprocessed index and the next available index are initialized to 0. +When a new delayed receipt is added, it's written under the next available index in to the state and the next available index is incremented by 1. +When a delayed receipt is processed, it's read from the state using the first unprocessed index and the first unprocessed index is incremented. +At the end of the receipt processing, the all remaining local and incoming receipts are considered to be delayed and stored to the state in their respective order. +If during receipt processing, we've changed indices, then the delayed receipt indices are stored to the state as well.

+

Receipt processing algorithm

+

The receipt processing algorithm is the following:

+
    +
  1. Read indices from the state or initialize with zeros.
  2. +
  3. While the first unprocessed index is less than the next available index do the following +
      +
    1. If the total burnt gas is at least the gas limit, break.
    2. +
    3. Read the receipt from the first unprocessed index.
    4. +
    5. Remove the receipt from the state.
    6. +
    7. Increment the first unprocessed index.
    8. +
    9. Process the receipt.
    10. +
    11. Add the new burnt gas to the total burnt gas.
    12. +
    13. Remember that the delayed queue indices has changed.
    14. +
    +
  4. +
  5. Process the new local receipts and then the new incoming receipts +
      +
    • If the total burnt gas is less then the gas limit: +
        +
      1. Process the receipt.
      2. +
      3. Add the new burnt gas to the total burnt gas.
      4. +
      +
    • +
    • Else: +
        +
      1. Store the receipt under the next available index.
      2. +
      3. Increment the next available index.
      4. +
      5. Remember that the delayed queue indices has changed.
      6. +
      +
    • +
    +
  6. +
  7. If the delayed queue indices has changed, store the new indices to the state.
  8. +
+

Balance checker

+

Balance checker computes the total incoming balance and the total outgoing balance.

+

The total incoming balance consists of the following:

+
    +
  • Incoming validator rewards from validator accounts update.
  • +
  • Sum of the initial accounts balances for all affected accounts. We compute it using the snapshot of the initial state.
  • +
  • Incoming receipts balances. The prepaid fees and gas multiplied their gas prices with the attached balances from transfers and function calls. +Refunds are considered to be free of charge for fees, but still has attached deposits.
  • +
  • Balances for the processed delayed receipts.
  • +
  • Initial balances for the postponed receipts. Postponed receipts are receipts from the previous blocks that were processed, but were not executed. +They are action receipts with some expected incoming data. Usually for a callback on top of awaited promise. +When the expected data arrives later than the action receipt, then the action receipt is postponed. +Note, the data receipts are 0 cost, because they are completely prepaid when issued.
  • +
+

The total outgoing balance consists of the following:

+
    +
  • Sum of the final accounts balance for all affected accounts.
  • +
  • Outgoing receipts balances.
  • +
  • New delayed receipts. Local and incoming receipts that were not processed this time.
  • +
  • Final balances for the postponed receipts.
  • +
  • Total rent paid by all affected accounts.
  • +
  • Total new validator rewards. It's computed from total gas burnt rewards.
  • +
  • Total balance burnt. In case the balance is burnt for some reason (e.g. account was deleted during the refund), it's accounted there.
  • +
  • Total balance slashed. In case a validator is slashed for some reason, the balance is account here.
  • +
+

When you sum up incoming balances and outgoing balances, they should match. +If they don't match, we throw an error.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/FunctionCall.html b/docs/RuntimeSpec/FunctionCall.html new file mode 100644 index 000000000..b41d09dfa --- /dev/null +++ b/docs/RuntimeSpec/FunctionCall.html @@ -0,0 +1,282 @@ + + + + + + FunctionCall - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Function Call

+

In this section we provide an explanation how the FunctionCall action execution works, what are the inputs and what are the outputs. Suppose runtime received the following ActionReceipt:

+

+#![allow(unused_variables)]
+fn main() {
+ActionReceipt {
+     id: "A1",
+     signer_id: "alice",
+     signer_public_key: "6934...e248",
+     receiver_id: "dex",
+     predecessor_id: "alice",
+     input_data_ids: [],
+     output_data_receivers: [],
+     actions: [FunctionCall { gas: 100000, deposit: 100000u128, method_name: "exchange", args: "{arg1, arg2, ...}", ... }],
+ }
+}
+
+

input_data_ids to PromiseResult's

+

ActionReceipt.input_data_ids must be satisfied before execution (see Receipt Matching). Each of ActionReceipt.input_data_ids will be converted to the PromiseResult::Successful(Vec<u8>) if data_id.data is Some(Vec<u8>) otherwise if data_id.data is None promise will be PromiseResult::Failed.

+

Input

+

The FunctionCall executes in the receiver_id account environment.

+
    +
  • a vector of Promise Results which can be accessed by a promise_result import PromisesAPI promise_result)
  • +
  • the original Transaction signer_id, signer_public_key data from the ActionReceipt (e.g. method_name, args, predecessor_id, deposit, prepaid_gas (which is gas in FunctionCall))
  • +
  • a general blockchain data (e.g. block_index, block_timestamp)
  • +
  • read data from the account storage
  • +
+

A full list of the data available for the contract can be found in Context API and Trie

+

Execution

+

First of all, runtime does prepare the Wasm binary to be executed:

+
    +
  • loads the contract code from the receiver_id account storage
  • +
  • deserializes and validates the code Wasm binary (see prepare::prepare_contract)
  • +
  • injects the gas counting function gas which will charge gas on the beginning of the each code block
  • +
  • instantiates Bindings Spec with binary and calls the FunctionCall.method_name exported function
  • +
+

During execution, VM does the following:

+
    +
  • counts burnt gas on execution
  • +
  • counts used gas (which is burnt gas + gas attached to the new created receipts)
  • +
  • counts how accounts storage usage increased by the call
  • +
  • collects logs produced by the contract
  • +
  • sets the return data
  • +
  • creates new receipts through PromisesAPI
  • +
+

Output

+

The output of the FunctionCall:

+
    +
  • storage updates - changes to the account trie storage which will be applied on a successful call
  • +
  • burnt_gas - irreversible amount of gas witch was spent on computations
  • +
  • used_gas - includes burnt_gas and gas attached to the new ActionReceipts created during the method execution. In case of failure, created ActionReceipts not going to be sent thus account will pay only for burnt_gas
  • +
  • balance - unspent account balance (account balance could be spent on deposits of newly created FunctionCalls or TransferActions to other contracts)
  • +
  • storage_usage - storage_usage after ActionReceipt application
  • +
  • logs - during contract execution, utf8/16 string log records could be created. Logs are not persistent currently.
  • +
  • new_receipts - new ActionReceipts created during the execution. These receipts are going to be sent to the respective receiver_ids (see Receipt Matching explanation)
  • +
  • result could be either ReturnData::Value(Vec<u8>) or ReturnData::ReceiptIndex(u64)`
  • +
+

Value Result

+

If applied ActionReceipt contains output_data_receivers, runtime will create DataReceipt for each of data_id and receiver_id and data equals returned value. Eventually, these DataReceipt will be delivered to the corresponding receivers.

+

ReceiptIndex Result

+

Successful result could not return any Value, but generates a bunch of new ActionReceipts instead. One example could be a callback. In this case, we assume the the new Receipt will send its Value Result to the output_data_receivers of the current ActionReceipt.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/README.html b/docs/RuntimeSpec/README.html new file mode 100644 index 000000000..f019d8dd0 --- /dev/null +++ b/docs/RuntimeSpec/README.html @@ -0,0 +1,222 @@ + + + + + + Runtime specification - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Runtime Specification

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Receipts.html b/docs/RuntimeSpec/Receipts.html new file mode 100644 index 000000000..420032333 --- /dev/null +++ b/docs/RuntimeSpec/Receipts.html @@ -0,0 +1,425 @@ + + + + + + Receipts - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Receipt

+

All cross-contract (we assume that each account lives in it's own shard) communication in Near happens trough Receipts. +Receipts are stateful in a sense that they serve not only as messages between accounts but also can be stored in the account storage to await DataReceipts.

+

Each receipt has a predecessor_id (who sent it) and receiver_id the current account.

+

Receipts are one of 2 types: action receipts or data receipts.

+

Data Receipts are receipts that contains some data for some ActionReceipt with the same receiver_id. +Data Receipts has 2 fields: the unique data identifier data_id and data the received result. +data is an Option field and it indicates whether the result was a success or a failure. If it's Some, then it means +the remote execution was successful and it contains the vector of bytes of the result.

+

Each ActionReceipt also contains fields related to data:

+
    +
  • input_data_ids - a vector of input data with the data_ids required for the execution of this receipt.
  • +
  • output_data_receivers - a vector of output data receivers. It indicates where to send outgoing data. +Each DataReceiver consists of data_id and receiver_id for routing.
  • +
+

Before any action receipt is executed, all input data dependencies need to be satisfied. +Which means all corresponding data receipts has to be received. +If any of the data dependencies is missing, the action receipt is postponed until all missing data dependency arrives.

+

Because Chain and Runtime guarantees that no receipts are missing, we can rely that every action receipt will be executed eventually (Receipt Matching explanation).

+

Each Receipt has the following fields:

+

predecessor_id

+
    +
  • type: AccountId
  • +
+

The account_id which issued a receipt.

+

receiver_id

+
    +
  • type: AccountId
  • +
+

The destination account_id.

+

receipt_id

+
    +
  • type: AccountId
  • +
+

An unique id for the receipt.

+

receipt

+ +

There is a 2 types of Receipts in Near: ActionReceipt and DataReceipt. ActionReceipt is a request to apply Actions, while DataReceipt is a result of application of these actions.

+

ActionReceipt

+

ActionReceipt represents a request to apply actions on the receiver_id side. It could be a derived as a result of a Transaction execution or a another ActionReceipt processing. ActionReceipt consists the following fields:

+

signer_id

+
    +
  • type: AccountId
  • +
+

An account_id which signed the original transaction.

+

signer_public_key

+
    +
  • type: PublicKey
  • +
+

An AccessKey which was used to sign the original transaction.

+

gas_price

+
    +
  • type: u128
  • +
+

Gas price is a gas price which was set in a block where original transaction has been applied.

+

output_data_receivers

+
    +
  • type: [DataReceiver{ data_id: CryptoHash, receiver_id: AccountId }]
  • +
+

If smart contract finishes its execution with some value (not Promise), runtime creates a [DataReceipt]s for each of the output_data_receivers.

+

input_data_ids

+
    +
  • type: [CryptoHash]_
  • +
+

input_data_ids are the receipt data dependencies. input_data_ids correspond to DataReceipt.data_id.

+

actions

+ +

DataReceipt

+

DataReceipt represents a final result of some contract execution.

+

data_id

+
    +
  • type: CryptoHash
  • +
+

An a unique DataReceipt identifier.

+

data

+
    +
  • type: Option([u8])
  • +
+

An an associated data in bytes. None indicates an error during execution.

+

Creating Receipt

+

Receipts can be generated during the execution of the SignedTransaction (see example) or during application of some ActionReceipt which contains FunctionCall action. The result of the FunctionCall could either

+

Receipt Matching

+

Runtime doesn't expect that Receipts are coming in a particular order. Each Receipt is processed individually. The goal of the Receipt Matching process is to match all ActionReceipts to the corresponding DataReceipts.

+

Processing ActionReceipt

+

For each incoming ActionReceipt runtime checks whether we have all the DataReceipts (defined as ActionsReceipt.input_data_ids) required for execution. If all the required DataReceipts are already in the storage, runtime can apply this ActionReceipt immediately. Otherwise we save this receipt as a Postponed ActionReceipt. Also we save Pending DataReceipts Count and a link from pending DataReceipt to the Postponed ActionReceipt. Now runtime will wait all the missing DataReceipts to apply the Postponed ActionReceipt.

+

Postponed ActionReceipt

+

A Receipt which runtime stores until all the designated DataReceipts arrive.

+
    +
  • key = account_id,receipt_id
  • +
  • value = [u8]
  • +
+

Where account_id is Receipt.receiver_id, receipt_id is Receipt.receiver_id and value is a serialized Receipt (which type must be ActionReceipt).

+

Pending DataReceipt Count

+

A counter which counts pending DataReceipts for a Postponed Receipt initially set to the length of missing input_data_ids of the incoming ActionReceipt. It's decrementing with every new received DataReceipt:

+
    +
  • key = account_id,receipt_id
  • +
  • value = u32
  • +
+

Where account_id is AccountId, receipt_id is CryptoHash and value is an integer.

+

Pending DataReceipt for Postponed ActionReceipt

+

We index each pending DataReceipt so when a new DataReceipt arrives we can find to which Postponed Receipt it belongs.

+
    +
  • key = account_id,data_id
  • +
  • value = receipt_id
  • +
+

Processing DataReceipt

+

Received DataReceipt

+

First of all, runtime saves the incoming DataReceipt to the storage as:

+
    +
  • key = account_id,data_id
  • +
  • value = [u8]
  • +
+

Where account_id is Receipt.receiver_id, data_id is DataReceipt.data_id and value is a DataReceipt.data (which is typically a serialized result of the call to a particular contract).

+

Next, runtime checks if there is any Postponed ActionReceipt awaits for this DataReceipt by querying Pending DataReceipt to the Postponed Receipt. If there is no postponed receipt_id yet, we do nothing else. If there is a postponed receipt_id, we do the following:

+ +

If Pending DataReceipt Count is now 0 that means all the Receipt.input_data_ids are in storage and runtime can safely apply the Postponed Receipt and remove it from the store.

+

Case 1: Call to multiple contracts and await responses

+

Suppose runtime got the following ActionReceipt:

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt_id: "693406"
+    receipt: ActionReceipt {
+        input_data_ids: []
+    }
+}
+
+

If execution return Result::Value

+

Suppose runtime got the following ActionReceipt (we use a python-like pseudo code):

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt_id: "5e73d4"
+    receipt: ActionReceipt {
+        input_data_ids: ["e5fa44", "7448d8"]
+    }
+}
+
+

We can't apply this receipt right away: there are missing DataReceipt'a with IDs: ["e5fa44", "7448d8"]. Runtime does the following:

+
postponed_receipts["alice,5e73d4"] = borsh_serialize(
+    Receipt{
+        receiver_id: "alice",
+        receipt_id: "5e73d4"
+        receipt: ActionReceipt {
+            input_data_ids: ["e5fa44", "7448d8"]
+        }
+    }
+)
+pending_data_receipt_store["alice,e5fa44"] = "5e73d4"
+pending_data_receipt_store["alice,7448d8"] = "5e73d4"
+pending_data_receipt_count = 2
+
+

Note: the subsequent Receipts could arrived in the current block or next, that's why we save Postponed ActionReceipt in the storage

+

Then the first pending Pending DataReceipt arrives:

+
# Non-relevant fields are omitted.
+Receipt {
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "e5fa44",
+        data: "some data for alice",
+    }
+}
+
+
data_receipts["alice,e5fa44"] = borsh_serialize(Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "e5fa44",
+        data: "some data for alice",
+    }
+};
+pending_data_receipt_count["alice,5e73d4"] = 1`
+del pending_data_receipt_store["alice,e5fa44"]
+
+

And finally the last Pending DataReceipt arrives:

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "7448d8",
+        data: "some more data for alice",
+    }
+}
+
+
data_receipts["alice,7448d8"] = borsh_serialize(Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "7448d8",
+        data: "some more data for alice",
+    }
+};
+postponed_receipt_id = pending_data_receipt_store["alice,5e73d4"]
+postponed_receipt = postponed_receipts[postponed_receipt_id]
+del postponed_receipts[postponed_receipt_id]
+del pending_data_receipt_count["alice,5e73d4"]
+del pending_data_receipt_store["alice,7448d8"]
+apply_receipt(postponed_receipt)
+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Scenarios/CrossContractCall.html b/docs/RuntimeSpec/Scenarios/CrossContractCall.html new file mode 100644 index 000000000..db42ea52a --- /dev/null +++ b/docs/RuntimeSpec/Scenarios/CrossContractCall.html @@ -0,0 +1,328 @@ + + + + + + Cross-Contract Call - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Cross-Contract Call

+

This guide assumes that you have read the Financial Transaction section.

+

Suppose Alice is a calling a function reserve_trip(city: String, date: u64) on a smart contract deployed to a travel_agency +account which in turn calls reserve(date: u64) on a smart contract deployed to a hotel_near account and attaches +a callback to method hotel_reservation_complete(date: u64) on travel_agency.

+ +

Pre-requisites

+

It possible for Alice to call the travel_agency in several different ways.

+

In the simplest scenario Alice has an account alice_near and she has a full access key. +She then composes the following transaction that calls the travel_agency:

+
Transaction {
+    signer_id: "alice_near",
+    public_key: "ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy",
+    nonce: 57,
+    receiver_id: "travel_agency",
+    block_hash: "CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf",
+    actions: vec![
+        Action::FunctionCall(FunctionCallAction {
+            method_name: "reserve_trip",
+            args: "{\"city\": \"Venice\", \"date\": 20191201}",
+            gas: 1000000,
+            tokens: 100,
+        })
+    ],
+}
+
+

Here the public key corresponds to the full access key of alice_near account. All other fields in Transaction were +discussed in the Financial Transaction section. The FunctionCallAction action describes how +the contract should be called. The receiver_id field in Transaction already establishes what contract should be executed, +FunctionCallAction merely describes how it should be executed. Interestingly, the arguments is just a blob of bytes, +it is up to the contract developer what serialization format they choose for their arguments. In this example, the contract +developer has chosen to use JSON and so the tool that Alice uses to compose this transaction is expected to use JSON too +to pass the arguments. gas declares how much gas alice_near has prepaid for dynamically calculated fees of the smart +contract executions and other actions that this transaction may spawn. The tokens is the amount of alice_near attaches +to be deposited to whatever smart contract that it is calling to. Notice, gas and tokens are in different units of +measurement.

+

Now, consider a slightly more complex scenario. In this scenario Alice uses a restricted access key to call the function. +That is the permission of the access key is not AccessKeyPermission::FullAccess but is instead: AccessKeyPermission::FunctionCall(FunctionCallPermission) +where

+
FunctionCallPermission {
+    allowance: Some(3000),
+    receiver_id: "travel_agency",
+    method_names: [ "reserve_trip", "cancel_trip" ]
+}
+
+

This scenario might arise when someone Alice's parent has given them a restricted access to alice_near account by +creating an access key that can be used strictly for trip management. +This access key allows up to 3000 tokens to be spent (which includes token transfers and payments for gas), it can +be only used to call travel_agency and it can be only used with the reserve_trip and cancel_trip methods. +The way runtime treats this case is almost exactly the same as the previous one, with the only difference on how it verifies +the signature of on the signed transaction, and that it also checks for allowance to not be exceeded.

+

Finally, in the last scenario, Alice does not have an account (or the existence of alice_near is irrelevant). However, +alice has full or restricted access key directly on travel_agency account. In that case signer_id == receiver_id in the +Transaction object and runtime will convert transaction to the first receipt and apply that receipt in the same block.

+

This section will focus on the first scenario, since the other two are the same with some minor differences.

+

Transaction to receipt

+

The process of converting transaction to receipt is very similar to the Financial Transaction +with several key points to note:

+
    +
  • Since Alice attaches 100 tokens to the function call, we subtract them from alice_near upon converting transaction to receipt, +similar to the regular financial transaction;
  • +
  • Since we are attaching 1000000 prepaid gas, we will not only subtract the gas costs of processing the receipt from alice_near, but +will also purchase 1000000 gas using the current gas price.
  • +
+

Processing the reserve_trip receipt

+

The receipt created on the shard that hosts alice_near will eventually arrive to the shard hosting travel_agency account. +It will be processed in Runtime::apply which will check that receipt does not have data dependencies (which is the case because +this function call is not a callback) and will call Runtime::apply_action_receipt. +At this point receipt processing is similar to receipt processing from the Financial Transaction +section, with one difference that we will also call action_function_call which will do the following:

+
    +
  • Retrieve the Wasm code of the smart contract (either from the database or from the cache);
  • +
  • Initialize runtime context through VMContext and create RuntimeExt which provides access to the trie when the smart contract +call the storage API. Specifically "{\"city\": \"Venice\", \"date\": 20191201}" arguments will be set in VMContext.
  • +
  • Calls near_vm_runner::run which does the following: +
      +
    • Inject gas, stack, and other kinds of metering;
    • +
    • Verify that Wasm code does not use floats;
    • +
    • Checks that bindings API functions that the smart contract is trying to call are actually those provided by near_vm_logic;
    • +
    • Compiles Wasm code into the native binary;
    • +
    • Calls reserve_trip on the smart contract. +
        +
      • During the execution of the smart contract it will at some point call promise_create and promise_then, which will +call method on RuntimeExt that will record that two promises were created and that the second one should +wait on the first one. Specifically, promise_create will call RuntimeExt::create_receipt(vec![], "hotel_near") +returning 0 and then RuntimeExt::create_receipt(vec![0], "travel_agency");
      • +
      +
    • +
    +
  • +
  • action_function_call then collects receipts from VMContext along with the execution result, logs, and information +about used gas;
  • +
  • apply_action_receipt then goes over the collected receipts from each action and returns them at the end of Runtime::apply together with +other receipts.
  • +
+

Processing the reserve receipt

+

This receipt will have output_data_receivers with one element corresponding to the receipt that calls hotel_reservation_complete, +which will tell the runtime that it should create DataReceipt and send it towards travel_agency once the execution of reserve(date: u64) is complete.

+

The rest of the smart contract execution is similar to the above.

+

Processing the hotel_reservation_complete receipt

+

Upon receiving the hotel_reservation_complete receipt the runtime will notice that its input_data_ids is not empty +which means that it cannot be executed until reserve receipt is complete. It will store the receipt in the trie together +with the counter of how many DataReceipt it is waiting on.

+

It will not call the Wasm smart contract at this point.

+

Processing the DataReceipt

+

Once the runtime receives the DataReceipt it takes the receipt with hotel_reservation_complete function call +and executes it following the same execution steps as with the reserve_trip receipt.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Scenarios/FinancialTransaction.html b/docs/RuntimeSpec/Scenarios/FinancialTransaction.html new file mode 100644 index 000000000..001d9495d --- /dev/null +++ b/docs/RuntimeSpec/Scenarios/FinancialTransaction.html @@ -0,0 +1,316 @@ + + + + + + Financial Transaction - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Financial Transaction

+

Suppose Alice wants to transfer 100 tokens to Bob. +In this case we are talking about native Near Protocol tokens, oppose to user-defined tokens implemented through a smart contract. +There are several way this can be done:

+
    +
  • Direct transfer through a transaction containing transfer action;
  • +
  • Alice calling a smart contract that in turn creates a financial transaction towards Bob.
  • +
+

In this section we are talking about the former simpler scenario.

+

Pre-requisites

+

For this to work both Alice and Bob need to have accounts and an access to them through +the full access keys.

+

Suppose Alice has account alice_near and Bob has account bob_near. Also, some time in the past, +each of them has created a public-secret key-pair, saved the secret key somewhere (e.g. in a wallet application) +and created a full access key with the public key for the account.

+

We also need to assume that both Alice and Bob has some number of tokens on their accounts. Alice needs >100 tokens on the account +so that she could transfer 100 tokens to Bob, but also Alice and Bob need to have some tokens to pay for the rent of their account -- +which is essentially the cost of the storage occupied by the account in the Near Protocol network.

+

Creating a transaction

+

To send the transaction neither Alice nor Bob need to run a node. +However, Alice needs a way to create and sign a transaction structure. +Suppose Alice uses near-shell or any other third-party tool for that. +The tool then creates the following structure:

+
Transaction {
+    signer_id: "alice_near",
+    public_key: "ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy",
+    nonce: 57,
+    receiver_id: "bob_near",
+    block_hash: "CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf",
+    actions: vec![
+        Action::Transfer(TransferAction {deposit: 100} )
+    ],
+}
+
+

Which contains one token transfer action, the id of the account that signs this transaction (alice_near) +the account towards which this transaction is addressed (bob_near). Alice also uses the public key +associated with one of the full access keys of alice_near account.

+

Additionally, Alice uses the nonce which is unique value that allows Near Protocol to differentiate the transactions (in case there are several transfers coming in rapid +succession) which should be strictly increasing with each transaction. Unlike in Ethereum, nonces are associated with access keys, oppose to +the entire accounts, so several users using the same account through different access keys need not to worry about accidentally +reusing each other's nonces.

+

The block hash is used to calculate the transaction "freshness". It is used to make sure the transaction does +not get lost (let's say somewhere in the network) and then arrive hours, days, or years later when it is not longer relevant +or would be undesirable to execute. The transaction does not need to arrive at the specific block, instead it is required to +arrive within certain number of blocks from the bock identified by the block_hash (as of 2019-10-27 the constant is 10 blocks). +Any transaction arriving outside this threshold is considered to be invalid.

+

near-shell or other tool that Alice uses then signs this transaction, by: computing the hash of the transaction and signing it +with the secret key, resulting in a SignedTransaction object.

+

Sending the transaction

+

To send the transaction, near-shell connects through the RPC to any Near Protocol node and submits it. +If users wants to wait until the transaction is processed they can use send_tx_commit JSONRPC method which waits for the +transaction to appear in a block. Otherwise the user can use send_tx_async.

+

Transaction to receipt

+

We skip the details on how the transaction arrives to be processed by the runtime, since it is a part of the blockchain layer +discussion. +We consider the moment where SignedTransaction is getting passed to Runtime::apply of the +runtime crate. +Runtime::apply immediately passes transaction to Runtime::process_transaction +which in turn does the following:

+
    +
  • Verifies that transaction is valid;
  • +
  • Applies initial reversible and irreversible charges to alice_near account;
  • +
  • Creates a receipt with the same set of actions directed towards bob_near.
  • +
+

The first two items are performed inside Runtime::verify_and_charge_transaction method. +Specifically it does the following checks:

+
    +
  • Verifies that alice_near and bob_near are syntactically valid account ids;
  • +
  • Verifies that the signature of the transaction is correct based on the transaction hash and the attached public key;
  • +
  • Retrieves the latest state of the alice_near account, and simultaneously checks that it exists;
  • +
  • Retrieves the state of the access key of that alice_near used to sign the transaction;
  • +
  • Checks that transaction nonce is greater than the nonce of the latest transaction executed with that access key;
  • +
  • Checks whether the account that signed the transaction is the same as the account that receives it. In our case the sender (alice_near) and the receiver (bob_near) are not the same. We apply different fees if receiver and sender is the same account;
  • +
  • Applies the storage rent to the alice_near account;
  • +
  • Computes how much gas we need to spend to convert this transaction to a receipt;
  • +
  • Computes how much balance we need to subtract from alice_near, in this case it is 100 tokens;
  • +
  • Deducts the tokens and the gas from alice_near balance, using the current gas price;
  • +
  • Checks whether after all these operations account has enough balance to passively pay for the rent for the next several blocks +(an economical constant defined by Near Protocol). Otherwise account will be open for an immediate deletion, which we do not want;
  • +
  • Updates the alice_near account with the new balance and the used access key with the new nonce;
  • +
  • Computes how much reward should be paid to the validators from the burnt gas.
  • +
+

If any of the above operations fail all of the changes will be reverted.

+

Processing receipt

+

The receipt created in the previous section will eventually arrive to a runtime on the shard that hosts bob_near account. +Again, it will be processed by Runtime::apply which will immediately call Runtime::process_receipt. +It will check that this receipt does not have data dependencies (which is only the case of function calls) and will then call Runtime::apply_action_receipt on TransferAction. +Runtime::apply_action_receipt will perform the following checks:

+
    +
  • Retrieves the state of bob_near account, if it still exists (it is possible that Bob has deleted his account concurrently with the transfer transaction);
  • +
  • Applies the rent to Bob's account;
  • +
  • Computes the cost of processing a receipt and a transfer action;
  • +
  • Checks if bob_near still exists and if it is deposits the transferred tokens;
  • +
  • Computes how much reward should be paid to the validators from the burnt gas.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Scenarios/Scenarios.html b/docs/RuntimeSpec/Scenarios/Scenarios.html new file mode 100644 index 000000000..4bba0bf2c --- /dev/null +++ b/docs/RuntimeSpec/Scenarios/Scenarios.html @@ -0,0 +1,223 @@ + + + + + + Scenarios - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Scenarios

+

In the following sections we go over the common scenarios that runtime takes care of.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/RuntimeSpec/Transactions.html b/docs/RuntimeSpec/Transactions.html new file mode 100644 index 000000000..7da7e9e06 --- /dev/null +++ b/docs/RuntimeSpec/Transactions.html @@ -0,0 +1,255 @@ + + + + + + Transactions - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Transactions

+

A transaction in Near is a list of actions and additional information:

+

+#![allow(unused_variables)]
+fn main() {
+pub struct Transaction {
+    /// An account on which behalf transaction is signed
+    pub signer_id: AccountId,
+    /// An access key which was used to sign a transaction
+    pub public_key: PublicKey,
+    /// Nonce is used to determine order of transaction in the pool.
+    /// It increments for a combination of `signer_id` and `public_key`
+    pub nonce: Nonce,
+    /// Receiver account for this transaction. If
+    pub receiver_id: AccountId,
+    /// The hash of the block in the blockchain on top of which the given transaction is valid
+    pub block_hash: CryptoHash,
+    /// A list of actions to be applied
+    pub actions: Vec<Action>,
+}
+}
+
+

Signed Transaction

+

SignedTransaction is what the node receives from a wallet through JSON-RPC endpoint and then routed to the shard where receiver_id account lives. Signature proves an ownership of the corresponding public_key (which is an AccessKey for a particular account) as well as authenticity of the transaction itself.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct SignedTransaction {
+    pub transaction: Transaction,
+    /// A signature of a hash of the Borsh-serialized Transaction
+    pub signature: Signature,
+}
+
+

Take a look some scenarios how transaction can be applied.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Standards/README.html b/docs/Standards/README.html new file mode 100644 index 000000000..757be3566 --- /dev/null +++ b/docs/Standards/README.html @@ -0,0 +1,225 @@ + + + + + + Standards - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Standards

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Standards/Tokens/FungibleToken.html b/docs/Standards/Tokens/FungibleToken.html new file mode 100644 index 000000000..af77e9435 --- /dev/null +++ b/docs/Standards/Tokens/FungibleToken.html @@ -0,0 +1,428 @@ + + + + + + Fungible Token - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Fungible Token

+

Summary

+

A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.

+

Motivation

+

NEAR Protocol uses an asynchronous sharded Runtime. This means the following:

+
    +
  • Storage for different contracts and accounts can be located on the different shards.
  • +
  • Two contracts can be executed at the same time in different shards.
  • +
+

While this increases the transaction throughput linearly with the number of shards, it also creates some challenges for cross-contract development. +For example, if one contract wants to query some information from the state of another contract (e.g. current balance), by the time the first contract receive the balance the real balance can change. +It means in the async system, a contract can't rely on the state of other contract and assume it's not going to change.

+

Instead the contract can rely on temporary partial lock of the state with a callback to act or unlock, but it requires careful engineering to avoid dead locks. +In this standard we're trying to avoid enforcing locks, since most actions can still be completed without locks by transferring ownership to an escrow account.

+

Prior art:

+ +

Guide-level explanation

+

We should be able to do the following:

+
    +
  • Initialize contract once. The given total supply will be owned by the given account ID.
  • +
  • Get the total supply.
  • +
  • Transfer tokens to a new user.
  • +
  • Set a given allowance for an escrow account ID. +
      +
    • Escrow will be able to transfer up this allowance from your account.
    • +
    • Get current balance for a given account ID.
    • +
    +
  • +
  • Transfer tokens from one user to another.
  • +
  • Get the current allowance for an escrow account on behalf of the balance owner. This should only be used in the UI, since a contract shouldn't rely on this temporary information.
  • +
+

There are a few concepts in the scenarios above:

+
    +
  • Total supply. It's the total number of tokens in circulation.
  • +
  • Balance owner. An account ID that owns some amount of tokens.
  • +
  • Balance. Some amount of tokens.
  • +
  • Transfer. Action that moves some amount from one account to another account.
  • +
  • Escrow. A different account from the balance owner who has permission to use some amount of tokens.
  • +
  • Allowance. The amount of tokens an escrow account can use on behalf of the account owner.
  • +
+

Note, that the precision is not part of the default standard, since it's not required to perform actions. The minimum +value is always 1 token.

+

Simple transfer

+

Alice wants to send 5 wBTC tokens to Bob.

+

Assumptions

+
    +
  • The wBTC token contract is wbtc.
  • +
  • Alice's account is alice.
  • +
  • Bob's account is bob.
  • +
  • The precision on wBTC contract is 10^8.
  • +
  • The 5 tokens is 5 * 10^8 or as a number is 500000000.
  • +
+

High-level explanation

+

Alice needs to issue one transaction to wBTC contract to transfer 5 tokens (multiplied by precision) to Bob.

+

Technical calls

+
    +
  1. alice calls wbtc::transfer({"new_owner_id": "bob", "amount": "500000000"}).
  2. +
+

Token deposit to a contract

+

Alice wants to deposit 1000 DAI tokens to a compound interest contract to earn extra tokens.

+

Assumptions

+
    +
  • The DAI token contract is dai.
  • +
  • Alice's account is alice.
  • +
  • The compound interest contract is compound.
  • +
  • The precision on DAI contract is 10^18.
  • +
  • The 1000 tokens is 1000 * 10^18 or as a number is 1000000000000000000000.
  • +
  • The compound contract can work with multiple token types.
  • +
+

High-level explanation

+

Alice needs to issue 2 transactions. The first one to dai to set an allowance for compound to be able to withdraw tokens from alice. +The second transaction is to the compound to start the deposit process. Compound will check that the DAI tokens are supported and will try to withdraw the desired amount of DAI from alice.

+
    +
  • If transfer succeeded, compound can increase local ownership for alice to 1000 DAI
  • +
  • If transfer fails, compound doesn't need to do anything in current example, but maybe can notify alice of unsuccessful transfer.
  • +
+

Technical calls

+
    +
  1. alice calls dai::set_allowance({"escrow_account_id": "compound", "allowance": "1000000000000000000000"}).
  2. +
  3. alice calls compound::deposit({"token_contract": "dai", "amount": "1000000000000000000000"}). During the deposit call, compound does the following: +
      +
    1. makes async call dai::transfer_from({"owner_id": "alice", "new_owner_id": "compound", "amount": "1000000000000000000000"}).
    2. +
    3. attaches a callback compound::on_transfer({"owner_id": "alice", "token_contract": "dai", "amount": "1000000000000000000000"}).
    4. +
    +
  4. +
+

Multi-token swap on DEX

+

Charlie wants to exchange his wLTC to wBTC on decentralized exchange contract. Alex wants to buy wLTC and has 80 wBTC.

+

Assumptions

+
    +
  • The wLTC token contract is wltc.
  • +
  • The wBTC token contract is wbtc.
  • +
  • The DEX contract is dex.
  • +
  • Charlie's account is charlie.
  • +
  • Alex's account is alex.
  • +
  • The precision on both tokens contract is 10^8.
  • +
  • The amount of 9001 wLTC tokens is Alex wants is 9001 * 10^8 or as a number is 900100000000.
  • +
  • The 80 wBTC tokens is 80 * 10^8 or as a number is 8000000000.
  • +
  • Charlie has 1000000 wLTC tokens which is 1000000 * 10^8 or as a number is 100000000000000
  • +
  • Dex contract already has an open order to sell 80 wBTC tokens by alex towards 9001 wLTC.
  • +
  • Without Safes implementation, DEX has to act as an escrow and hold funds of both users before it can do an exchange.
  • +
+

High-level explanation

+

Let's first setup open order by Alex on DEX. It's similar to Token deposit to a contract example above.

+
    +
  • Alex sets an allowance on wBTC to DEX
  • +
  • Alex calls deposit on Dex for wBTC.
  • +
  • Alex calls DEX to make an new sell order.
  • +
+

Then Charlie comes and decides to fulfill the order by selling his wLTC to Alex on DEX. +Charlie calls the DEX

+
    +
  • Charlie sets the allowance on wLTC to DEX
  • +
  • Alex calls deposit on Dex for wLTC.
  • +
  • Then calls DEX to take the order from Alex.
  • +
+

When called, DEX makes 2 async transfers calls to exchange corresponding tokens.

+
    +
  • DEX calls wLTC to transfer tokens DEX to Alex.
  • +
  • DEX calls wBTC to transfer tokens DEX to Charlie.
  • +
+

Technical calls

+
    +
  1. alex calls wbtc::set_allowance({"escrow_account_id": "dex", "allowance": "8000000000"}).
  2. +
  3. alex calls dex::deposit({"token": "wbtc", "amount": "8000000000"}). +
      +
    1. dex calls wbtc::transfer_from({"owner_id": "alex", "new_owner_id": "dex", "amount": "8000000000"})
    2. +
    +
  4. +
  5. alex calls dex::trade({"have": "wbtc", "have_amount": "8000000000", "want": "wltc", "want_amount": "900100000000"}).
  6. +
  7. charlie calls wltc::set_allowance({"escrow_account_id": "dex", "allowance": "100000000000000"}).
  8. +
  9. charlie calls dex::deposit({"token": "wltc", "amount": "100000000000000"}). +
      +
    1. dex calls wltc::transfer_from({"owner_id": "charlie", "new_owner_id": "dex", "amount": "100000000000000"})
    2. +
    +
  10. +
  11. charlie calls dex::trade({"have": "wltc", "have_amount": "900100000000", "want": "wbtc", "want_amount": "8000000000"}). +
      +
    • dex calls wbtc::transfer({"new_owner_id": "charlie", "amount": "8000000000"})
    • +
    • dex calls wltc::transfer({"new_owner_id": "alex", "amount": "900100000000"})
    • +
    +
  12. +
+

Reference-level explanation

+

The full implementation in Rust can be found there: https://github.com/nearprotocol/near-sdk-rs/blob/master/examples/fungible-token/src/lib.rs

+

NOTES:

+
    +
  • All amounts, balances and allowance are limited by U128 (max value 2**128 - 1).
  • +
  • Token standard uses JSON for serialization of arguments and results.
  • +
  • Amounts in arguments and results have are serialized as Base-10 strings, e.g. "100". This is done to avoid +JSON limitation of max integer value of 2**53.
  • +
+

Interface:

+

+#![allow(unused_variables)]
+fn main() {
+/******************/
+/* CHANGE METHODS */
+/******************/
+
+/// Sets the `allowance` for `escrow_account_id` on the account of the caller of this contract
+/// (`predecessor_id`) who is the balance owner.
+pub fn set_allowance(&mut self, escrow_account_id: AccountId, allowance: U128);
+
+/// Transfers the `amount` of tokens from `owner_id` to the `new_owner_id`.
+/// Requirements:
+/// * `amount` should be a positive integer.
+/// * `owner_id` should have balance on the account greater or equal than the transfer `amount`.
+/// * If this function is called by an escrow account (`owner_id != predecessor_account_id`),
+///   then the allowance of the caller of the function (`predecessor_account_id`) on
+///   the account of `owner_id` should be greater or equal than the transfer `amount`.
+pub fn transfer_from(&mut self, owner_id: AccountId, new_owner_id: AccountId, amount: U128);
+
+
+/// Transfer `amount` of tokens from the caller of the contract (`predecessor_id`) to
+/// `new_owner_id`.
+/// Act the same was as `transfer_from` with `owner_id` equal to the caller of the contract
+/// (`predecessor_id`).
+pub fn transfer(&mut self, new_owner_id: AccountId, amount: U128);
+
+/****************/
+/* VIEW METHODS */
+/****************/
+
+/// Returns total supply of tokens.
+pub fn get_total_supply(&self) -> U128;
+
+/// Returns balance of the `owner_id` account.
+pub fn get_balance(&self, owner_id: AccountId) -> U128;
+
+/// Returns current allowance of `escrow_account_id` for the account of `owner_id`.
+///
+/// NOTE: Other contracts should not rely on this information, because by the moment a contract
+/// receives this information, the allowance may already be changed by the owner.
+/// So this method should only be used on the front-end to see the current allowance.
+pub fn get_allowance(&self, owner_id: AccountId, escrow_account_id: AccountId) -> U128;
+}
+
+

Drawbacks

+
    +
  • Current interface doesn't have minting, precision (decimals), naming. But it should be done as extensions, e.g. a Precision extension.
  • +
  • It's not possible to exchange tokens without transferring them to escrow first.
  • +
  • It's not possible to transfer tokens to a contract with a single transaction without setting the allowance first. +It should be possible if we introduce transfer_with function that transfers tokens and calls escrow contract. It needs to handle result of the execution and contracts have to be aware of this API.
  • +
+

Future possibilities

+
    +
  • Support for multiple token types
  • +
  • Minting and burning
  • +
  • Precision, naming and short token name.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Terminology.html b/docs/Terminology.html new file mode 100644 index 000000000..399fd1197 --- /dev/null +++ b/docs/Terminology.html @@ -0,0 +1,225 @@ + + + + + + Terminology - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

Terminology

+

Abstraction definitions

+

Chain

+

A chain is a replication machinery, that provides for any type of state a way to replicate across the network and reach consensus on the state.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 000000000..cf83a3e42 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,226 @@ + + + + + + Introduction - NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

The NEAR Protocol Specification

+

Near Protocol is the scalable blockchain protocol.

+

For the overview of the NEAR Protocol, read the following documents in numerical order.

+
    +
  1. Terminology
  2. +
  3. Data structures
  4. +
  5. Architecture
  6. +
  7. Chain specification
  8. +
  9. Runtime specification
  10. +
  11. Economics
  12. +
+

Standards

+

Standards such as Fungible Token Standard can be found in Standards page.

+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/print.html b/docs/print.html new file mode 100644 index 000000000..b24353c93 --- /dev/null +++ b/docs/print.html @@ -0,0 +1,3472 @@ + + + + + + NEAR Protocol Specification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+
+

The NEAR Protocol Specification

+

Near Protocol is the scalable blockchain protocol.

+

For the overview of the NEAR Protocol, read the following documents in numerical order.

+
    +
  1. Terminology
  2. +
  3. Data structures
  4. +
  5. Architecture
  6. +
  7. Chain specification
  8. +
  9. Runtime specification
  10. +
  11. Economics
  12. +
+

Standards

+

Standards such as Fungible Token Standard can be found in Standards page.

+

Terminology

+

Abstraction definitions

+

Chain

+

A chain is a replication machinery, that provides for any type of state a way to replicate across the network and reach consensus on the state.

+

Primitives

+ +

Accounts

+

Account ID

+

NEAR Protocol has an account names system. Account ID is similar to a username. Account IDs have to follow the rules.

+

Account ID Rules

+
    +
  • minimum length is 2
  • +
  • maximum length is 64
  • +
  • Account ID consists of Account ID parts separated by .
  • +
  • Account ID part consists of lowercase alphanumeric symbols separated by either _ or -.
  • +
+

Account names are similar to a domain names. +Anyone can create a top level account (TLA) without separators, e.g. near. +Only near can create alice.near. And only alice.near can create app.alice.near and so on. +Note, near can NOT create app.alice.near directly.

+

Regex for a full account ID, without checking for length:

+
^(([a-z\d]+[\-_])*[a-z\d]+\.)*([a-z\d]+[\-_])*[a-z\d]+$
+
+

Top Level Accounts

+ + + +
NameValue
REGISTRAR_ACCOUNT_IDregistrar
MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH32
+

Top level account names (TLAs) are very valuable as they provide root of trust and discoverability for companies, applications and users. +To allow for fair access to them, the top level account names that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters going to be auctioned off.

+

Specifically, only REGISTRAR_ACCOUNT_ID account can create new top level accounts that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters. REGISTRAR_ACCOUNT_ID implements standard Account Naming (link TODO) interface to allow create new accounts.

+
def action_create_account(predecessor_id, account_id):
+    """Called on CreateAccount action in receipt."""
+    if len(account_id) < MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH and predecessor_id != REGISTRAR_ACCOUNT_ID:
+        raise CreateAccountOnlyByRegistrar(account_id, REGISTRAR_ACCOUNT_ID, predecessor_id)
+    # Otherwise, create account with given `account_id`.
+
+

Note: we are not going to deploy registrar auction at launch, instead allow to deploy it by Foundation after initial launch. The link to details of the auction will be added here in the next spec release post MainNet.

+

Examples

+

Valid accounts:

+
ok
+bowen
+ek-2
+ek.near
+com
+google.com
+bowen.google.com
+near
+illia.cheap-accounts.near
+max_99.near
+100
+near2019
+over.9000
+a.bro
+// Valid, but can't be created, because "a" is too short
+bro.a
+
+

Invalid accounts:

+
not ok           // Whitespace characters are not allowed
+a                // Too short
+100-             // Suffix separator
+bo__wen          // Two separators in a row
+_illia           // Prefix separator
+.near            // Prefix dot separator
+near.            // Suffix dot separator
+a..near          // Two dot separators in a row
+$$$              // Non alphanumeric characters are not allowed
+WAT              // Non lowercase characters are not allowed
+me@google.com    // @ is not allowed (it was allowed in the past)
+// TOO LONG:
+abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz
+
+

Account

+

Data for an single account is collocated in one shard. The account data consists of the following:

+ +

Balances

+

Total account balance consists of unlocked balance and locked balance.

+

Unlocked balance is tokens that the account can use for transaction fees, transfers staking and other operations.

+

Locked balance is the tokens that are currently in use for staking to be a validator or to become a validator. +Locked balance may become unlocked at the beginning of an epoch. See [Staking] for details.

+

Contracts

+

A contract (AKA smart contract) is a program in WebAssembly that belongs to a specific account. +When account is created, it doesn't have a contract. +A contract has to be explicitly deployed, either by the account owner, or during the account creation. +A contract can be executed by anyone who calls a method on your account. A contract has access to the storage on your account.

+

Storage

+

Every account has its own storage. It's a persistent key-value trie. Keys are ordered in lexicographical order. +The storage can only be modified by the contract on the account. +Current implementation on Runtime only allows your account's contract to read from the storage, but this might change in the future and other accounts's contracts will be able to read from your storage.

+

NOTE: Accounts are charged recurrent rent for the total storage. This includes storage of the account itself, contract code, contract storage and all access keys.

+

Access Keys

+

An access key grants an access to a account. Each access key on the account is identified by a unique public key. +This public key is used to validate signature of transactions. +Each access key contains a unique nonce to differentiate or order transactions signed with this access key.

+

An access keys have a permission associated with it. The permission can be one of two types:

+
    +
  • Full permission. It grants full access to the account.
  • +
  • Function call permission. It grants access to only issue function call transactions.
  • +
+

See [Access Keys] for more details.

+

Access Keys

+

Access key provides an access for a particular account. Each access key belongs to some account and +is identified by a unique (within the account) public key. Access keys are stored as account_id,public_key in a trie state. Account can have from zero to multiple access keys.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct AccessKey {
+    /// The nonce for this access key.
+    /// NOTE: In some cases the access key needs to be recreated. If the new access key reuses the
+    /// same public key, the nonce of the new access key should be equal to the nonce of the old
+    /// access key. It's required to avoid replaying old transactions again.
+    pub nonce: Nonce,
+    /// Defines permissions for this access key.
+    pub permission: AccessKeyPermission,
+}
+}
+
+

There are 2 types of AccessKeyPermission in Near currently: FullAccess and FunctionCall. FunctionCall grants a permission to issue any action on account like DeployContract, Transfer tokens to other account, call functions FunctionCall, Stake and even delete account DeleteAccountAction. FullAccess also allow to manage access keys. AccessKeyPermission::FunctionCall limits to do only contract calls.

+

+#![allow(unused_variables)]
+fn main() {
+pub enum AccessKeyPermission {
+    FunctionCall(FunctionCallPermission),
+    FullAccess,
+}
+}
+
+

AccessKeyPermission::FunctionCall

+

Grants limited permission to make FunctionCall to a specified receiver_id and methods of a particular contract with a limit of allowed balance to spend.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct FunctionCallPermission {
+    /// Allowance is a balance limit to use by this access key to pay for function call gas and
+    /// transaction fees. When this access key is used, both account balance and the allowance is
+    /// decreased by the same value.
+    /// `None` means unlimited allowance.
+    /// NOTE: To change or increase the allowance, the old access key needs to be deleted and a new
+    /// access key should be created.
+    pub allowance: Option<Balance>,
+
+    /// The access key only allows transactions with the given receiver's account id.
+    pub receiver_id: AccountId,
+
+    /// A list of method names that can be used. The access key only allows transactions with the
+    /// function call of one of the given method names.
+    /// Empty list means any method name can be used.
+    pub method_names: Vec<String>,
+}
+}
+
+

Account without access keys

+

If account has no access keys attached it means that it has no owner who can run transactions from its behalf. However, if such accounts has code it can be invoked by other accounts and contracts.

+

Transaction

+

Architecture

+

Near node consists roughly of a blockchain layer and a runtime layer. +These layers are designed to be independent from each other: the blockchain layer can in theory support runtime that processes +transactions differently, has a different virtual machine (e.g. RISC-V), has different fees; on the other hand the runtime +is oblivious to where the transactions are coming from. It is not aware whether the +blockchain it runs on is sharded, what consensus it uses, and whether it runs as part of a blockchain at all.

+

The blockchain layer and the runtime layer share the following components and invariants:

+

Transactions and Receipts

+

Transactions and receipts are a fundamental concept in Near Protocol. Transactions represent actions requested by the +blockchain user, e.g. send assets, create account, execute a method, etc. Receipts, on the other hand is an internal +structure; think of a receipt as a message which is used inside a message-passing system.

+

Transactions are created outside the Near Protocol node, by the user who sends them via RPC or network communication. +Receipts are created by the runtime from transactions or as the result of processing other receipts.

+

Blockchain layer cannot create or process transactions and receipts, it can only manipulate them by passing them +around and feeding them to a runtime.

+

Account-Based System

+

Similar to Ethereum, Near Protocol is an account-based system. Which means that each blockchain user is roughly +associated with one or several accounts (there are exceptions though, when users share an account and are separated +through the access keys).

+

The runtime is essentially a complex set of rules on what to do with accounts based on the information from the +transactions and the receipts. It is therefore deeply aware of the concept of account.

+

Blockchain layer however is mostly aware of the accounts through the trie (see below) and the validators (see below). +Outside these two it does not operate on the accounts directly.

+

Assume every account belongs to its own shard

+

Every account at NEAR belongs to some shard. +All the information related to this account also belongs to the same shard. The information includes:

+
    +
  • Balance
  • +
  • Locked balance (for staking)
  • +
  • Code of the contract
  • +
  • Key-value storage of the contract
  • +
  • All Access Keys
  • +
+

Runtime assumes, it's the only information that is available for the contract execution. +While other accounts may belong to the same shards, the Runtime never uses or provides them during contract execution. +We can just assume that every account belongs to its own shard. So there is no reason to intentionally try to collocate accounts.

+

Trie

+

Near Protocol is a stateful blockchain -- there is a state associated with each account and the user actions performed +through transactions mutate that state. The state then is stored as a trie, and both the blockchain layer and the +runtime layer are aware of this technical detail.

+

The blockchain layer manipulates the trie directly. It partitions the trie between the shards to distribute the load. +It synchronizes the trie between the nodes, and eventually it is responsible for maintaining the consistency of the trie +between the nodes through its consensus mechanism and other game-theoretic methods.

+

The runtime layer is also aware that the storage that it uses to perform the operations on is a trie. In general it does +not have to know this technical detail and in theory we could have abstracted out the trie as a generic key-value storage. +However, we allow some trie-specific operations that we expose to the smart contract developers so that they utilize +Near Protocol to its maximum efficiency.

+

Tokens and gas

+

Even though tokens is a fundamental concept of the blockchain, it is neatly encapsulated +inside the runtime layer together with the gas, fees, and rewards.

+

The only way the blockchain layer is aware of the tokens and the gas is through the computation of the exchange rate +and the inflation which is based strictly on the block production mechanics.

+

Validators

+

Both the blockchain layer and the runtime layer are aware of a special group of participants who are +responsible for maintaining the integrity of the Near Protocol. These participants are associated with the +accounts and are rewarded accordingly. The reward part is what the runtime layer is aware of, while everything +around the orchestration of the validators is inside the blockchain layer.

+

Blockchain Layer Concepts

+

Interestingly, the following concepts are for the blockchain layer only and the runtime layer is not aware of them:

+
    +
  • Sharding -- the runtime layer does not know that it is being used in a sharded blockchain, e.g. it does not know +that the trie it works on is only a part of the overall blockchain state;
  • +
  • Blocks or chunks -- the runtime does not know that the receipts that it processes constitute a chunk and that the output +receipts will be used in other chunks. From the runtime perspective it consumes and outputs batches of transactions and receipts;
  • +
  • Consensus -- the runtime does not know how consistency of the state is maintained;
  • +
  • Communication -- the runtime don't know anything about the current network topology. Receipt has only a receiver_id (a recipient account), but knows nothing about the destination shard, so it's a responsibility of a blockchain layer to route a particular receipt.
  • +
+

Runtime Layer Concepts

+
    +
  • Fees and rewards -- fees and rewards are neatly encapsulated in the runtime layer. The blockchain layer, however +has an indirect knowledge of them through the computation of the tokens-to-gas exchange rate and the inflation.
  • +
+

Chain Specification

+

TBD

+

Consensus

+

Definitions and notation

+

For the purpose of maintaining consensus, transactions are grouped into blocks. There is a single preconfigured block \(G\) called genesis block. Every block except \(G\) has a link pointing to the previous block \(prev(B)\), where \(B\) is the block, and \(G\) is reachable from every block by following those links (that is, there are no cycles).

+

The links between blocks give rise to a partial order: for blocks \(A\) and \(B\), \(A < B\) means that \(A \ne B\) and \(A\) is reachable from \(B\) by following links to previous blocks, and \(A \le B\) means that \(A < B\) or \(A = B\). The relations \(>\) and \(\ge\) are defined as the reflected versions of \(<\) and \(\le\), respectively. Finally, \(A \sim B\) means that either \(A < B\), \(A = B\) or \(A > B\), and \(A \nsim B\) means the opposite.

+

A chain \(chain(T)\) is a set of blocks reachable from block \(T\), which is called its tip. That is, \(chain(T) = \{B | B \le T\}\). For any blocks \(A\) and \(B\), there is a chain that both \(A\) and \(B\) belong to iff \(A \sim B\). In this case, \(A\) and \(B\) are said to be on the same chain.

+

Each block has an integer height \(h(B)\). It is guaranteed that block heights are monotonic (that is, for any block \(B \ne G\), \(h(B) > h(prev(B))\)), but they need not be consecutive. Also, \(h(G)\) may not be zero. Each node keeps track of a valid block with the largest height it knows about, which is called its head.

+

Blocks are grouped into epochs. In a chain, the set of blocks that belongs to some epoch forms a contiguous range: if blocks \(A\) and \(B\) such that \(A < B\) belong to the same epoch, then every block \(X\) such that \(A < X < B\) also belongs to that epoch. Epochs can be identified by sequential indices: \(G\) belongs to an epoch with index \(0\), and for every other block \(B\), the index of its epoch is either the same as that of \(prev(B)\), or one greater.

+

Each epoch is associated with a set of block producers that are validating blocks in that epoch, as well as an assignment of block heights to block producers that are responsible for producing a block at that height. A block producer responsible for producing a block at height \(h\) is called block proposer at \(h\). This information (the set and the assignment) for an epoch with index \(i \ge 2\) is determined by the last block of the epoch with index \(i-2\). For epochs with indices \(0\) and \(1\), this information is preconfigured. Therefore, if two chains share the last block of some epoch, they will have the same set and the same assignment for the next two epochs, but not necessarily for any epoch after that.

+

The consensus protocol defines a notion of finality. Informally, if a block \(B\) is final, any future final blocks may only be built on top of \(B\). Therefore, transactions in \(B\) and preceding blocks are never going to be reversed. Finality is not a function of a block itself, rather, a block may be final or not final in some chain it is a member of. Specifically, \(final(B, T)\), where \(B \le T\), means that \(B\) is final in \(chain(T)\). A block that is final in a chain is final in all of its extensions: specifically, if \(final(B, T)\) is true, then \(final(B, T')\) is also true for all \(T' \ge T\).

+

Data structures

+

The fields in the Block header relevant to the consensus process are:

+

+#![allow(unused_variables)]
+fn main() {
+struct BlockHeader {
+    ...
+    prev_hash: BlockHash,
+    height: BlockHeight,
+    epoch_id: EpochId,
+    last_final_block_hash: BlockHash,
+    approvals: Vec<Option<Signature>>
+    ...
+}
+}
+
+

Block producers in the particular epoch exchange many kinds of messages. The two kinds that are relevant to the consensus are Blocks and Approvals. The approval contains the following fields:

+

+#![allow(unused_variables)]
+fn main() {
+enum ApprovalInner {
+    Endorsement(BlockHash),
+    Skip(BlockHeight),
+}
+
+struct Approval {
+    inner: ApprovalInner,
+    target_height: BlockHeight,
+    signature: Signature,
+    account_id: AccountId
+}
+}
+
+

Where the parameter of the Endorsement is the hash of the approved block, the parameter of the Skip is the height of the approved block, target_height is the specific height at which the approval can be used (an approval with a particular target_height can be only included in the approvals of a block that has height = target_height), account_id is the account of the block producer who created the approval, and signature is their signature on the tuple (inner, target_height).

+

Approvals Requirements

+

Every block \(B\) except the genesis block must logically contain approvals of a form described in the next paragraph from block producers whose cumulative stake exceeds \(^2\!/_3\) of the total stake in the current epoch, and in specific conditions described in section epoch switches also the approvals of the same form from block producers whose cumulative stake exceeds \(^2\!/_3\) of the total stake in the next epoch.

+

The approvals logically included in the block must be an Endorsement with the hash of \(prev(B)\) if and only if \(h(B) = h(prev(B))+1\), otherwise it must be a Skip with the height of \(prev(B)\). See this section below for details on why the endorsements must contain the hash of the previous block, and skips must contain the height.

+

Note that since each approval that is logically stored in the block is the same for each block producer (except for the account_id of the sender and the signature), it is redundant to store the full approvals. Instead physically we only store the signatures of the approvals. The specific way they are stored is the following: we first fetch the ordered set of block producers from the current epoch. If the block is on the epoch boundary and also needs to include approvals from the next epoch (see epoch switches), we add new accounts from the new epoch

+
def get_accounts_for_block_ordered(h, prev_block):
+    cur_epoch = get_next_block_epoch(prev_block)
+    next_epoch = get_next_block_next_epoch(prev_block)
+
+    account_ids = get_epoch_block_producers_ordered(cur_epoch)
+    if next_block_needs_approvals_from_next_epoch(prev_block):
+        for account_id in get_epoch_block_producers_ordered(next_epoch):
+            if account_id not in account_ids:
+                account_ids.append(account_id)
+
+    return account_ids
+
+

The block then contains a vector of optional signatures of the same or smaller size than the resulting set of account_ids, with each element being None if the approval for such account is absent, or the signature on the approval message if it is present. It's easy to show that the actual approvals that were signed by the block producers can easily be reconstructed from the information available in the block, and thus the signatures can be verified. If the vector of signatures is shorter than the length of account_ids, the remaining signatures are assumed to be None.

+

Messages

+

On receipt of the approval message the participant just stores it in the collection of approval messages.

+
def on_approval(self, approval):
+    self.approvals.append(approval)
+
+

Whenever a participant receives a block, the operations relevant to the consensus include updating the head and initiating a timer to start sending the approvals on the block to the block producers at the consecutive target_heights. The timer delays depend on the height of the last final block, so that information is also persisted.

+
def on_block(self, block):
+    header = block.header
+
+    if header.height <= self.head_height:
+        return
+
+    last_final_block = store.get_block(header.last_final_block_hash)
+
+    self.head_height = header.height
+    self.head_hash = block.hash()
+    self.largest_final_height = last_final_block.height
+
+    self.timer_height = self.head_height + 1
+    self.timer_started = time.time()
+
+    self.endorsement_pending = True
+
+

The timer needs to be checked periodically, and contain the following logic:

+
def get_delay(n):
+    min(MAX_DELAY, MIN_DELAY + DELAY_STEP * (n-2))
+
+def process_timer(self):
+    now = time.time()
+
+    skip_delay = get_delay(self.timer_height - self.largest_final_height)
+
+    if self.endorsement_pending and now > self.timer_started + ENDORSEMENT_DELAY:
+
+        if self.head_height >= self.largest_target_height:
+            self.largest_target_height = self.head_height + 1
+            self.send_approval(head_height + 1)
+
+        self.endorsement_pending = False
+
+    if now > self.timer_started + skip_delay:
+        assert not self.endorsement_pending
+
+        self.largest_target_height = max(self.largest_target_height, self.timer_height + 1)
+        self.send_approval(self.timer_height + 1)
+
+        self.timer_started = now
+        self.timer_height += 1
+
+def send_approval(self, target_height):
+    if target_height == self.head_height + 1:
+        inner = Endorsement(self.head_hash)
+    else:
+        inner = Skip(self.head_height)
+
+    approval = Approval(inner, target_height)
+    send(approval, to_whom = get_block_proposer(self.head_hash, target_height))
+
+

Where get_block_proposer returns the next block proposer given the previous block and the height of the next block.

+

It is also necessary that ENDORSEMENT_DELAY < MIN_DELAY. Moreover, while not necessary for correctness, we require that ENDORSEMENT_DELAY * 2 <= MIN_DELAY.

+

Block Production

+

We first define a convenience function to fetch approvals that can be included in a block at particular height:

+
def get_approvals(self, target_height):
+    return [approval for approval
+                     in self.approvals
+                     if approval.target_height == target_height and
+                        (isinstance(approval.inner, Skip) and approval.prev_height == self.head_height or
+                         isinstance(approval.inner, Endorsement) and approval.prev_hash == self.head_hash)]
+
+

A block producer assigned for a particular height produces a block at that height whenever they have get_approvals return approvals from block producers whose stake collectively exceeds 2/3 of the total stake.

+

Finality condition

+

A block \(B\) is final in \(chain(T)\), where \(T \ge B\), when either \(B = G\) or there is a block \(X \le T\) such that \(B = prev(prev(X))\) and \(h(X) = h(prev(X))+1 = h(B)+2\). That is, either \(B\) is the genesis block, or \(chain(T)\) includes at least two blocks on top of \(B\), and these three blocks (\(B\) and the two following blocks) have consecutive heights.

+

Epoch switches

+

There's a parameter \(epoch\_length \ge 3\) that defines the minimum length of an epoch. Suppose that a particular epoch \(e\_cur\) started at height \(h\), and say the next epoch will be \(e\_next\). Say \(BP(e)\) is a set of block producers in epoch \(e\). Say \(last\_final(T)\) is the highest final block in \(chain(T)\). The following are the rules of what blocks contain approvals from what block producers, and belong to what epoch.

+
    +
  • Any block \(B\) with \(h(prev(B)) < h+epoch\_length-3\) is in the epoch \(e\_cur\) and must have approvals from more than \(^2\!/_3\) of \(BP(e\_cur)\) (stake-weighted).
  • +
  • Any block \(B\) with \(h(prev(B)) \ge h+epoch\_length-3\) for which \(h(last\_final(prev(B))) < h+epoch\_length-3\) is in the epoch \(e\_cur\) and must logically include approvals from both more than \(^2\!/_3\) of \(BP(e\_cur)\) and more than \(^2\!/_3\) of \(BP(e\_next)\) (both stake-weighted).
  • +
  • The first block \(B\) with \(h(last\_final(prev(B))) >= h+epoch\_length-3\) is in the epoch \(e\_next\) and must logically include approvals from more than \(^2\!/_3\) of \(BP(e\_next)\) (stake-weighted).
  • +
+

(see the definition of logically including approvals in approval requirements)

+

Safety

+

Note that with the implementation above a honest block producer can never produce two endorsements with the same prev_height (call this condition conflicting endorsements), neither can they produce a skip message s and an endorsement e such that s.prev_height < e.prev_height and s.target_height >= e.target_height (call this condition conflicting skip and endorsement).

+

Theorem Suppose that there are blocks \(B_1\), \(B_2\), \(T_1\) and \(T_2\) such that \(B_1 \nsim B_2\), \(final(B_1, T_1)\) and \(final(B_2, T_2)\). Then, more than \(^1\!/_3\) of the block producer in some epoch must have signed either conflicting endorsements or conflicting skip and endorsement.

+

Proof Without loss of generality, we can assume that these blocks are chosen such that their heights are smallest possible. Specifically, we can assume that \(h(T_1) = h(B_1)+2\) and \(h(T_2) = h(B_2)+2\). Also, letting \(B_c\) be the highest block that is an ancestor of both \(B_1\) and \(B_2\), we can assume that there is no block \(X\) such that \(final(X, T_1)\) and \(B_c < X < B_1\) or \(final(X, T_2)\) and \(B_c < X < B_2\).

+

Lemma There is such an epoch \(E\) that all blocks \(X\) such that \(B_c < X \le T_1\) or \(B_c < X \le T_2\) include approvals from more than \(^2\!/_3\) of the block producers in \(E\).

+

Proof There are two cases.

+

Case 1: Blocks \(B_c\), \(T_1\) and \(T_2\) are all in the same epoch. Because the set of blocks in a given epoch in a given chain is a contiguous range, all blocks between them (specifically, all blocks \(X\) such that \(B_c < X < T_1\) or \(B_c < X < T_2\)) are also in the same epoch, so all those blocks include approvals from more than \(^2\!/_3\) of the block producers in that epoch.

+

Case 2: Blocks \(B_c\), \(T_1\) and \(T_2\) are not all in the same epoch. Suppose that \(B_c\) and \(T_1\) are in different epochs. Let \(E\) be the epoch of \(T_1\) and \(E_p\) be the preceding epoch (\(T_1\) cannot be in the same epoch as the genesis block). Let \(R\) and \(S\) be the first and the last block of \(E_p\) in \(chain(T_1)\). Then, there must exist a block \(F\) in epoch \(E_p\) such that \(h(F)+2 = h(S) < h(T_1)\). Because \(h(F) < h(T_1)-2\), we have \(F < B_1\), and since there are no final blocks \(X\) such that \(B_c < X < B_1\), we conclude that \(F \le B_c\). Because there are no epochs between \(E\) and \(E_p\), we conclude that \(B_c\) is in epoch \(E_p\). Also, \(h(B_c) \ge h(F) \ge h(R)+epoch\_length-3\). Thus, any block after \(B_c\) and until the end of \(E\) must include approvals from more than \(^2\!/_3\) of the block producers in \(E\). Applying the same argument to \(chain(T_2)\), we can determine that \(T_2\) is either in \(E\) or \(E_p\), and in both cases all blocks \(X\) such that \(B_c < X \le T_2\) include approvals from more than \(^2\!/_3\) of block producers in \(E\) (the set of block producers in \(E\) is the same in \(chain(T_1)\) and \(chain(T_2)\) because the last block of the epoch preceding \(E_p\), if any, is before \(B_c\) and thus is shared by both chains). The case where \(B_c\) and \(T_1\) are in the same epoch, but \(B_c\) and \(T_2\) are in different epochs is handled similarly. Thus, the lemma is proven.

+

Now back to the theorem. Without loss of generality, assume that \(h(B_1) \le h(B_2)\). On the one hand, if \(chain(T_2)\) doesn't include a block at height \(h(B_1)\), then the first block at height greater than \(h(B_1)\) must include skips from more than \(^2\!/_3\) of the block producers in \(E\) which conflict with endorsements in \(prev(T_1)\), therefore, more than \(^1\!/_3\) of the block producers in \(E\) must have signed conflicting skip and endorsement. Similarly, if \(chain(T_2)\) doesn't include a block at height \(h(B_1)+1\), more than \(^1\!/_3\) of the block producers in \(E\) signed both an endorsement in \(T_1\) and a skip in the first block in \(chain(T_2)\) at height greater than \(h(T_1)\). On the other hand, if \(chain(T_2)\) includes both a block at height \(h(B_1)\) and a block at height \(h(B_1)+1\), the latter must include endorsements for the former, which conflict with endorsements for \(B_1\). Therefore, more than \(^1\!/_3\) of the block producers in \(E\) must have signed conflicting endorsements. Thus, the theorem is proven.

+

Liveness

+

See the proof of liveness in near.ai/doomslug. The consensus in this section differs in that it requires two consecutive blocks with endorsements. The proof in the linked paper trivially extends, by observing that once the delay is sufficiently long for a honest block producer to collect enough endorsements, the next block producer ought to have enough time to collect all the endorsements too.

+

Approval condition

+

The approval condition above

+
+

Any valid block must logically include approvals from block producers whose cumulative stake exceeds 2/3 of the total stake in the epoch. For a block B and its previous block B' each approval in B must be an Endorsement with the hash of B' if and only if B.height == B'.height + 1, otherwise it must be a Skip with the height of B'

+
+

Is more complex that desired, and it is tempting to unify the two conditions. Unfortunately, they cannot be unified.

+

It is critical that for endorsements each approval has the prev_hash equal to the hash of the previous block, because otherwise the safety proof above doesn't work, in the second case the endorsements in B1 and Bx can be the very same approvals.

+

It is critical that for the skip messages we do not require the hashes in the approvals to match the hash of the previous block, because otherwise a malicious actor can create two blocks at the same height, and distribute them such that half of the block producers have one as their head, and the other half has the other. The two halves of the block producers will be sending skip messages with different prev_hash but the same prev_height to the future block producers, and if there's a requirement that the prev_hash in the skip matches exactly the prev_hash of the block, no block producer will be able to create their blocks.

+

Transactions in the Blockchain Layer

+

A client creates a transaction, computes the transaction hash and signs this hash to get a signed transaction. +Now this signed transaction can be sent to a node.

+

When a node receives a new signed transaction, it validates the transaction (if the node tracks the shard) and gossips it to the peers. Eventually, the valid transaction is added to a transaction pool.

+

Every validating node has its own transaction pool. The transaction pool maintains transactions that were not yet discarded and not yet included into the chain.

+

Before producing a chunk transactions are ordered and validated again. This is done to produce chunks with only valid transactions.

+

Transaction ordering

+

The transaction pool groups transactions by a pair of (signer_id, signer_public_key). +The signer_id is the account ID of the user who signed the transaction, the signer_public_key is the public key of the account's access key that was used to sign the transactions. +Transactions within a group are not ordered.

+

The valid order of the transactions in a chunk is the following:

+
    +
  • transactions are ordered in batches.
  • +
  • within a batch all transactions keys should have different.
  • +
  • a set of transaction keys in each subsequent batch should be a sub-set of keys from the previous batch.
  • +
  • transactions with the same key should be ordered in strictly increasing order of their corresponding nonces.
  • +
+

Note:

+
    +
  • the order within a batch is undefined. Each node should use a unique secret seed for that ordering to users from finding the lowest keys to get advantage of every node.
  • +
+

Transaction pool provides a draining structure that allows to pull transactions in a proper order.

+

Transaction validation

+

The transaction validation happens twice, once before adding to the transaction pool, next before adding to a chunk.

+

Before adding to a transaction pool

+

This is done to quickly filter out transactions that have an invalid signature or are invalid on the latest state.

+

Before adding to a chunk

+

A chunk producer has to create a chunk with valid and ordered transactions up to some limits. +One limit is the maximum number of transactions, another is the total gas burnt for transactions.

+

To order and filter transactions, chunk producer gets a pool iterator and passes it to the runtime adapter. +The runtime adapter pulls transactions one by one. +The valid transactions are added to the result, invalid transactions are discarded. +Once the limit is reached, all the remaining transactions from the iterator are returned back to the pool.

+

Pool iterator

+

Pool Iterator is a trait that iterates over transaction groups until all transaction group are empty. +Pool Iterator returns a mutable reference to a transaction group that implements a draining iterator. +The draining iterator is like a normal iterator, but it removes the returned entity from the group. +It pulls transactions from the group in order from the smallest nonce to largest.

+

The pool iterator and draining iterators for transaction groups allow the runtime adapter to create proper order. +For every transaction group, the runtime adapter keeps pulling transactions until the valid transaction is found. +If the transaction group becomes empty, then it's skipped.

+

The runtime adapter may implement the following code to pull all valid transactions:

+

+#![allow(unused_variables)]
+fn main() {
+let mut valid_transactions = vec![];
+let mut pool_iter = pool.pool_iterator();
+while let Some(group_iter) = pool_iter.next() {
+    while let Some(tx) = group_iter.next() {
+        if is_valid(tx) {
+            valid_transactions.push(tx);
+            break;
+        }
+    }
+}
+valid_transactions
+}
+
+

Transaction ordering example using pool iterator.

+

Let's say:

+
    +
  • account IDs as uppercase letters ("A", "B", "C" ...)
  • +
  • public keys are lowercase letters ("a", "b", "c" ...)
  • +
  • nonces are numbers (1, 2, 3 ...)
  • +
+

A pool might have group of transactions in the hashmap:

+
transactions: {
+  ("A", "a") -> [1, 3, 2, 1, 2]
+  ("B", "b") -> [13, 14]
+  ("C", "d") -> [7]
+  ("A", "c") -> [5, 2, 3]
+}
+
+

There are 3 accounts ("A", "B", "C"). Account "A" used 2 public keys ("a", "c"). Other accounts used 1 public key each. +Transactions within each group may have repeated nonces while in the pool. +That's because the pool doesn't filter transactions with the same nonce, only transactions with the same hash.

+

For this example, let's say that transactions are valid if the nonce is even and strictly greater than the previous nonce for the same key.

+
Initialization
+

When .pool_iterator() is called, a new PoolIteratorWrapper is created and it holds the mutuable reference to the pool, +so the pool can't be modified outside of this iterator. The wrapper looks like this:

+
pool: {
+    transactions: {
+      ("A", "a") -> [1, 3, 2, 1, 2]
+      ("B", "b") -> [13, 14]
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [],
+
+

sorted_groups is a queue of sorted transaction groups that were already sorted and pulled from the pool.

+
Transaction #1
+

The first group to be selected is for key ("A", "a"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[1, 1, 2, 2, 3]. Runtime adapter pulls 1, then 1, and then 2. Both transactions with nonce 1 are invalid because of odd nonce.

+

Transaction with nonce 2 is added to the list of valid transactions.

+

The transaction group is dropped and the pool iterator wrapper becomes the following:

+
pool: {
+    transactions: {
+      ("B", "b") -> [13, 14]
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+
Transaction #2
+

The next group is for key ("B", "b"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[13, 14]. Runtime adapter pulls 13, then 14. The transaction with nonce 13 is invalid because of odd nonce.

+

Transaction with nonce 14 is added to the list of valid transactions.

+

The transaction group is dropped, but it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: {
+      ("C", "d") -> [7]
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+
Transaction #3
+

The next group is for key ("C", "d"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[7]. Runtime adapter pulls 7. The transaction with nonce 7 is invalid because of odd nonce.

+

No valid transactions is added for this group.

+

The transaction group is dropped, it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: {
+      ("A", "c") -> [5, 2, 3]
+    }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+],
+
+

The next group is for key ("A", "c"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: +[2, 3, 5]. Runtime adapter pulls 2.

+

It's a valid transaction, so it's added to the list of valid transactions.

+

The transaction group is dropped, so the pool iterator drops it completely:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [
+  ("A", "a") -> [2, 3]
+  ("A", "c") -> [3, 5]
+],
+
+
Transaction #4
+

The next group is pulled not from the pool, but from the sorted_groups. The key is ("A", "a"). +It's already sorted, so the iterator returns the mutable reference. Nonces are: +[2, 3]. Runtime adapter pulls 2, then pulls 3.

+

The transaction with nonce 2 is invalid, because we've already pulled a transaction #1 from this group and it had nonce 2. +The new nonce has to be larger than the previous nonce, so this transaction is invalid.

+

The transaction with nonce 3 is invalid because of odd nonce.

+

No valid transactions is added for this group.

+

The transaction group is dropped, it's empty, so the pool iterator drops it completely:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [
+  ("A", "c") -> [3, 5]
+],
+
+

The next group is for key ("A", "c"), with nonces [3, 5]. +Runtime adapter pulls 3, then pulls 5. Both transactions are invalid, because the nonce is odd.

+

No transactions are added.

+

The transaction group is dropped, the pool iterator wrapper becomes empty:

+
pool: {
+    transactions: { }
+}
+sorted_groups: [ ],
+
+

When runtime adapter tries to pull the next group, the pool iterator returns None, so the runtime adapter drops the iterator.

+
Dropping iterator
+

If the iterator was not fully drained, but some transactions still remained. They would be reinserted back into the pool.

+
Chunk Transactions
+

Transactions that were pulled from the pool:

+
// First batch
+("A", "a", 1),
+("A", "a", 1),
+("A", "a", 2),
+("B", "b", 13),
+("B", "b", 14),
+("C", "d", 7),
+("A", "c", 2),
+
+// Next batch
+("A", "a", 2),
+("A", "a", 3),
+("A", "c", 3),
+("A", "c", 5),
+
+

The valid transactions are:

+
("A", "a", 2),
+("B", "b", 14),
+("A", "c", 2),
+
+

In total there were only 3 valid transactions, that resulted in one batch.

+

Order validation

+

Other validators need to check the order of transactions in the produced chunk. +It can be done in linear time, using a greedy algorithm.

+

To select a first batch we need to iterate over transactions one by one until we see a transaction +with the key that we've already included in the first batch. +This transaction belongs to the next batch.

+

Now all transactions in the N+1 batch should have a corresponding transaction with the same key in the N batch. +If there are no transaction with the same key in the N batch, then the order is invalid.

+

We also enforce the order of the sequence of transactions for the same key, the nonces of them should be in strictly increasing order.

+

Here is the algorithm that validates the order:

+

+#![allow(unused_variables)]
+fn main() {
+fn validate_order(txs: &Vec<Transaction>) -> bool {
+    let mut nonces: HashMap<Key, Nonce> = HashMap::new();
+    let mut batches: HashMap<Key, usize> = HashMap::new();
+    let mut current_batch = 1;
+
+    for tx in txs {
+        let key = tx.key();
+
+        // Verifying nonce
+        let nonce = tx.nonce();
+        if let Some(last_nonce) = nonces.get(key) {
+            if nonce <= last_nonce {
+                // Nonces should increase.
+                return false;
+            }
+        }
+        nonces.insert(key, nonce);
+
+        // Verifying batch
+        if let Some(last_batch) = batches.get(key) {
+            if last_batch == current_batch {
+                current_batch += 1;
+            } else if last_batch < current_batch - 1 {
+                // Was skipped this key in the previous batch
+                return false;
+            }
+        } else {
+            if current_batch > 1 {
+                // Not in first batch
+                return false;
+            }
+        }
+        batches.insert(key, batch);
+    }
+    true
+}
+}
+
+

Runtime Specification

+

Function Call

+

In this section we provide an explanation how the FunctionCall action execution works, what are the inputs and what are the outputs. Suppose runtime received the following ActionReceipt:

+

+#![allow(unused_variables)]
+fn main() {
+ActionReceipt {
+     id: "A1",
+     signer_id: "alice",
+     signer_public_key: "6934...e248",
+     receiver_id: "dex",
+     predecessor_id: "alice",
+     input_data_ids: [],
+     output_data_receivers: [],
+     actions: [FunctionCall { gas: 100000, deposit: 100000u128, method_name: "exchange", args: "{arg1, arg2, ...}", ... }],
+ }
+}
+
+

input_data_ids to PromiseResult's

+

ActionReceipt.input_data_ids must be satisfied before execution (see Receipt Matching). Each of ActionReceipt.input_data_ids will be converted to the PromiseResult::Successful(Vec<u8>) if data_id.data is Some(Vec<u8>) otherwise if data_id.data is None promise will be PromiseResult::Failed.

+

Input

+

The FunctionCall executes in the receiver_id account environment.

+
    +
  • a vector of Promise Results which can be accessed by a promise_result import PromisesAPI promise_result)
  • +
  • the original Transaction signer_id, signer_public_key data from the ActionReceipt (e.g. method_name, args, predecessor_id, deposit, prepaid_gas (which is gas in FunctionCall))
  • +
  • a general blockchain data (e.g. block_index, block_timestamp)
  • +
  • read data from the account storage
  • +
+

A full list of the data available for the contract can be found in Context API and Trie

+

Execution

+

First of all, runtime does prepare the Wasm binary to be executed:

+
    +
  • loads the contract code from the receiver_id account storage
  • +
  • deserializes and validates the code Wasm binary (see prepare::prepare_contract)
  • +
  • injects the gas counting function gas which will charge gas on the beginning of the each code block
  • +
  • instantiates Bindings Spec with binary and calls the FunctionCall.method_name exported function
  • +
+

During execution, VM does the following:

+
    +
  • counts burnt gas on execution
  • +
  • counts used gas (which is burnt gas + gas attached to the new created receipts)
  • +
  • counts how accounts storage usage increased by the call
  • +
  • collects logs produced by the contract
  • +
  • sets the return data
  • +
  • creates new receipts through PromisesAPI
  • +
+

Output

+

The output of the FunctionCall:

+
    +
  • storage updates - changes to the account trie storage which will be applied on a successful call
  • +
  • burnt_gas - irreversible amount of gas witch was spent on computations
  • +
  • used_gas - includes burnt_gas and gas attached to the new ActionReceipts created during the method execution. In case of failure, created ActionReceipts not going to be sent thus account will pay only for burnt_gas
  • +
  • balance - unspent account balance (account balance could be spent on deposits of newly created FunctionCalls or TransferActions to other contracts)
  • +
  • storage_usage - storage_usage after ActionReceipt application
  • +
  • logs - during contract execution, utf8/16 string log records could be created. Logs are not persistent currently.
  • +
  • new_receipts - new ActionReceipts created during the execution. These receipts are going to be sent to the respective receiver_ids (see Receipt Matching explanation)
  • +
  • result could be either ReturnData::Value(Vec<u8>) or ReturnData::ReceiptIndex(u64)`
  • +
+

Value Result

+

If applied ActionReceipt contains output_data_receivers, runtime will create DataReceipt for each of data_id and receiver_id and data equals returned value. Eventually, these DataReceipt will be delivered to the corresponding receivers.

+

ReceiptIndex Result

+

Successful result could not return any Value, but generates a bunch of new ActionReceipts instead. One example could be a callback. In this case, we assume the the new Receipt will send its Value Result to the output_data_receivers of the current ActionReceipt.

+

Transactions

+

A transaction in Near is a list of actions and additional information:

+

+#![allow(unused_variables)]
+fn main() {
+pub struct Transaction {
+    /// An account on which behalf transaction is signed
+    pub signer_id: AccountId,
+    /// An access key which was used to sign a transaction
+    pub public_key: PublicKey,
+    /// Nonce is used to determine order of transaction in the pool.
+    /// It increments for a combination of `signer_id` and `public_key`
+    pub nonce: Nonce,
+    /// Receiver account for this transaction. If
+    pub receiver_id: AccountId,
+    /// The hash of the block in the blockchain on top of which the given transaction is valid
+    pub block_hash: CryptoHash,
+    /// A list of actions to be applied
+    pub actions: Vec<Action>,
+}
+}
+
+

Signed Transaction

+

SignedTransaction is what the node receives from a wallet through JSON-RPC endpoint and then routed to the shard where receiver_id account lives. Signature proves an ownership of the corresponding public_key (which is an AccessKey for a particular account) as well as authenticity of the transaction itself.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct SignedTransaction {
+    pub transaction: Transaction,
+    /// A signature of a hash of the Borsh-serialized Transaction
+    pub signature: Signature,
+}
+
+

Take a look some scenarios how transaction can be applied.

+

Actions

+

There are a several action types in Near:

+

+#![allow(unused_variables)]
+fn main() {
+pub enum Action {
+    CreateAccount(CreateAccountAction),
+    DeployContract(DeployContractAction),
+    FunctionCall(FunctionCallAction),
+    Transfer(TransferAction),
+    Stake(StakeAction),
+    AddKey(AddKeyAction),
+    DeleteKey(DeleteKeyAction),
+    DeleteAccount(DeleteAccountAction),
+}
+}
+
+

Each transaction consists a list of actions to be performed on the receiver_id side. Sometimes the singer_id equals to receiver_id. There is a set of action types when signer_id and receiver_id are required to be equal. Actions requires arguments and use data from the Transaction itself.

+

// TODO: how to introduce the concept of sender_id

+

CreateAccountAction

+

Requirements:

+
    +
  • unique tx.receiver_id
  • +
  • public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

CreateAccountAction doesn't take any additional arguments, it uses receiver_id from Transaction. receiver_id is an ID for an account to be created. Account ID should be valid and unique throughout the system.

+

Outcome:

+
    +
  • creates an account with id = receiver_id
  • +
  • sets Account storage_usage to account_cost (genesis config)
  • +
  • sets Account storage_paid_at to the current block height
  • +
+

NOTE: for the all subsequent actions in the transaction the signer_id becomes receiver_id until DeleteAccountAction. It allows to execute actions on behalf of the just created account.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct CreateAccountAction {}
+}
+
+

DeployContractAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Outcome:

+
    +
  • sets a code for account
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeployContractAction {
+    pub code: Vec<u8>, // a valid WebAssembly code
+}
+}
+
+

FunctionCallAction

+

Requirements:

+
    +
  • tx.public_key to be AccessKeyPermission::FullAccess or AccessKeyPermission::FunctionCall
  • +
+

Calls a method of a particular contract. See details.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct FunctionCallAction {
+    /// Name of exported Wasm function
+    pub method_name: String,
+    /// Serialized arguments
+    pub args: Vec<u8>,
+    /// Prepaid gas (gas_limit) for a function call
+    pub gas: Gas,
+    /// Amount of tokens to transfer to a receiver_id
+    pub deposit: Balance,
+}
+}
+
+

TransferAction

+

Requirements:

+
    +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Outcome:

+
    +
  • transfers amount specified in deposit from tx.signer to a tx.receiver_id account
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct TransferAction {
+    /// Amount of tokens to transfer to a receiver_id
+    pub deposit: Balance,
+}
+}
+
+

StakeAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct StakeAction {
+    // Amount of tokens to stake
+    pub stake: Balance,
+    // This public key is a public key of the validator node
+    pub public_key: PublicKey,
+}
+}
+
+

Outcome:

+
// TODO: cover staking
+
+

AddKeyAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

Associates an AccessKey with a public_key provided.

+

+#![allow(unused_variables)]
+fn main() {
+pub struct AddKeyAction {
+    pub public_key: PublicKey,
+    pub access_key: AccessKey,
+}
+}
+
+

DeleteKeyAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeleteKeyAction {
+    pub public_key: PublicKey,
+}
+}
+
+

DeleteAccountAction

+

Requirements:

+
    +
  • tx.signer_id to be equal to receiver_id
  • +
  • tx.public_key to be AccessKeyPermission::FullAccess for the singer_id
  • +
  • tx.account shouldn't have any locked balance
  • +
+

+#![allow(unused_variables)]
+fn main() {
+pub struct DeleteAccountAction {
+    /// The remaining account balance will be transferred to the AccountId below
+    pub beneficiary_id: AccountId,
+}
+}
+
+

Receipt

+

All cross-contract (we assume that each account lives in it's own shard) communication in Near happens trough Receipts. +Receipts are stateful in a sense that they serve not only as messages between accounts but also can be stored in the account storage to await DataReceipts.

+

Each receipt has a predecessor_id (who sent it) and receiver_id the current account.

+

Receipts are one of 2 types: action receipts or data receipts.

+

Data Receipts are receipts that contains some data for some ActionReceipt with the same receiver_id. +Data Receipts has 2 fields: the unique data identifier data_id and data the received result. +data is an Option field and it indicates whether the result was a success or a failure. If it's Some, then it means +the remote execution was successful and it contains the vector of bytes of the result.

+

Each ActionReceipt also contains fields related to data:

+
    +
  • input_data_ids - a vector of input data with the data_ids required for the execution of this receipt.
  • +
  • output_data_receivers - a vector of output data receivers. It indicates where to send outgoing data. +Each DataReceiver consists of data_id and receiver_id for routing.
  • +
+

Before any action receipt is executed, all input data dependencies need to be satisfied. +Which means all corresponding data receipts has to be received. +If any of the data dependencies is missing, the action receipt is postponed until all missing data dependency arrives.

+

Because Chain and Runtime guarantees that no receipts are missing, we can rely that every action receipt will be executed eventually (Receipt Matching explanation).

+

Each Receipt has the following fields:

+

predecessor_id

+
    +
  • type: AccountId
  • +
+

The account_id which issued a receipt.

+

receiver_id

+
    +
  • type: AccountId
  • +
+

The destination account_id.

+

receipt_id

+
    +
  • type: AccountId
  • +
+

An unique id for the receipt.

+

receipt

+ +

There is a 2 types of Receipts in Near: ActionReceipt and DataReceipt. ActionReceipt is a request to apply Actions, while DataReceipt is a result of application of these actions.

+

ActionReceipt

+

ActionReceipt represents a request to apply actions on the receiver_id side. It could be a derived as a result of a Transaction execution or a another ActionReceipt processing. ActionReceipt consists the following fields:

+

signer_id

+
    +
  • type: AccountId
  • +
+

An account_id which signed the original transaction.

+

signer_public_key

+
    +
  • type: PublicKey
  • +
+

An AccessKey which was used to sign the original transaction.

+

gas_price

+
    +
  • type: u128
  • +
+

Gas price is a gas price which was set in a block where original transaction has been applied.

+

output_data_receivers

+
    +
  • type: [DataReceiver{ data_id: CryptoHash, receiver_id: AccountId }]
  • +
+

If smart contract finishes its execution with some value (not Promise), runtime creates a [DataReceipt]s for each of the output_data_receivers.

+

input_data_ids

+
    +
  • type: [CryptoHash]_
  • +
+

input_data_ids are the receipt data dependencies. input_data_ids correspond to DataReceipt.data_id.

+

actions

+ +

DataReceipt

+

DataReceipt represents a final result of some contract execution.

+

data_id

+
    +
  • type: CryptoHash
  • +
+

An a unique DataReceipt identifier.

+

data

+
    +
  • type: Option([u8])
  • +
+

An an associated data in bytes. None indicates an error during execution.

+

Creating Receipt

+

Receipts can be generated during the execution of the SignedTransaction (see example) or during application of some ActionReceipt which contains FunctionCall action. The result of the FunctionCall could either

+

Receipt Matching

+

Runtime doesn't expect that Receipts are coming in a particular order. Each Receipt is processed individually. The goal of the Receipt Matching process is to match all ActionReceipts to the corresponding DataReceipts.

+

Processing ActionReceipt

+

For each incoming ActionReceipt runtime checks whether we have all the DataReceipts (defined as ActionsReceipt.input_data_ids) required for execution. If all the required DataReceipts are already in the storage, runtime can apply this ActionReceipt immediately. Otherwise we save this receipt as a Postponed ActionReceipt. Also we save Pending DataReceipts Count and a link from pending DataReceipt to the Postponed ActionReceipt. Now runtime will wait all the missing DataReceipts to apply the Postponed ActionReceipt.

+

Postponed ActionReceipt

+

A Receipt which runtime stores until all the designated DataReceipts arrive.

+
    +
  • key = account_id,receipt_id
  • +
  • value = [u8]
  • +
+

Where account_id is Receipt.receiver_id, receipt_id is Receipt.receiver_id and value is a serialized Receipt (which type must be ActionReceipt).

+

Pending DataReceipt Count

+

A counter which counts pending DataReceipts for a Postponed Receipt initially set to the length of missing input_data_ids of the incoming ActionReceipt. It's decrementing with every new received DataReceipt:

+
    +
  • key = account_id,receipt_id
  • +
  • value = u32
  • +
+

Where account_id is AccountId, receipt_id is CryptoHash and value is an integer.

+

Pending DataReceipt for Postponed ActionReceipt

+

We index each pending DataReceipt so when a new DataReceipt arrives we can find to which Postponed Receipt it belongs.

+
    +
  • key = account_id,data_id
  • +
  • value = receipt_id
  • +
+

Processing DataReceipt

+

Received DataReceipt

+

First of all, runtime saves the incoming DataReceipt to the storage as:

+
    +
  • key = account_id,data_id
  • +
  • value = [u8]
  • +
+

Where account_id is Receipt.receiver_id, data_id is DataReceipt.data_id and value is a DataReceipt.data (which is typically a serialized result of the call to a particular contract).

+

Next, runtime checks if there is any Postponed ActionReceipt awaits for this DataReceipt by querying Pending DataReceipt to the Postponed Receipt. If there is no postponed receipt_id yet, we do nothing else. If there is a postponed receipt_id, we do the following:

+ +

If Pending DataReceipt Count is now 0 that means all the Receipt.input_data_ids are in storage and runtime can safely apply the Postponed Receipt and remove it from the store.

+

Case 1: Call to multiple contracts and await responses

+

Suppose runtime got the following ActionReceipt:

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt_id: "693406"
+    receipt: ActionReceipt {
+        input_data_ids: []
+    }
+}
+
+

If execution return Result::Value

+

Suppose runtime got the following ActionReceipt (we use a python-like pseudo code):

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt_id: "5e73d4"
+    receipt: ActionReceipt {
+        input_data_ids: ["e5fa44", "7448d8"]
+    }
+}
+
+

We can't apply this receipt right away: there are missing DataReceipt'a with IDs: ["e5fa44", "7448d8"]. Runtime does the following:

+
postponed_receipts["alice,5e73d4"] = borsh_serialize(
+    Receipt{
+        receiver_id: "alice",
+        receipt_id: "5e73d4"
+        receipt: ActionReceipt {
+            input_data_ids: ["e5fa44", "7448d8"]
+        }
+    }
+)
+pending_data_receipt_store["alice,e5fa44"] = "5e73d4"
+pending_data_receipt_store["alice,7448d8"] = "5e73d4"
+pending_data_receipt_count = 2
+
+

Note: the subsequent Receipts could arrived in the current block or next, that's why we save Postponed ActionReceipt in the storage

+

Then the first pending Pending DataReceipt arrives:

+
# Non-relevant fields are omitted.
+Receipt {
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "e5fa44",
+        data: "some data for alice",
+    }
+}
+
+
data_receipts["alice,e5fa44"] = borsh_serialize(Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "e5fa44",
+        data: "some data for alice",
+    }
+};
+pending_data_receipt_count["alice,5e73d4"] = 1`
+del pending_data_receipt_store["alice,e5fa44"]
+
+

And finally the last Pending DataReceipt arrives:

+
# Non-relevant fields are omitted.
+Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "7448d8",
+        data: "some more data for alice",
+    }
+}
+
+
data_receipts["alice,7448d8"] = borsh_serialize(Receipt{
+    receiver_id: "alice",
+    receipt: DataReceipt {
+        data_id: "7448d8",
+        data: "some more data for alice",
+    }
+};
+postponed_receipt_id = pending_data_receipt_store["alice,5e73d4"]
+postponed_receipt = postponed_receipts[postponed_receipt_id]
+del postponed_receipts[postponed_receipt_id]
+del pending_data_receipt_count["alice,5e73d4"]
+del pending_data_receipt_store["alice,7448d8"]
+apply_receipt(postponed_receipt)
+
+

Scenarios

+

In the following sections we go over the common scenarios that runtime takes care of.

+

Financial Transaction

+

Suppose Alice wants to transfer 100 tokens to Bob. +In this case we are talking about native Near Protocol tokens, oppose to user-defined tokens implemented through a smart contract. +There are several way this can be done:

+
    +
  • Direct transfer through a transaction containing transfer action;
  • +
  • Alice calling a smart contract that in turn creates a financial transaction towards Bob.
  • +
+

In this section we are talking about the former simpler scenario.

+

Pre-requisites

+

For this to work both Alice and Bob need to have accounts and an access to them through +the full access keys.

+

Suppose Alice has account alice_near and Bob has account bob_near. Also, some time in the past, +each of them has created a public-secret key-pair, saved the secret key somewhere (e.g. in a wallet application) +and created a full access key with the public key for the account.

+

We also need to assume that both Alice and Bob has some number of tokens on their accounts. Alice needs >100 tokens on the account +so that she could transfer 100 tokens to Bob, but also Alice and Bob need to have some tokens to pay for the rent of their account -- +which is essentially the cost of the storage occupied by the account in the Near Protocol network.

+

Creating a transaction

+

To send the transaction neither Alice nor Bob need to run a node. +However, Alice needs a way to create and sign a transaction structure. +Suppose Alice uses near-shell or any other third-party tool for that. +The tool then creates the following structure:

+
Transaction {
+    signer_id: "alice_near",
+    public_key: "ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy",
+    nonce: 57,
+    receiver_id: "bob_near",
+    block_hash: "CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf",
+    actions: vec![
+        Action::Transfer(TransferAction {deposit: 100} )
+    ],
+}
+
+

Which contains one token transfer action, the id of the account that signs this transaction (alice_near) +the account towards which this transaction is addressed (bob_near). Alice also uses the public key +associated with one of the full access keys of alice_near account.

+

Additionally, Alice uses the nonce which is unique value that allows Near Protocol to differentiate the transactions (in case there are several transfers coming in rapid +succession) which should be strictly increasing with each transaction. Unlike in Ethereum, nonces are associated with access keys, oppose to +the entire accounts, so several users using the same account through different access keys need not to worry about accidentally +reusing each other's nonces.

+

The block hash is used to calculate the transaction "freshness". It is used to make sure the transaction does +not get lost (let's say somewhere in the network) and then arrive hours, days, or years later when it is not longer relevant +or would be undesirable to execute. The transaction does not need to arrive at the specific block, instead it is required to +arrive within certain number of blocks from the bock identified by the block_hash (as of 2019-10-27 the constant is 10 blocks). +Any transaction arriving outside this threshold is considered to be invalid.

+

near-shell or other tool that Alice uses then signs this transaction, by: computing the hash of the transaction and signing it +with the secret key, resulting in a SignedTransaction object.

+

Sending the transaction

+

To send the transaction, near-shell connects through the RPC to any Near Protocol node and submits it. +If users wants to wait until the transaction is processed they can use send_tx_commit JSONRPC method which waits for the +transaction to appear in a block. Otherwise the user can use send_tx_async.

+

Transaction to receipt

+

We skip the details on how the transaction arrives to be processed by the runtime, since it is a part of the blockchain layer +discussion. +We consider the moment where SignedTransaction is getting passed to Runtime::apply of the +runtime crate. +Runtime::apply immediately passes transaction to Runtime::process_transaction +which in turn does the following:

+
    +
  • Verifies that transaction is valid;
  • +
  • Applies initial reversible and irreversible charges to alice_near account;
  • +
  • Creates a receipt with the same set of actions directed towards bob_near.
  • +
+

The first two items are performed inside Runtime::verify_and_charge_transaction method. +Specifically it does the following checks:

+
    +
  • Verifies that alice_near and bob_near are syntactically valid account ids;
  • +
  • Verifies that the signature of the transaction is correct based on the transaction hash and the attached public key;
  • +
  • Retrieves the latest state of the alice_near account, and simultaneously checks that it exists;
  • +
  • Retrieves the state of the access key of that alice_near used to sign the transaction;
  • +
  • Checks that transaction nonce is greater than the nonce of the latest transaction executed with that access key;
  • +
  • Checks whether the account that signed the transaction is the same as the account that receives it. In our case the sender (alice_near) and the receiver (bob_near) are not the same. We apply different fees if receiver and sender is the same account;
  • +
  • Applies the storage rent to the alice_near account;
  • +
  • Computes how much gas we need to spend to convert this transaction to a receipt;
  • +
  • Computes how much balance we need to subtract from alice_near, in this case it is 100 tokens;
  • +
  • Deducts the tokens and the gas from alice_near balance, using the current gas price;
  • +
  • Checks whether after all these operations account has enough balance to passively pay for the rent for the next several blocks +(an economical constant defined by Near Protocol). Otherwise account will be open for an immediate deletion, which we do not want;
  • +
  • Updates the alice_near account with the new balance and the used access key with the new nonce;
  • +
  • Computes how much reward should be paid to the validators from the burnt gas.
  • +
+

If any of the above operations fail all of the changes will be reverted.

+

Processing receipt

+

The receipt created in the previous section will eventually arrive to a runtime on the shard that hosts bob_near account. +Again, it will be processed by Runtime::apply which will immediately call Runtime::process_receipt. +It will check that this receipt does not have data dependencies (which is only the case of function calls) and will then call Runtime::apply_action_receipt on TransferAction. +Runtime::apply_action_receipt will perform the following checks:

+
    +
  • Retrieves the state of bob_near account, if it still exists (it is possible that Bob has deleted his account concurrently with the transfer transaction);
  • +
  • Applies the rent to Bob's account;
  • +
  • Computes the cost of processing a receipt and a transfer action;
  • +
  • Checks if bob_near still exists and if it is deposits the transferred tokens;
  • +
  • Computes how much reward should be paid to the validators from the burnt gas.
  • +
+

Cross-Contract Call

+

This guide assumes that you have read the Financial Transaction section.

+

Suppose Alice is a calling a function reserve_trip(city: String, date: u64) on a smart contract deployed to a travel_agency +account which in turn calls reserve(date: u64) on a smart contract deployed to a hotel_near account and attaches +a callback to method hotel_reservation_complete(date: u64) on travel_agency.

+ +

Pre-requisites

+

It possible for Alice to call the travel_agency in several different ways.

+

In the simplest scenario Alice has an account alice_near and she has a full access key. +She then composes the following transaction that calls the travel_agency:

+
Transaction {
+    signer_id: "alice_near",
+    public_key: "ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy",
+    nonce: 57,
+    receiver_id: "travel_agency",
+    block_hash: "CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf",
+    actions: vec![
+        Action::FunctionCall(FunctionCallAction {
+            method_name: "reserve_trip",
+            args: "{\"city\": \"Venice\", \"date\": 20191201}",
+            gas: 1000000,
+            tokens: 100,
+        })
+    ],
+}
+
+

Here the public key corresponds to the full access key of alice_near account. All other fields in Transaction were +discussed in the Financial Transaction section. The FunctionCallAction action describes how +the contract should be called. The receiver_id field in Transaction already establishes what contract should be executed, +FunctionCallAction merely describes how it should be executed. Interestingly, the arguments is just a blob of bytes, +it is up to the contract developer what serialization format they choose for their arguments. In this example, the contract +developer has chosen to use JSON and so the tool that Alice uses to compose this transaction is expected to use JSON too +to pass the arguments. gas declares how much gas alice_near has prepaid for dynamically calculated fees of the smart +contract executions and other actions that this transaction may spawn. The tokens is the amount of alice_near attaches +to be deposited to whatever smart contract that it is calling to. Notice, gas and tokens are in different units of +measurement.

+

Now, consider a slightly more complex scenario. In this scenario Alice uses a restricted access key to call the function. +That is the permission of the access key is not AccessKeyPermission::FullAccess but is instead: AccessKeyPermission::FunctionCall(FunctionCallPermission) +where

+
FunctionCallPermission {
+    allowance: Some(3000),
+    receiver_id: "travel_agency",
+    method_names: [ "reserve_trip", "cancel_trip" ]
+}
+
+

This scenario might arise when someone Alice's parent has given them a restricted access to alice_near account by +creating an access key that can be used strictly for trip management. +This access key allows up to 3000 tokens to be spent (which includes token transfers and payments for gas), it can +be only used to call travel_agency and it can be only used with the reserve_trip and cancel_trip methods. +The way runtime treats this case is almost exactly the same as the previous one, with the only difference on how it verifies +the signature of on the signed transaction, and that it also checks for allowance to not be exceeded.

+

Finally, in the last scenario, Alice does not have an account (or the existence of alice_near is irrelevant). However, +alice has full or restricted access key directly on travel_agency account. In that case signer_id == receiver_id in the +Transaction object and runtime will convert transaction to the first receipt and apply that receipt in the same block.

+

This section will focus on the first scenario, since the other two are the same with some minor differences.

+

Transaction to receipt

+

The process of converting transaction to receipt is very similar to the Financial Transaction +with several key points to note:

+
    +
  • Since Alice attaches 100 tokens to the function call, we subtract them from alice_near upon converting transaction to receipt, +similar to the regular financial transaction;
  • +
  • Since we are attaching 1000000 prepaid gas, we will not only subtract the gas costs of processing the receipt from alice_near, but +will also purchase 1000000 gas using the current gas price.
  • +
+

Processing the reserve_trip receipt

+

The receipt created on the shard that hosts alice_near will eventually arrive to the shard hosting travel_agency account. +It will be processed in Runtime::apply which will check that receipt does not have data dependencies (which is the case because +this function call is not a callback) and will call Runtime::apply_action_receipt. +At this point receipt processing is similar to receipt processing from the Financial Transaction +section, with one difference that we will also call action_function_call which will do the following:

+
    +
  • Retrieve the Wasm code of the smart contract (either from the database or from the cache);
  • +
  • Initialize runtime context through VMContext and create RuntimeExt which provides access to the trie when the smart contract +call the storage API. Specifically "{\"city\": \"Venice\", \"date\": 20191201}" arguments will be set in VMContext.
  • +
  • Calls near_vm_runner::run which does the following: +
      +
    • Inject gas, stack, and other kinds of metering;
    • +
    • Verify that Wasm code does not use floats;
    • +
    • Checks that bindings API functions that the smart contract is trying to call are actually those provided by near_vm_logic;
    • +
    • Compiles Wasm code into the native binary;
    • +
    • Calls reserve_trip on the smart contract. +
        +
      • During the execution of the smart contract it will at some point call promise_create and promise_then, which will +call method on RuntimeExt that will record that two promises were created and that the second one should +wait on the first one. Specifically, promise_create will call RuntimeExt::create_receipt(vec![], "hotel_near") +returning 0 and then RuntimeExt::create_receipt(vec![0], "travel_agency");
      • +
      +
    • +
    +
  • +
  • action_function_call then collects receipts from VMContext along with the execution result, logs, and information +about used gas;
  • +
  • apply_action_receipt then goes over the collected receipts from each action and returns them at the end of Runtime::apply together with +other receipts.
  • +
+

Processing the reserve receipt

+

This receipt will have output_data_receivers with one element corresponding to the receipt that calls hotel_reservation_complete, +which will tell the runtime that it should create DataReceipt and send it towards travel_agency once the execution of reserve(date: u64) is complete.

+

The rest of the smart contract execution is similar to the above.

+

Processing the hotel_reservation_complete receipt

+

Upon receiving the hotel_reservation_complete receipt the runtime will notice that its input_data_ids is not empty +which means that it cannot be executed until reserve receipt is complete. It will store the receipt in the trie together +with the counter of how many DataReceipt it is waiting on.

+

It will not call the Wasm smart contract at this point.

+

Processing the DataReceipt

+

Once the runtime receives the DataReceipt it takes the receipt with hotel_reservation_complete function call +and executes it following the same execution steps as with the reserve_trip receipt.

+

Components

+

Here is the high-level diagram of various runtime components, including some blockchain layer components. +

+

Runtime crate

+

Runtime crate encapsulates the logic of how transactions and receipts should be handled. If it encounters +a smart contract call within a transaction or a receipt it calls near-vm-runner, for all other actions, like account +creation, it processes them in-place.

+

Runtime class

+

The main entry point of the Runtime is method apply. +It applies new singed transactions and incoming receipts for some chunk/shard on top of +given trie and the given state root. +If the validator accounts update is provided, updates validators accounts. +All new signed transactions should be valid and already verified by the chunk producer. +If any transaction is invalid, the method returns an InvalidTxError. +In case of success, the method returns ApplyResult that contains the new state root, trie changes, +new outgoing receipts, stats for validators (e.g. total rent paid by all the affected accounts), +execution outcomes.

+

Apply arguments

+

It takes the following arguments:

+
    +
  • trie: Arc<Trie> - the trie that contains the latest state.
  • +
  • root: CryptoHash - the hash of the state root in the trie.
  • +
  • validator_accounts_update: &Option<ValidatorAccountsUpdate> - optional field that contains updates for validator accounts. +It's provided at the beginning of the epoch or when someone is slashed.
  • +
  • apply_state: &ApplyState - contains block index and timestamp, epoch length, gas price and gas limit.
  • +
  • prev_receipts: &[Receipt] - the list of incoming receipts, from the previous block.
  • +
  • transactions: &[SignedTransaction] - the list of new signed transactions.
  • +
+

Apply logic

+

The execution consists of the following stages:

+
    +
  1. Snapshot the initial state.
  2. +
  3. Apply validator accounts update, if available.
  4. +
  5. Convert new signed transactions into the receipts.
  6. +
  7. Process receipts.
  8. +
  9. Check that incoming and outgoing balances match.
  10. +
  11. Finalize trie update.
  12. +
  13. Return ApplyResult.
  14. +
+

Validator accounts update

+

Validator accounts are accounts that staked some tokens to become a validator. +The validator accounts update usually happens when the current chunk is the first chunk of the epoch. +It also happens when there is a challenge in the current block with one of the participants belong to the current shard.

+

This update distributes validator rewards, return locked tokens and maybe slashes some accounts out of their stake.

+

Signed Transaction conversion

+

New signed transaction transactions are provided by the chunk producer in the chunk. These transactions should be ordered and already validated. +Runtime does validation again for the following reasons:

+
    +
  • to charge accounts for transactions fees, transfer balances, prepaid gas and account rents;
  • +
  • to create new receipts;
  • +
  • to compute burnt gas;
  • +
  • to validate transactions again, in case the chunk producer was malicious.
  • +
+

If the transaction has the the same signer_id and receiver_id, then the new receipt is added to the list of new local receipts, +otherwise it's added to the list of new outgoing receipts.

+

Receipt processing

+

Receipts are processed one by one in the following order:

+
    +
  1. Previously delayed receipts from the state.
  2. +
  3. New local receipts.
  4. +
  5. New incoming receipts.
  6. +
+

After each processed receipt, we compare total gas burnt (so far) with the gas limit. +When the total gas burnt reaches or exceeds the gas limit, the processing stops. +The remaining receipts are considered delayed and stored into the state.

+

Delayed receipts

+

Delayed receipts are stored as a persistent queue in the state. +Initially, the first unprocessed index and the next available index are initialized to 0. +When a new delayed receipt is added, it's written under the next available index in to the state and the next available index is incremented by 1. +When a delayed receipt is processed, it's read from the state using the first unprocessed index and the first unprocessed index is incremented. +At the end of the receipt processing, the all remaining local and incoming receipts are considered to be delayed and stored to the state in their respective order. +If during receipt processing, we've changed indices, then the delayed receipt indices are stored to the state as well.

+

Receipt processing algorithm

+

The receipt processing algorithm is the following:

+
    +
  1. Read indices from the state or initialize with zeros.
  2. +
  3. While the first unprocessed index is less than the next available index do the following +
      +
    1. If the total burnt gas is at least the gas limit, break.
    2. +
    3. Read the receipt from the first unprocessed index.
    4. +
    5. Remove the receipt from the state.
    6. +
    7. Increment the first unprocessed index.
    8. +
    9. Process the receipt.
    10. +
    11. Add the new burnt gas to the total burnt gas.
    12. +
    13. Remember that the delayed queue indices has changed.
    14. +
    +
  4. +
  5. Process the new local receipts and then the new incoming receipts +
      +
    • If the total burnt gas is less then the gas limit: +
        +
      1. Process the receipt.
      2. +
      3. Add the new burnt gas to the total burnt gas.
      4. +
      +
    • +
    • Else: +
        +
      1. Store the receipt under the next available index.
      2. +
      3. Increment the next available index.
      4. +
      5. Remember that the delayed queue indices has changed.
      6. +
      +
    • +
    +
  6. +
  7. If the delayed queue indices has changed, store the new indices to the state.
  8. +
+

Balance checker

+

Balance checker computes the total incoming balance and the total outgoing balance.

+

The total incoming balance consists of the following:

+
    +
  • Incoming validator rewards from validator accounts update.
  • +
  • Sum of the initial accounts balances for all affected accounts. We compute it using the snapshot of the initial state.
  • +
  • Incoming receipts balances. The prepaid fees and gas multiplied their gas prices with the attached balances from transfers and function calls. +Refunds are considered to be free of charge for fees, but still has attached deposits.
  • +
  • Balances for the processed delayed receipts.
  • +
  • Initial balances for the postponed receipts. Postponed receipts are receipts from the previous blocks that were processed, but were not executed. +They are action receipts with some expected incoming data. Usually for a callback on top of awaited promise. +When the expected data arrives later than the action receipt, then the action receipt is postponed. +Note, the data receipts are 0 cost, because they are completely prepaid when issued.
  • +
+

The total outgoing balance consists of the following:

+
    +
  • Sum of the final accounts balance for all affected accounts.
  • +
  • Outgoing receipts balances.
  • +
  • New delayed receipts. Local and incoming receipts that were not processed this time.
  • +
  • Final balances for the postponed receipts.
  • +
  • Total rent paid by all affected accounts.
  • +
  • Total new validator rewards. It's computed from total gas burnt rewards.
  • +
  • Total balance burnt. In case the balance is burnt for some reason (e.g. account was deleted during the refund), it's accounted there.
  • +
  • Total balance slashed. In case a validator is slashed for some reason, the balance is account here.
  • +
+

When you sum up incoming balances and outgoing balances, they should match. +If they don't match, we throw an error.

+

Bindings Specification

+

This is the low-level interface available to the smart contracts, it consists of the functions that the host (represented by +Wasmer inside near-vm-runner) exposes to the guest (the smart contract compiled to Wasm).

+

Due to Wasm restrictions the methods operate only with primitive types, like u64.

+

Also for all functions in the bindings specification the following is true:

+
    +
  • Method execution could result in MemoryAccessViolation error if one of the following happens: +
      +
    • The method causes host to read a piece of memory from the guest but it points outside the guest's memory;
    • +
    • The guest causes host to read from the register, but register id is invalid.
    • +
    +
  • +
+

Execution of a bindings function call result in an error being generated. This error causes execution of the smart contract +to be terminated and the error message written into the logs of the transaction that caused the execution. Many bindings +functions can throw specialized error messages, but there is also a list of error messages that can be thrown by almost +any function:

+
    +
  • IntegerOverflow -- happens when guest passes some data to the host but when host tries to apply arithmetic operation +on it it causes overflow or underflow;
  • +
  • GasExceeded -- happens when operation performed by the guest causes more gas than the remaining prepaid gas;
  • +
  • GasLimitExceeded -- happens when the execution uses more gas than allowed by the global limit imposed in the economics +config;
  • +
  • StorageError -- happens when method fails to do some operation on the trie.
  • +
+

The following binding methods cannot be invoked in a view call:

+
    +
  • signer_account_id
  • +
  • signer_account_pk
  • +
  • predecessor_account_id
  • +
  • attached_deposit
  • +
  • prepaid_gas
  • +
  • used_gas
  • +
  • promise_create
  • +
  • promise_then
  • +
  • promise_and
  • +
  • promise_batch_create
  • +
  • promise_batch_then
  • +
  • promise_batch_action_create_account
  • +
  • promise_batch_action_deploy_account
  • +
  • promise_batch_action_function_call
  • +
  • promise_batch_action_transfer
  • +
  • promise_batch_action_stake
  • +
  • promise_batch_action_add_key_with_full_access
  • +
  • promise_batch_action_add_key_with_function_call
  • +
  • promise_batch_action_delete_key
  • +
  • promise_batch_action_delete_account
  • +
  • promise_results_count
  • +
  • promise_result
  • +
  • promise_return
  • +
+

If they are invoked the smart contract execution will panic with ProhibitedInView(<method name>).

+

Registers API

+

Registers allow the host function to return the data into a buffer located inside the host oppose to the buffer +located on the client. A special operation can be used to copy the content of the buffer into the host. Memory pointers +can then be used to point either to the memory on the guest or the memory on the host, see below. Benefits:

+
    +
  • We can have functions that return values that are not necessarily used, e.g. inserting key-value into a trie can +also return the preempted old value, which might not be necessarily used. Previously, if we returned something we +would have to pass the blob from host into the guest, even if it is not used;
  • +
  • We can pass blobs of data between host functions without going through the guest, e.g. we can remove the value +from the storage and insert it into under a different key;
  • +
  • It makes API cleaner, because we don't need to pass buffer_len and buffer_ptr as arguments to other functions;
  • +
  • It allows merging certain functions together, see storage_iter_next;
  • +
  • This is consistent with other APIs that were created for high performance, e.g. allegedly Ewasm have implemented +SNARK-like computations in Wasm by exposing a bignum library through stack-like interface to the guest. The guest +can manipulate then with the stack of 256-bit numbers that is located on the host.
  • +
+

Host → host blob passing

+

The registers can be used to pass the blobs between host functions. For any function that +takes a pair of arguments *_len: u64, *_ptr: u64 this pair is pointing to a region of memory either on the guest or +the host:

+
    +
  • If *_len != u64::MAX it points to the memory on the guest;
  • +
  • If *_len == u64::MAX it points to the memory under the register *_ptr on the host.
  • +
+

For example: +storage_write(u64::MAX, 0, u64::MAX, 1, 2) -- insert key-value into storage, where key is read from register 0, +value is read from register 1, and result is saved to register 2.

+

Note, if some function takes register_id then it means this function can copy some data into this register. If +register_id == u64::MAX then the copying does not happen. This allows some micro-optimizations in the future.

+

Note, we allow multiple registers on the host, identified with u64 number. The guest does not have to use them in +order and can for instance save some blob in register 5000 and another value in register 1.

+

Specification

+

+#![allow(unused_variables)]
+fn main() {
+read_register(register_id: u64, ptr: u64)
+}
+
+

Writes the entire content from the register register_id into the memory of the guest starting with ptr.

+
Panics
+
    +
  • If the content extends outside the memory allocated to the guest. In Wasmer, it returns MemoryAccessViolation error message;
  • +
  • If register_id is pointing to unused register returns InvalidRegisterId error message.
  • +
+
Undefined Behavior
+
    +
  • If the content of register extends outside the preallocated memory on the host side, or the pointer points to a +wrong location this function will overwrite memory that it is not supposed to overwrite causing an undefined behavior.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+register_len(register_id: u64) -> u64
+}
+
+

Returns the size of the blob stored in the given register.

+
Normal operation
+
    +
  • If register is used, then returns the size, which can potentially be zero;
  • +
  • If register is not used, returns u64::MAX
  • +
+

Trie API

+

Here we provide a specification of trie API. After this NEP is merged, the cases where our current implementation does +not follow the specification are considered to be bugs that need to be fixed.

+
+

+#![allow(unused_variables)]
+fn main() {
+storage_write(key_len: u64, key_ptr: u64, value_len: u64, value_ptr: u64, register_id: u64) -> u64
+}
+
+

Writes key-value into storage.

+
Normal operation
+
    +
  • If key is not in use it inserts the key-value pair and does not modify the register;
  • +
  • If key is in use it inserts the key-value and copies the old value into the register_id.
  • +
+
Returns
+
    +
  • If key was not used returns 0;
  • +
  • If key was used returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr or value_len + value_ptr exceeds the memory container or points to an unused register it panics +with MemoryAccessViolation. (When we say that something panics with the given error we mean that we use Wasmer API to +create this error and terminate the execution of VM. For mocks of the host that would only cause a non-name panic.)
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • External::storage_set trait can return an error which is then converted to a generic non-descriptive +StorageUpdateError, here +however the actual implementation does not return error at all, see;
  • +
  • Does not return into the registers.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_read(key_len: u64, key_ptr: u64, register_id: u64) -> u64
+}
+
+

Reads the value stored under the given key.

+
Normal operation
+
    +
  • If key is used copies the content of the value into the register_id, even if the content is zero bytes;
  • +
  • If key is not present then does not modify the register.
  • +
+
Returns
+
    +
  • If key was not present returns 0;
  • +
  • If key was present returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • This function currently does not exist.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_remove(key_len: u64, key_ptr: u64, register_id: u64) -> u64
+}
+
+

Removes the value stored under the given key.

+
Normal operation
+

Very similar to storage_read:

+
    +
  • If key is used, removes the key-value from the trie and copies the content of the value into the register_id, even if the content is zero bytes.
  • +
  • If key is not present then does not modify the register.
  • +
+
Returns
+
    +
  • If key was not present returns 0;
  • +
  • If key was present returns 1.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • Does not return into the registers.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_has_key(key_len: u64, key_ptr: u64) -> u64
+}
+
+

Checks if there is a key-value pair.

+
Normal operation
+
    +
  • If key is used returns 1, even if the value is zero bytes;
  • +
  • Otherwise returns 0.
  • +
+
Panics
+
    +
  • If key_len + key_ptr exceeds the memory container it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_prefix(prefix_len: u64, prefix_ptr: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Creates an iterator object inside the host. +Returns the identifier that uniquely differentiates the given iterator from other iterators that can be simultaneously +created.

+
Normal operation
+
    +
  • It iterates over the keys that have the provided prefix. The order of iteration is defined by the lexicographic +order of the bytes in the keys. If there are no keys, it creates an empty iterator, see below on empty iterators;
  • +
+
Panics
+
    +
  • If prefix_len + prefix_ptr exceeds the memory container it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_range(start_len: u64, start_ptr: u64, end_len: u64, end_ptr: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Similarly to storage_iter_prefix +creates an iterator object inside the host.

+
Normal operation
+

Unless lexicographically start < end, it creates an empty iterator. +Iterates over all key-values such that keys are between start and end, where start is inclusive and end is exclusive.

+

Note, this definition allows for start or end keys to not actually exist on the given trie.

+
Panics:
+
    +
  • If start_len + start_ptr or end_len + end_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+storage_iter_next(iterator_id: u64, key_register_id: u64, value_register_id: u64) -> u64
+}
+
+

DEPRECATED, calling it will result result in HostError::Deprecated error. +Advances iterator and saves the next key and value in the register.

+
Normal operation
+
    +
  • If iterator is not empty (after calling next it points to a key-value), copies the key into key_register_id and value into value_register_id and returns 1;
  • +
  • If iterator is empty returns 0.
  • +
+

This allows us to iterate over the keys that have zero bytes stored in values.

+
Panics
+
    +
  • If key_register_id == value_register_id panics with MemoryAccessViolation;
  • +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If iterator_id does not correspond to an existing iterator panics with InvalidIteratorId
  • +
  • If between the creation of the iterator and calling storage_iter_next any modification to storage was done through +storage_write or storage_remove the iterator is invalidated and the error message is IteratorWasInvalidated.
  • +
+
Current bugs
+
    +
  • Not implemented, currently we have storage_iter_next and data_read + DATA_TYPE_STORAGE_ITER that together fulfill +the purpose, but have unspecified behavior.
  • +
+

Promises API

+

+#![allow(unused_variables)]
+fn main() {
+promise_create(account_id_len: u64,
+               account_id_ptr: u64,
+               method_name_len: u64,
+               method_name_ptr: u64,
+               arguments_len: u64,
+               arguments_ptr: u64,
+               amount_ptr: u64,
+               gas: u64) -> u64
+}
+
+

Creates a promise that will execute a method on account with given arguments and attaches the given amount. +amount_ptr point to slices of bytes representing u128.

+
Panics
+
    +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_then(promise_idx: u64,
+             account_id_len: u64,
+             account_id_ptr: u64,
+             method_name_len: u64,
+             method_name_ptr: u64,
+             arguments_len: u64,
+             arguments_ptr: u64,
+             amount_ptr: u64,
+             gas: u64) -> u64
+}
+
+

Attaches the callback that is executed after promise pointed by promise_idx is complete.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_and(promise_idx_ptr: u64, promise_idx_count: u64) -> u64
+}
+
+

Creates a new promise which completes when time all promises passed as arguments complete. Cannot be used with registers. +promise_idx_ptr points to an array of u64 elements, with promise_idx_count denoting the number of elements. +The array contains indices of promises that need to be waited on jointly.

+
Panics
+
    +
  • If promise_ids_ptr + 8 * promise_idx_count extend outside the guest memory with MemoryAccessViolation;
  • +
  • If any of the promises in the array do not correspond to existing promises panics with InvalidPromiseIndex.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_results_count() -> u64
+}
+
+

If the current function is invoked by a callback we can access the execution results of the promises that +caused the callback. This function returns the number of complete and incomplete callbacks.

+

Note, we are only going to have incomplete callbacks once we have promise_or combinator.

+
Normal execution
+
    +
  • If there is only one callback promise_results_count() returns 1;
  • +
  • If there are multiple callbacks (e.g. created through promise_and) promise_results_count() returns their number.
  • +
  • If the function was called not through the callback promise_results_count() returns 0.
  • +
+
Panics
+
    +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_result(result_idx: u64, register_id: u64) -> u64
+}
+
+

If the current function is invoked by a callback we can access the execution results of the promises that +caused the callback. This function returns the result in blob format and places it into the register.

+
Normal execution
+
    +
  • If promise result is complete and successful copies its blob into the register;
  • +
  • If promise result is complete and failed or incomplete keeps register unused;
  • +
+
Returns
+
    +
  • If promise result is not complete returns 0;
  • +
  • If promise result is complete and successful returns 1;
  • +
  • If promise result is complete and failed returns 2.
  • +
+
Panics
+
    +
  • If result_idx does not correspond to an existing result panics with InvalidResultIndex.
  • +
  • If copying the blob exhausts the memory limit it panics with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • We currently have two separate functions to check for result completion and copy it.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_return(promise_idx: u64)
+}
+
+

When promise promise_idx finishes executing its result is considered to be the result of the current function.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
+
Current bugs
+
    +
  • The current name return_promise is inconsistent with the naming convention of Promise API.
  • +
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_create(account_id_len: u64, account_id_ptr: u64) -> u64
+}
+
+

Creates a new promise towards given account_id without any actions attached to it.

+
Panics
+
    +
  • If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64) -> u64
+}
+
+

Attaches a new empty promise that is executed after promise pointed by promise_idx is complete.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Returns
+
    +
  • Index of the new promise that uniquely identifies it within the current execution of the method.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_create_account(promise_idx: u64)
+}
+
+

Appends CreateAccount action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R48

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_deploy_contract(promise_idx: u64, code_len: u64, code_ptr: u64)
+}
+
+

Appends DeployContract action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R49

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If code_len + code_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_function_call(promise_idx: u64,
+                                   method_name_len: u64,
+                                   method_name_ptr: u64,
+                                   arguments_len: u64,
+                                   arguments_ptr: u64,
+                                   amount_ptr: u64,
+                                   gas: u64)
+}
+
+

Appends FunctionCall action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R50

+

NOTE: Calling promise_batch_create and then promise_batch_action_function_call will produce the same promise as calling promise_create directly.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr +or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_transfer(promise_idx: u64, amount_ptr: u64)
+}
+
+

Appends Transfer action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R51

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_stake(promise_idx: u64,
+                           amount_ptr: u64,
+                           bls_public_key_len: u64,
+                           bls_public_key_ptr: u64)
+}
+
+

Appends Stake action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R52

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given BLS public key is not a valid BLS public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If amount_ptr + 16 or bls_public_key_len + bls_public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_add_key_with_full_access(promise_idx: u64,
+                                              public_key_len: u64,
+                                              public_key_ptr: u64,
+                                              nonce: u64)
+}
+
+

Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R54 +The access key will have FullAccess permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_add_key_with_function_call(promise_idx: u64,
+                                                public_key_len: u64,
+                                                public_key_ptr: u64,
+                                                nonce: u64,
+                                                allowance_ptr: u64,
+                                                receiver_id_len: u64,
+                                                receiver_id_ptr: u64,
+                                                method_names_len: u64,
+                                                method_names_ptr: u64)
+}
+
+

Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-156752ec7d78e7b85b8c7de4a19cbd4R54 +The access key will have FunctionCall permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation

+
    +
  • If the allowance value (not the pointer) is 0, the allowance is set to None (which means unlimited allowance). And positive value represents a Some(...) allowance.
  • +
  • Given method_names is a utf-8 string with , used as a separator. The vm will split the given string into a vector of strings.
  • +
+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • if method_names is not a valid utf-8 string, fails with BadUTF8.
  • +
  • If public_key_len + public_key_ptr, allowance_ptr + 16, receiver_id_len + receiver_id_ptr or +method_names_len + method_names_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_delete_key(promise_idx: u64,
+                                public_key_len: u64,
+                                public_key_ptr: u64)
+}
+
+

Appends DeleteKey action to the batch of actions for the given promise pointed by promise_idx. +Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R55

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey.
  • +
  • If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+promise_batch_action_delete_account(promise_idx: u64,
+                                    beneficiary_id_len: u64,
+                                    beneficiary_id_ptr: u64)
+}
+
+

Appends DeleteAccount action to the batch of actions for the given promise pointed by promise_idx. +Action is used to delete an account. It can be performed on a newly created account, on your own account or an account with +insufficient funds to pay rent. Takes beneficiary_id to indicate where to send the remaining funds.

+
Panics
+
    +
  • If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex.
  • +
  • If the promise pointed by the promise_idx is an ephemeral promise created by promise_and.
  • +
  • If beneficiary_id_len + beneficiary_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation.
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+

Context API

+

Context API mostly provides read-only functions that access current information about the blockchain, the accounts +(that originally initiated the chain of cross-contract calls, the immediate contract that called the current one, the account of the current contract), +other important information like storage usage.

+

Many of the below functions are currently implemented through data_read which allows to read generic context data. +However, there is no reason to have data_read instead of the specific functions:

+
    +
  • data_read does not solve forward compatibility. If later we want to add another context function, e.g. executed_operations +we can just declare it as a new function, instead of encoding it as DATA_TYPE_EXECUTED_OPERATIONS = 42 which is passed +as the first argument to data_read;
  • +
  • data_read does not help with renaming. If later we decide to rename signer_account_id to originator_id then one could +argue that contracts that rely on data_read would not break, while contracts relying on signer_account_id() would. However +the name change often means the change of the semantics, which means the contracts using this function are no longer safe to +execute anyway.
  • +
+

However there is one reason to not have data_read -- it makes API more human-like which is a general direction Wasm APIs, like WASI are moving towards to.

+
+

+#![allow(unused_variables)]
+fn main() {
+current_account_id(register_id: u64)
+}
+
+

Saves the account id of the current contract that we execute into the register.

+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+signer_account_id(register_id: u64)
+}
+
+

All contract calls are a result of some transaction that was signed by some account using +some access key and submitted into a memory pool (either through the wallet using RPC or by a node itself). This function returns the id of that account.

+
Normal operation
+
    +
  • Saves the bytes of the signer account id into the register.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Currently we conflate originator_id and sender_id in our code base.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+signer_account_pk(register_id: u64)
+}
+
+

Saves the public key fo the access key that was used by the signer into the register. +In rare situations smart contract might want to know the exact access key that was used to send the original transaction, +e.g. to increase the allowance or manipulate with the public key.

+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Not implemented.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+predecessor_account_id(register_id: u64)
+}
+
+

All contract calls are a result of a receipt, this receipt might be created by a transaction +that does function invocation on the contract or another contract as a result of cross-contract call.

+
Normal operation
+
    +
  • Saves the bytes of the predecessor account id into the register.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Not implemented.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+input(register_id: u64)
+}
+
+

Reads input to the contract call into the register. Input is expected to be in JSON-format.

+
Normal operation
+
    +
  • If input is provided saves the bytes (potentially zero) of input into register.
  • +
  • If input is not provided does not modify the register.
  • +
+
Returns
+
    +
  • If input was not provided returns 0;
  • +
  • If input was provided returns 1; If input is zero bytes returns 1, too.
  • +
+
Panics
+
    +
  • If the registers exceed the memory limit panics with MemoryAccessViolation;
  • +
+
Current bugs
+
    +
  • Implemented as part of data_read. However there is no reason to have one unified function, like data_read that can +be used to read all
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+block_index() -> u64
+}
+
+

Returns the current block height from genesis.

+
+

+#![allow(unused_variables)]
+fn main() {
+block_timestamp() -> u64
+}
+
+

Returns the current block timestamp (number of non-leap-nanoseconds since January 1, 1970 0:00:00 UTC).

+
+

+#![allow(unused_variables)]
+fn main() {
+epoch_height() -> u64
+}
+
+

Returns the current epoch height from genesis.

+
+

+#![allow(unused_variables)]
+fn main() {
+storage_usage() -> u64
+}
+
+

Returns the number of bytes used by the contract if it was saved to the trie as of the +invocation. This includes:

+
    +
  • The data written with storage_* functions during current and previous execution;
  • +
  • The bytes needed to store the account protobuf and the access keys of the given account.
  • +
+

Economics API

+

Accounts own certain balance; and each transaction and each receipt have certain amount of balance and prepaid gas +attached to them. +During the contract execution, the contract has access to the following u128 values:

+
    +
  • account_balance -- the balance attached to the given account. This includes the attached_deposit that was attached +to the transaction;
  • +
  • attached_deposit -- the balance that was attached to the call that will be immediately deposited before +the contract execution starts;
  • +
  • prepaid_gas -- the tokens attached to the call that can be used to pay for the gas;
  • +
  • used_gas -- the gas that was already burnt during the contract execution and attached to promises (cannot exceed prepaid_gas);
  • +
+

If contract execution fails prepaid_gas - used_gas is refunded back to signer_account_id and attached_deposit +is refunded back to predecessor_account_id.

+

The following spec is the same for all functions:

+

+#![allow(unused_variables)]
+fn main() {
+account_balance(balance_ptr: u64)
+attached_deposit(balance_ptr: u64)
+
+}
+
+

-- writes the value into the u128 variable pointed by balance_ptr.

+
Panics
+
    +
  • If balance_ptr + 16 points outside the memory of the guest with MemoryAccessViolation;
  • +
  • If called in a view function panics with ProhibitedInView.
  • +
+
Current bugs
+
    +
  • Use a different name;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+prepaid_gas() -> u64
+used_gas() -> u64
+}
+
+
Panics
+
    +
  • If called in a view function panics with ProhibitedInView.
  • +
+

Math API

+

+#![allow(unused_variables)]
+fn main() {
+random_seed(register_id: u64)
+}
+
+

Returns random seed that can be used for pseudo-random number generation in deterministic way.

+
Panics
+
    +
  • If the size of the registers exceed the set limit MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+sha256(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using sha256 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+keccak256(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using keccak256 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+keccak512(value_len: u64, value_ptr: u64, register_id: u64)
+}
+
+

Hashes the random sequence of bytes using keccak512 and returns it into register_id.

+
Panics
+
    +
  • If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.
  • +
+

Miscellaneous API

+

+#![allow(unused_variables)]
+fn main() {
+value_return(value_len: u64, value_ptr: u64)
+}
+
+

Sets the blob of data as the return value of the contract.

+
Panics
+
    +
  • If value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+panic()
+}
+
+

Terminates the execution of the program with panic GuestPanic("explicit guest panic").

+
+

+#![allow(unused_variables)]
+fn main() {
+panic_utf8(len: u64, ptr: u64)
+}
+
+

Terminates the execution of the program with panic GuestPanic(s), where s is the given UTF-8 encoded string.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with character '\0';

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
  • If string is not UTF-8 returns BadUtf8.
  • +
  • If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+log_utf8(len: u64, ptr: u64)
+}
+
+

Logs the UTF-8 encoded string.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with character '\0';

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
  • If string is not UTF-8 returns BadUtf8.
  • +
  • If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8.
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+log_utf16(len: u64, ptr: u64)
+}
+
+

Logs the UTF-16 encoded string. len is the number of bytes in the string. +See https://stackoverflow.com/a/5923961 that explains that null termination is not defined through encoding.

+
Normal behavior
+

If len == u64::MAX then treats the string as null-terminated with two-byte sequence of 0x00 0x00.

+
Panics
+
    +
  • If string extends outside the memory of the guest with MemoryAccessViolation;
  • +
+
+

+#![allow(unused_variables)]
+fn main() {
+abort(msg_ptr: u32, filename_ptr: u32, line: u32, col: u32)
+}
+
+

Special import kept for compatibility with AssemblyScript contracts. Not called by smart contracts directly, but instead +called by the code generated by AssemblyScript.

+

Future Improvements

+

In the future we can have some of the registers to be on the guest. +For instance a guest can tell the host that it has some pre-allocated memory that it wants to be used for the register, +e.g.

+

+#![allow(unused_variables)]
+fn main() {
+set_guest_register(register_id: u64, register_ptr: u64, max_register_size: u64)
+}
+
+

will assign register_id to a span of memory on the guest. Host then would also know the size of that buffer on guest +and can throw a panic if there is an attempted copying that exceeds the guest register size.

+

GenesisConfig

+

protocol_version

+

type: u32

+

Protocol version that this genesis works with.

+

genesis_time

+

type: DateTime

+

Official time of blockchain start.

+

chain_id

+

type: String

+

ID of the blockchain. This must be unique for every blockchain. +If your testnet blockchains do not have unique chain IDs, you will have a bad time.

+

num_block_producers

+

type: u32

+

Number of block producer seats at genesis.

+

block_producers_per_shard

+

type: [ValidatorId]

+

Defines number of shards and number of validators per each shard at genesis.

+

avg_fisherman_per_shard

+

type: [ValidatorId]

+

Expected number of fisherman per shard.

+

dynamic_resharding

+

type: bool

+

Enable dynamic re-sharding.

+

epoch_length

+

type: BlockIndex,

+

Epoch length counted in blocks.

+

gas_limit

+

type: Gas,

+

Initial gas limit for a block

+

gas_price

+

type: Balance,

+

Initial gas price

+

block_producer_kickout_threshold

+

type: u8

+

Criterion for kicking out block producers (this is a number between 0 and 100)

+

chunk_producer_kickout_threshold

+

type: u8

+

Criterion for kicking out chunk producers (this is a number between 0 and 100)

+

gas_price_adjustment_rate

+

type: Fraction

+

Gas price adjustment rate

+

runtime_config

+

type: RuntimeConfig

+

Runtime configuration (mostly economics constants).

+

validators

+

type: [AccountInfo]

+

List of initial validators.

+

records

+

type: Vec<StateRecord>

+

Records in storage at genesis (get split into shards at genesis creation).

+

transaction_validity_period

+

type: u64

+

Number of blocks for which a given transaction is valid

+

developer_reward_percentage

+

type: Fraction

+

Developer reward percentage.

+

protocol_reward_percentage

+

type: Fraction

+

Protocol treasury percentage.

+

max_inflation_rate

+

type: Fraction

+

Maximum inflation on the total supply every epoch.

+

total_supply

+

type: Balance

+

Total supply of tokens at genesis.

+

num_blocks_per_year

+

type: u64

+

Expected number of blocks per year

+

protocol_treasury_account

+

type: AccountId

+

Protocol treasury account

+

protocol economics

+
+

For the specific economic specs, refer to Economics Section.

+
+

RuntimeConfig

+

The structure that holds the parameters of the runtime, mostly economics.

+

storage_cost_byte_per_block

+

type: Balance

+

The cost to store one byte of storage per block.

+

storage_cost_byte_per_block

+

type: Balance

+

Costs of different actions that need to be performed when sending and processing transaction +and receipts.

+

poke_threshold

+

type: BlockIndex

+

The minimum number of blocks of storage rent an account has to maintain to prevent forced deletion.

+

transaction_costs

+

type: RuntimeFeesConfig

+

Costs of different actions that need to be performed when sending and processing transaction and receipts.

+

wasm_config

+

type: VMConfig,

+

Config of wasm operations.

+

account_length_baseline_cost_per_block

+

type: Balance

+

The baseline cost to store account_id of short length per block. +The original formula in NEP#0006 is 1,000 / (3 ^ (account_id.length - 2)) for cost per year. +This value represents 1,000 above adjusted to use per block

+

RuntimeFeesConfig

+

Economic parameters for runtime

+

action_receipt_creation_config

+

type: Fee

+

Describes the cost of creating an action receipt, ActionReceipt, excluding the actual cost +of actions.

+

data_receipt_creation_config

+

type: DataReceiptCreationConfig

+

Describes the cost of creating a data receipt, DataReceipt.

+

action_creation_config

+

type: ActionCreationConfig

+

Describes the cost of creating a certain action, Action. Includes all variants.

+

storage_usage_config

+

type: StorageUsageConfig

+

Describes fees for storage rent

+

burnt_gas_reward

+

type: Fraction

+

Fraction of the burnt gas to reward to the contract account for execution.

+

AccessKeyCreationConfig

+

Describes the cost of creating an access key.

+

full_access_cost

+

type: Fee +Base cost of creating a full access access-key.

+

function_call_cost

+

type: Fee +Base cost of creating an access-key restricted to specific functions.

+

function_call_cost_per_byte

+

type: Fee +Cost per byte of method_names of creating a restricted access-key.

+

action_creation_config

+

Describes the cost of creating a specific action, Action. Includes all variants.

+

create_account_cost

+

type: Fee

+

Base cost of creating an account.

+

deploy_contract_cost

+

type: Fee

+

Base cost of deploying a contract.

+

deploy_contract_cost_per_byte

+

type: Fee

+

Cost per byte of deploying a contract.

+

function_call_cost

+

type: Fee

+

Base cost of calling a function.

+

function_call_cost_per_byte

+

type: Fee

+

Cost per byte of method name and arguments of calling a function.

+

transfer_cost

+

type: Fee

+

Base cost of making a transfer.

+

stake_cost

+

type: Fee

+

Base cost of staking.

+

add_key_cost:

+

type: AccessKeyCreationConfig +Base cost of adding a key.

+

delete_key_cost

+

type: Fee

+

Base cost of deleting a key.

+

delete_account_cost

+

type: Fee

+

Base cost of deleting an account.

+

DataReceiptCreationConfig

+

Describes the cost of creating a data receipt, DataReceipt.

+

base_cost

+

type: Fee +Base cost of creating a data receipt.

+

cost_per_byte

+

type: Fee +Additional cost per byte sent.

+

StorageUsageConfig

+

Describes cost of storage per block

+

account_cost

+

type: Gas +Base storage usage for an account

+

data_record_cost

+

type: Gas +Base cost for a k/v record

+

key_cost_per_byte:

+

type: Gas +Cost per byte of key

+

value_cost_per_byte: Gas

+

type: Gas +Cost per byte of value

+

code_cost_per_byte: Gas

+

type: Gas +Cost per byte of contract code

+

Fee

+

Costs associated with an object that can only be sent over the network (and executed by the receiver).

+

send_sir

+

Fee for sending an object from the sender to itself, guaranteeing that it does not leave

+

send_not_sir

+

Fee for sending an object potentially across the shards.

+

execution

+

Fee for executing the object.

+

Fraction

+

numerator

+

type: u64

+

denominator

+

type: u64

+

VMConfig

+

Config of wasm operations.

+

ext_costs:

+

type: ExtCostsConfig

+

Costs for runtime externals

+

grow_mem_cost

+

type: u32

+

Gas cost of a growing memory by single page.

+

regular_op_cost

+

type: u32

+

Gas cost of a regular operation.

+

max_gas_burnt

+

type: Gas

+

Max amount of gas that can be used, excluding gas attached to promises.

+

max_stack_height

+

type: u32

+

How tall the stack is allowed to grow?

+

initial_memory_pages

+

type: u32

+

max_memory_pages

+

type: u32

+

The initial number of memory pages. +What is the maximal memory pages amount is allowed to have for +a contract.

+

registers_memory_limit

+

type: u64

+

Limit of memory used by registers.

+

max_register_size

+

type: u64

+

Maximum number of bytes that can be stored in a single register.

+

max_number_registers

+

type: u64

+

Maximum number of registers that can be used simultaneously.

+

max_number_logs

+

type: u64

+

Maximum number of log entries.

+

max_log_len

+

type: u64

+

Maximum length of a single log, in bytes.

+

ExtCostsConfig

+

base

+

type: Gas

+

Base cost for calling a host function.

+

read_memory_base

+

type: Gas

+

Base cost for guest memory read

+

read_memory_byte

+

type: Gas

+

Cost for guest memory read

+

write_memory_base

+

type: Gas

+

Base cost for guest memory write

+

write_memory_byte

+

type: Gas

+

Cost for guest memory write per byte

+

read_register_base

+

type: Gas

+

Base cost for reading from register

+

read_register_byte

+

type: Gas

+

Cost for reading byte from register

+

write_register_base

+

type: Gas

+

Base cost for writing into register

+

write_register_byte

+

type: Gas

+

Cost for writing byte into register

+

utf8_decoding_base

+

type: Gas

+

Base cost of decoding utf8.

+

utf8_decoding_byte

+

type: Gas

+

Cost per bye of decoding utf8.

+

utf16_decoding_base

+

type: Gas

+

Base cost of decoding utf16.

+

utf16_decoding_byte

+

type: Gas

+

Cost per bye of decoding utf16.

+

sha256_base

+

type: Gas

+

Cost of getting sha256 base

+

sha256_byte

+

type: Gas

+

Cost of getting sha256 per byte

+

keccak256_base

+

type: Gas

+

Cost of getting keccak256 base

+

keccak256_byte

+

type: Gas

+

Cost of getting keccak256 per byte

+

keccak512_base

+

type: Gas

+

Cost of getting keccak512 base

+

keccak512_byte

+

type: Gas

+

Cost of getting keccak512 per byte

+

log_base

+

type: Gas

+

Cost for calling logging.

+

log_byte

+

type: Gas

+

Cost for logging per byte

+

Storage API

+

storage_write_base

+

type: Gas

+

Storage trie write key base cost

+

storage_write_key_byte

+

type: Gas

+

Storage trie write key per byte cost

+

storage_write_value_byte

+

type: Gas

+

Storage trie write value per byte cost

+

storage_write_evicted_byte

+

type: Gas

+

Storage trie write cost per byte of evicted value.

+

storage_read_base

+

type: Gas

+

Storage trie read key base cost

+

storage_read_key_byte

+

type: Gas

+

Storage trie read key per byte cost

+

storage_read_value_byte

+

type: Gas

+

Storage trie read value cost per byte cost

+

storage_remove_base

+

type: Gas

+

Remove key from trie base cost

+

storage_remove_key_byte

+

type: Gas

+

Remove key from trie per byte cost

+

storage_remove_ret_value_byte

+

type: Gas

+

Remove key from trie ret value byte cost

+

storage_has_key_base

+

type: Gas

+

Storage trie check for key existence cost base

+

storage_has_key_byte

+

type: Gas

+

Storage trie check for key existence per key byte

+

storage_iter_create_prefix_base

+

type: Gas

+

Create trie prefix iterator cost base

+

storage_iter_create_prefix_byte

+

type: Gas

+

Create trie prefix iterator cost per byte.

+

storage_iter_create_range_base

+

type: Gas

+

Create trie range iterator cost base

+

storage_iter_create_from_byte

+

type: Gas

+

Create trie range iterator cost per byte of from key.

+

storage_iter_create_to_byte

+

type: Gas

+

Create trie range iterator cost per byte of to key.

+

storage_iter_next_base

+

type: Gas

+

Trie iterator per key base cost

+

storage_iter_next_key_byte

+

type: Gas

+

Trie iterator next key byte cost

+

storage_iter_next_value_byte

+

type: Gas

+

Trie iterator next key byte cost

+

touching_trie_node

+

type: Gas

+

Cost per touched trie node

+

Promise API

+

promise_and_base

+

type: Gas

+

Cost for calling promise_and

+

promise_and_per_promise

+

type: Gas

+

Cost for calling promise_and for each promise

+

promise_return

+

type: Gas

+

Cost for calling promise_return

+

StateRecord

+

type: Enum

+

Enum that describes one of the records in the state storage.

+

Account

+

type: Unnamed struct

+

Record that contains account information for a given account ID.

+

account_id

+

type: AccountId

+

The account ID of the account.

+

account

+

type: Account

+

The account structure. Serialized to JSON. U128 types are serialized to strings.

+

Data

+

type: Unnamed struct

+

Record that contains key-value data record for a contract at the given account ID.

+

account_id

+

type: AccountId

+

The account ID of the contract that contains this data record.

+

data_key

+

type: Vec<u8>

+

Data Key serialized in Base64 format.

+

NOTE: Key doesn't contain the data separator.

+

value

+

type: Vec<u8>

+

Value serialized in Base64 format.

+

Contract

+

type: Unnamed struct

+

Record that contains a contract code for a given account ID.

+

account_id

+

type: AccountId

+

The account ID of that has the contract.

+

code

+

type: Vec<u8>

+

WASM Binary contract code serialized in Base64 format.

+

AccessKey

+

type: Unnamed struct

+

Record that contains an access key for a given account ID.

+

account_id

+

type: AccountId

+

The account ID of the access key owner.

+

public_key

+

type: [PublicKey]

+

The public key for the access key in JSON-friendly string format. E.g. ed25519:5JFfXMziKaotyFM1t4hfzuwh8GZMYCiKHfqw1gTEWMYT

+

access_key

+

type: AccessKey

+

The access key serialized in JSON format.

+

PostponedReceipt

+

type: Box<Receipt>

+

Record that contains a receipt that was postponed on a shard (e.g. it's waiting for incoming data). +The receipt is in JSON-friendly format. The receipt can only be an ActionReceipt.

+

NOTE: Box is used to decrease fixed size of the entire enum.

+

ReceivedData

+

type: Unnamed struct

+

Record that contains information about received data for some action receipt, that is not yet received or processed for a given account ID. +The data is received using DataReceipt before. See Receipts for details.

+

account_id

+

type: AccountId

+

The account ID of the receiver of the data.

+

data_id

+

type: [CryptoHash]

+

Data ID of the data in base58 format.

+

data

+

type: Option<Vec<u8>>

+

Optional data encoded as base64 format or null in JSON.

+

DelayedReceipt

+

type: Box<Receipt>

+

Record that contains a receipt that was delayed on a shard. It means the shard was overwhelmed with receipts and it processes receipts from backlog. +The receipt is in JSON-friendly format. See Delayed Receipts for details.

+

NOTE: Box is used to decrease fixed size of the entire enum.

+

Economics

+

This is under heavy development

+

Units

+ + + + + +
NameValue
yoctoNEARsmallest undividable amount of native currency NEAR.
NEAR10**24 yoctoNEAR
blocksmallest on-chain unit of time
gasunit to measure usage of blockchain
+

General Parameters

+ + + + + + + + + + + + + + + + +
NameValue
INITIAL_SUPPLY10**33 yoctoNEAR
NEAR10**24 yoctoNEAR
MIN_GAS_PRICE10**5 yoctoNEAR
REWARD_PCT_PER_YEAR0.05
BLOCK_TIME1 second
EPOCH_LENGTH43,200 blocks
EPOCHS_A_YEAR730 epochs
POKE_THRESHOLD500 blocks
INITIAL_MAX_STORAGE10 * 2**40 bytes == 10 TB
TREASURY_PCT0.1
TREASURY_ACCOUNT_IDtreasury
CONTRACT_PCT0.3
INVALID_STATE_SLASH_PCT0.05
ADJ_FEE0.001
TOTAL_SEATS100
+

General Variables

+ + + + +
NameDescriptionInitial value
totalSupply[t]Total supply of NEAR at given epoch[t]INITIAL_SUPPLY
gasPrice[t]The cost of 1 unit of gas in NEAR tokens (see Transaction Fees section below)MIN_GAS_PRICE
storageAmountPerByte[t]keeping constant, INITIAL_SUPPLY / INITIAL_MAX_STORAGE~9.09 * 10**19 yoctoNEAR
+

Issuance

+

The protocol sets a ceiling for the maximum issuance of tokens, and dynamically decreases this issuance depending on the amount of total fees in the system.

+ + + + +
NameDescription
reward[t]totalSupply[t] * ((1 - REWARD_PCT_PER_YEAR) ** (1/EPOCHS_A_YEAR) - 1)
epochFee[t]sum([(1 - DEVELOPER_PCT_PER_YEAR) * block.txFee + block.stateFee for block in epoch[t]])
issuance[t]The amount of token issued at a certain epoch[t], issuance[t] = reward[t] - epochFee[t]
+

Where totalSupply[t] is the total number of tokens in the system at a given time t. +If epochFee[t] > reward[t] the issuance is negative, thus the totalSupply[t] decreases in given epoch.

+

Transaction Fees

+

Each transaction before inclusion must buy gas enough to cover the cost of bandwidth and execution.

+

Gas unifies execution and bytes of bandwidth usage of blockchain. Each WASM instruction or pre-compiled function gets assigned an amount of gas based on measurements on common-denominator computer. Same goes for weighting the used bandwidth based on general unified costs. For specific gas mapping numbers see ???.

+

Gas is priced dynamically in NEAR tokens. At each block t, we update gasPrice[t] = gasPrice[t - 1] * (gasUsed[t - 1] / gasLimit[t - 1] - 0.5) * ADJ_FEE.

+

Where gasUsed[t] = sum([sum([gas(tx) for tx in chunk]) for chunk in block[t]]). +gasLimit[t] is defined as gasLimit[t] = gasLimit[t - 1] + validatorGasDiff[t - 1], where validatorGasDiff is parameter with which each chunk producer can either increase or decrease gas limit based on how long it to execute the previous chunk. validatorGasDiff[t] can be only within ±0.1% of gasLimit[t] and only if gasUsed[t - 1] > 0.9 * gasLimit[t - 1].

+

State Stake

+

Amount of NEAR on the account represents right for this account to take portion of the blockchain's overall global state. Transactions fail if account doesn't have enough balance to cover the storage required for given account.

+
def check_storage_cost(account):
+    # Compute requiredAmount given size of the account.
+    requiredAmount = sizeOf(account) * storageAmountPerByte
+    return Ok() if account.amount + account.locked < requiredAmount else Error(requiredAmount)
+
+# Check when transaction is received to verify that it is valid.
+def verify_transaction(tx, signer_account):
+    # ...
+    # Updates signer's account with the amount it will have after executing this tx.
+    update_post_amount(signer_account, tx)
+    result = check_storage_cost(signer_account)
+    # If enough balance OR account is been deleted by the owner.
+    if not result.ok() or DeleteAccount(tx.signer_id) in tx.actions:
+        assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err())
+
+# After account touched / changed, we check it still has enough balance to cover it's storage.
+def on_account_change(block_height, account):
+    # ... execute transaction / receipt changes ...
+    # Validate post-condition and revert if it fails.
+    result = check_storage_cost(sender_account)
+    if not result.ok():
+        assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err())
+
+

Where sizeOf(account) includes size of account_id, account structure and size of all the data stored under the account.

+

Account can end up with not enough balance in case it gets slashed. Account will become unusable as all orginating transactions will fail (including deletion). +The only way to recover it in this case is by sending extra funds from a different accounts.

+

Validators

+

NEAR validators provide their resources in exchange for a reward epochReward[t], where [t] represents the considered epoch

+ + + +
NameDescription
epochReward[t]= coinbaseReward[t] + epochFee[t]
coinbaseReward[t]The maximum inflation per epoch[t], as a function of REWARD_PCT_PER_YEAR / EPOCHS_A_YEAR
+

Validator Selection

+ + + + + + + + + + +
NameDescription
proposalsThe array of all existing validators, minus the ones which were online less than ONLINE_THRESHOLD, plus new validators
INCLUSION_FEEThe arbitrary transaction fee that new validators offer to be included in the proposals, to mitigate censorship risks by existing validators
ONLINE_THRESHOLD0.9
epoch[T]The epoch when validator[v] is selected from the proposals auction array
seatPriceThe minimum stake needed to become validator in epoch[T]
stake[v]The amount in NEAR tokens staked by validator[v] during the auction at the end of epoch[T-2], minus INCLUSION_FEE
shard[v]The shard is randomly assigned to validator[v] at epoch[T-1], such that its node can download and sync with its state
numSeatsNumber of seats assigned to validator[v], calculated from stake[v]/seatPrice
validatorAssignmentsThe resulting ordered array of all proposals with a stake higher than seatPrice
+

validatorAssignments is then split in two groups: block/chunk producers and hidden validators.

+

Rewards Calculation

+ + +
NameValue
epochFee[t]sum([(1 - DEVELOPER_PCT_PER_YEAR) * txFee[i] + stateFee[i] for i in epoch[t]]), where [i] represents any considered block within the epoch[t]
+

Total reward every epoch t is equal to:

+
reward[t] = totalSupply * ((1 + REWARD_PCT_PER_YEAR) ** (1 / EPOCHS_A_YEAR) - 1)
+
+

Uptime of a specific validator is computed:

+
pct_online[t][j] = (num_produced_blocks[t][j] / expected_produced_blocks[t][j] + num_produced_chunks[t][j] / expected_produced_chunks[t][j]) / 2
+if pct_online > ONLINE_THRESHOLD:
+    uptime[t][j] = (pct_online[t][j] - ONLINE_THRESHOLD) / (1 - ONLINE_THRESHOLD)
+else:
+    uptime[t][j] = 0
+
+

Where expected_produced_blocks and expected_produced_chunks is the number of blocks and chunks respectively that is expected to be produced by given validator j in the epoch t.

+

The specific validator[t][j] reward for epoch t is then proportional to the fraction of stake of this validator from total stake:

+
validator[t][j] = (uptime[t][j] * stake[t][j] * reward[t]) / total_stake[t]
+
+

Slashing

+

ChunkProofs

+
# Check that chunk is invalid, because the proofs in header don't match the body.
+def chunk_proofs_condition(chunk):
+    # TODO
+
+# At the end of the epoch, run update validators and
+# determine how much to slash validators.
+def end_of_epoch_update_validators(validators):
+    # ...
+    for validator in validators:
+        if validator.is_slashed:
+            validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake
+
+

ChunkState

+
# Check that chunk header post state root is invalid, 
+# because the execution of previous chunk doesn't lead to it.
+def chunk_state_condition(prev_chunk, prev_state, chunk_header):
+    # TODO
+
+# At the end of the epoch, run update validators and
+# determine how much to slash validators.
+def end_of_epoch(..., validators):
+    # ...
+    for validator in validators:
+        if validator.is_slashed:
+            validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake
+
+

Protocol Treasury

+

Treasury account TREASURY_ACCOUNT_ID receives fraction of reward every epoch t:

+
# At the end of the epoch, update treasury
+def end_of_epoch(..., reward):
+    # ...
+    accounts[TREASURY_ACCOUNT_ID].amount = TREASURY_PCT * reward
+
+

Standards

+ +

Fungible Token

+

Summary

+

A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.

+

Motivation

+

NEAR Protocol uses an asynchronous sharded Runtime. This means the following:

+
    +
  • Storage for different contracts and accounts can be located on the different shards.
  • +
  • Two contracts can be executed at the same time in different shards.
  • +
+

While this increases the transaction throughput linearly with the number of shards, it also creates some challenges for cross-contract development. +For example, if one contract wants to query some information from the state of another contract (e.g. current balance), by the time the first contract receive the balance the real balance can change. +It means in the async system, a contract can't rely on the state of other contract and assume it's not going to change.

+

Instead the contract can rely on temporary partial lock of the state with a callback to act or unlock, but it requires careful engineering to avoid dead locks. +In this standard we're trying to avoid enforcing locks, since most actions can still be completed without locks by transferring ownership to an escrow account.

+

Prior art:

+ +

Guide-level explanation

+

We should be able to do the following:

+
    +
  • Initialize contract once. The given total supply will be owned by the given account ID.
  • +
  • Get the total supply.
  • +
  • Transfer tokens to a new user.
  • +
  • Set a given allowance for an escrow account ID. +
      +
    • Escrow will be able to transfer up this allowance from your account.
    • +
    • Get current balance for a given account ID.
    • +
    +
  • +
  • Transfer tokens from one user to another.
  • +
  • Get the current allowance for an escrow account on behalf of the balance owner. This should only be used in the UI, since a contract shouldn't rely on this temporary information.
  • +
+

There are a few concepts in the scenarios above:

+
    +
  • Total supply. It's the total number of tokens in circulation.
  • +
  • Balance owner. An account ID that owns some amount of tokens.
  • +
  • Balance. Some amount of tokens.
  • +
  • Transfer. Action that moves some amount from one account to another account.
  • +
  • Escrow. A different account from the balance owner who has permission to use some amount of tokens.
  • +
  • Allowance. The amount of tokens an escrow account can use on behalf of the account owner.
  • +
+

Note, that the precision is not part of the default standard, since it's not required to perform actions. The minimum +value is always 1 token.

+

Simple transfer

+

Alice wants to send 5 wBTC tokens to Bob.

+

Assumptions

+
    +
  • The wBTC token contract is wbtc.
  • +
  • Alice's account is alice.
  • +
  • Bob's account is bob.
  • +
  • The precision on wBTC contract is 10^8.
  • +
  • The 5 tokens is 5 * 10^8 or as a number is 500000000.
  • +
+

High-level explanation

+

Alice needs to issue one transaction to wBTC contract to transfer 5 tokens (multiplied by precision) to Bob.

+

Technical calls

+
    +
  1. alice calls wbtc::transfer({"new_owner_id": "bob", "amount": "500000000"}).
  2. +
+

Token deposit to a contract

+

Alice wants to deposit 1000 DAI tokens to a compound interest contract to earn extra tokens.

+

Assumptions

+
    +
  • The DAI token contract is dai.
  • +
  • Alice's account is alice.
  • +
  • The compound interest contract is compound.
  • +
  • The precision on DAI contract is 10^18.
  • +
  • The 1000 tokens is 1000 * 10^18 or as a number is 1000000000000000000000.
  • +
  • The compound contract can work with multiple token types.
  • +
+

High-level explanation

+

Alice needs to issue 2 transactions. The first one to dai to set an allowance for compound to be able to withdraw tokens from alice. +The second transaction is to the compound to start the deposit process. Compound will check that the DAI tokens are supported and will try to withdraw the desired amount of DAI from alice.

+
    +
  • If transfer succeeded, compound can increase local ownership for alice to 1000 DAI
  • +
  • If transfer fails, compound doesn't need to do anything in current example, but maybe can notify alice of unsuccessful transfer.
  • +
+

Technical calls

+
    +
  1. alice calls dai::set_allowance({"escrow_account_id": "compound", "allowance": "1000000000000000000000"}).
  2. +
  3. alice calls compound::deposit({"token_contract": "dai", "amount": "1000000000000000000000"}). During the deposit call, compound does the following: +
      +
    1. makes async call dai::transfer_from({"owner_id": "alice", "new_owner_id": "compound", "amount": "1000000000000000000000"}).
    2. +
    3. attaches a callback compound::on_transfer({"owner_id": "alice", "token_contract": "dai", "amount": "1000000000000000000000"}).
    4. +
    +
  4. +
+

Multi-token swap on DEX

+

Charlie wants to exchange his wLTC to wBTC on decentralized exchange contract. Alex wants to buy wLTC and has 80 wBTC.

+

Assumptions

+
    +
  • The wLTC token contract is wltc.
  • +
  • The wBTC token contract is wbtc.
  • +
  • The DEX contract is dex.
  • +
  • Charlie's account is charlie.
  • +
  • Alex's account is alex.
  • +
  • The precision on both tokens contract is 10^8.
  • +
  • The amount of 9001 wLTC tokens is Alex wants is 9001 * 10^8 or as a number is 900100000000.
  • +
  • The 80 wBTC tokens is 80 * 10^8 or as a number is 8000000000.
  • +
  • Charlie has 1000000 wLTC tokens which is 1000000 * 10^8 or as a number is 100000000000000
  • +
  • Dex contract already has an open order to sell 80 wBTC tokens by alex towards 9001 wLTC.
  • +
  • Without Safes implementation, DEX has to act as an escrow and hold funds of both users before it can do an exchange.
  • +
+

High-level explanation

+

Let's first setup open order by Alex on DEX. It's similar to Token deposit to a contract example above.

+
    +
  • Alex sets an allowance on wBTC to DEX
  • +
  • Alex calls deposit on Dex for wBTC.
  • +
  • Alex calls DEX to make an new sell order.
  • +
+

Then Charlie comes and decides to fulfill the order by selling his wLTC to Alex on DEX. +Charlie calls the DEX

+
    +
  • Charlie sets the allowance on wLTC to DEX
  • +
  • Alex calls deposit on Dex for wLTC.
  • +
  • Then calls DEX to take the order from Alex.
  • +
+

When called, DEX makes 2 async transfers calls to exchange corresponding tokens.

+
    +
  • DEX calls wLTC to transfer tokens DEX to Alex.
  • +
  • DEX calls wBTC to transfer tokens DEX to Charlie.
  • +
+

Technical calls

+
    +
  1. alex calls wbtc::set_allowance({"escrow_account_id": "dex", "allowance": "8000000000"}).
  2. +
  3. alex calls dex::deposit({"token": "wbtc", "amount": "8000000000"}). +
      +
    1. dex calls wbtc::transfer_from({"owner_id": "alex", "new_owner_id": "dex", "amount": "8000000000"})
    2. +
    +
  4. +
  5. alex calls dex::trade({"have": "wbtc", "have_amount": "8000000000", "want": "wltc", "want_amount": "900100000000"}).
  6. +
  7. charlie calls wltc::set_allowance({"escrow_account_id": "dex", "allowance": "100000000000000"}).
  8. +
  9. charlie calls dex::deposit({"token": "wltc", "amount": "100000000000000"}). +
      +
    1. dex calls wltc::transfer_from({"owner_id": "charlie", "new_owner_id": "dex", "amount": "100000000000000"})
    2. +
    +
  10. +
  11. charlie calls dex::trade({"have": "wltc", "have_amount": "900100000000", "want": "wbtc", "want_amount": "8000000000"}). +
      +
    • dex calls wbtc::transfer({"new_owner_id": "charlie", "amount": "8000000000"})
    • +
    • dex calls wltc::transfer({"new_owner_id": "alex", "amount": "900100000000"})
    • +
    +
  12. +
+

Reference-level explanation

+

The full implementation in Rust can be found there: https://github.com/nearprotocol/near-sdk-rs/blob/master/examples/fungible-token/src/lib.rs

+

NOTES:

+
    +
  • All amounts, balances and allowance are limited by U128 (max value 2**128 - 1).
  • +
  • Token standard uses JSON for serialization of arguments and results.
  • +
  • Amounts in arguments and results have are serialized as Base-10 strings, e.g. "100". This is done to avoid +JSON limitation of max integer value of 2**53.
  • +
+

Interface:

+

+#![allow(unused_variables)]
+fn main() {
+/******************/
+/* CHANGE METHODS */
+/******************/
+
+/// Sets the `allowance` for `escrow_account_id` on the account of the caller of this contract
+/// (`predecessor_id`) who is the balance owner.
+pub fn set_allowance(&mut self, escrow_account_id: AccountId, allowance: U128);
+
+/// Transfers the `amount` of tokens from `owner_id` to the `new_owner_id`.
+/// Requirements:
+/// * `amount` should be a positive integer.
+/// * `owner_id` should have balance on the account greater or equal than the transfer `amount`.
+/// * If this function is called by an escrow account (`owner_id != predecessor_account_id`),
+///   then the allowance of the caller of the function (`predecessor_account_id`) on
+///   the account of `owner_id` should be greater or equal than the transfer `amount`.
+pub fn transfer_from(&mut self, owner_id: AccountId, new_owner_id: AccountId, amount: U128);
+
+
+/// Transfer `amount` of tokens from the caller of the contract (`predecessor_id`) to
+/// `new_owner_id`.
+/// Act the same was as `transfer_from` with `owner_id` equal to the caller of the contract
+/// (`predecessor_id`).
+pub fn transfer(&mut self, new_owner_id: AccountId, amount: U128);
+
+/****************/
+/* VIEW METHODS */
+/****************/
+
+/// Returns total supply of tokens.
+pub fn get_total_supply(&self) -> U128;
+
+/// Returns balance of the `owner_id` account.
+pub fn get_balance(&self, owner_id: AccountId) -> U128;
+
+/// Returns current allowance of `escrow_account_id` for the account of `owner_id`.
+///
+/// NOTE: Other contracts should not rely on this information, because by the moment a contract
+/// receives this information, the allowance may already be changed by the owner.
+/// So this method should only be used on the front-end to see the current allowance.
+pub fn get_allowance(&self, owner_id: AccountId, escrow_account_id: AccountId) -> U128;
+}
+
+

Drawbacks

+
    +
  • Current interface doesn't have minting, precision (decimals), naming. But it should be done as extensions, e.g. a Precision extension.
  • +
  • It's not possible to exchange tokens without transferring them to escrow first.
  • +
  • It's not possible to transfer tokens to a contract with a single transaction without setting the allowance first. +It should be possible if we introduce transfer_with function that transfers tokens and calls escrow contract. It needs to handle result of the execution and contracts have to be aware of this API.
  • +
+

Future possibilities

+
    +
  • Support for multiple token types
  • +
  • Minting and burning
  • +
  • Precision, naming and short token name.
  • +
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/searchindex.js b/docs/searchindex.js new file mode 100644 index 000000000..a97becd34 --- /dev/null +++ b/docs/searchindex.js @@ -0,0 +1 @@ +Object.assign(window.search, {"doc_urls":["README.html#the-near-protocol-specification","README.html#standards","Terminology.html#terminology","Terminology.html#abstraction-definitions","Terminology.html#chain","DataStructures/README.html#primitives","DataStructures/Account.html#accounts","DataStructures/Account.html#account-id","DataStructures/Account.html#account-id-rules","DataStructures/Account.html#top-level-accounts","DataStructures/Account.html#examples","DataStructures/Account.html#account","DataStructures/AccessKey.html#access-keys","DataStructures/AccessKey.html#accesskeypermissionfunctioncall","DataStructures/AccessKey.html#account-without-access-keys","DataStructures/Transaction.html#transaction","Architecture.html#architecture","Architecture.html#transactions-and-receipts","Architecture.html#account-based-system","Architecture.html#assume-every-account-belongs-to-its-own-shard","Architecture.html#trie","Architecture.html#tokens-and-gas","Architecture.html#validators","Architecture.html#blockchain-layer-concepts","Architecture.html#runtime-layer-concepts","ChainSpec/README.html#chain-specification","ChainSpec/Consensus.html#consensus","ChainSpec/Consensus.html#definitions-and-notation","ChainSpec/Consensus.html#data-structures","ChainSpec/Consensus.html#approvals-requirements","ChainSpec/Consensus.html#messages","ChainSpec/Consensus.html#block-production","ChainSpec/Consensus.html#finality-condition","ChainSpec/Consensus.html#epoch-switches","ChainSpec/Consensus.html#safety","ChainSpec/Consensus.html#liveness","ChainSpec/Consensus.html#approval-condition","ChainSpec/Transactions.html#transactions-in-the-blockchain-layer","ChainSpec/Transactions.html#transaction-ordering","ChainSpec/Transactions.html#transaction-validation","ChainSpec/Transactions.html#before-adding-to-a-transaction-pool","ChainSpec/Transactions.html#before-adding-to-a-chunk","ChainSpec/Transactions.html#pool-iterator","ChainSpec/Transactions.html#transaction-ordering-example-using-pool-iterator","ChainSpec/Transactions.html#order-validation","RuntimeSpec/README.html#runtime-specification","RuntimeSpec/FunctionCall.html#function-call","RuntimeSpec/FunctionCall.html#input_data_ids-to-promiseresults","RuntimeSpec/FunctionCall.html#input","RuntimeSpec/FunctionCall.html#execution","RuntimeSpec/FunctionCall.html#output","RuntimeSpec/FunctionCall.html#value-result","RuntimeSpec/FunctionCall.html#receiptindex-result","RuntimeSpec/Transactions.html#transactions","RuntimeSpec/Transactions.html#signed-transaction","RuntimeSpec/Actions.html#actions","RuntimeSpec/Actions.html#createaccountaction","RuntimeSpec/Actions.html#deploycontractaction","RuntimeSpec/Actions.html#functioncallaction","RuntimeSpec/Actions.html#transferaction","RuntimeSpec/Actions.html#stakeaction","RuntimeSpec/Actions.html#addkeyaction","RuntimeSpec/Actions.html#deletekeyaction","RuntimeSpec/Actions.html#deleteaccountaction","RuntimeSpec/Receipts.html#receipt","RuntimeSpec/Receipts.html#actionreceipt","RuntimeSpec/Receipts.html#datareceipt","RuntimeSpec/Receipts.html#creating-receipt","RuntimeSpec/Receipts.html#receipt-matching","RuntimeSpec/Receipts.html#processing-actionreceipt","RuntimeSpec/Receipts.html#processing-datareceipt","RuntimeSpec/Receipts.html#case-1-call-to-multiple-contracts-and-await-responses","RuntimeSpec/Scenarios/Scenarios.html#scenarios","RuntimeSpec/Scenarios/FinancialTransaction.html#financial-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#pre-requisites","RuntimeSpec/Scenarios/FinancialTransaction.html#creating-a-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#sending-the-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#transaction-to-receipt","RuntimeSpec/Scenarios/FinancialTransaction.html#processing-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#cross-contract-call","RuntimeSpec/Scenarios/CrossContractCall.html#pre-requisites","RuntimeSpec/Scenarios/CrossContractCall.html#transaction-to-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-reserve_trip-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-reserve-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-hotel_reservation_complete-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-datareceipt","RuntimeSpec/Components/Components.html#components","RuntimeSpec/Components/RuntimeCrate.html#runtime-crate","RuntimeSpec/Components/RuntimeCrate.html#runtime-class","RuntimeSpec/Components/RuntimeCrate.html#apply-arguments","RuntimeSpec/Components/RuntimeCrate.html#apply-logic","RuntimeSpec/Components/RuntimeCrate.html#validator-accounts-update","RuntimeSpec/Components/RuntimeCrate.html#signed-transaction-conversion","RuntimeSpec/Components/RuntimeCrate.html#receipt-processing","RuntimeSpec/Components/RuntimeCrate.html#delayed-receipts","RuntimeSpec/Components/RuntimeCrate.html#receipt-processing-algorithm","RuntimeSpec/Components/RuntimeCrate.html#balance-checker","RuntimeSpec/Components/BindingsSpec/BindingsSpec.html#bindings-specification","RuntimeSpec/Components/BindingsSpec/RegistersAPI.html#registers-api","RuntimeSpec/Components/BindingsSpec/TrieAPI.html#trie-api","RuntimeSpec/Components/BindingsSpec/PromisesAPI.html#promises-api","RuntimeSpec/Components/BindingsSpec/ContextAPI.html#context-api","RuntimeSpec/Components/BindingsSpec/EconomicsAPI.html#economics-api","RuntimeSpec/Components/BindingsSpec/MathAPI.html#math-api","RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html#miscellaneous-api","RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html#future-improvements","GenesisConfig/GenesisConfig.html#genesisconfig","GenesisConfig/GenesisConfig.html#protocol_version","GenesisConfig/GenesisConfig.html#genesis_time","GenesisConfig/GenesisConfig.html#chain_id","GenesisConfig/GenesisConfig.html#num_block_producers","GenesisConfig/GenesisConfig.html#block_producers_per_shard","GenesisConfig/GenesisConfig.html#avg_fisherman_per_shard","GenesisConfig/GenesisConfig.html#dynamic_resharding","GenesisConfig/GenesisConfig.html#epoch_length","GenesisConfig/GenesisConfig.html#gas_limit","GenesisConfig/GenesisConfig.html#gas_price","GenesisConfig/GenesisConfig.html#block_producer_kickout_threshold","GenesisConfig/GenesisConfig.html#chunk_producer_kickout_threshold","GenesisConfig/GenesisConfig.html#gas_price_adjustment_rate","GenesisConfig/GenesisConfig.html#runtime_config","GenesisConfig/GenesisConfig.html#validators","GenesisConfig/GenesisConfig.html#records","GenesisConfig/GenesisConfig.html#transaction_validity_period","GenesisConfig/GenesisConfig.html#developer_reward_percentage","GenesisConfig/GenesisConfig.html#protocol_reward_percentage","GenesisConfig/GenesisConfig.html#max_inflation_rate","GenesisConfig/GenesisConfig.html#total_supply","GenesisConfig/GenesisConfig.html#num_blocks_per_year","GenesisConfig/GenesisConfig.html#protocol_treasury_account","GenesisConfig/GenesisConfig.html#protocol-economics","GenesisConfig/RuntimeConfig.html#runtimeconfig","GenesisConfig/RuntimeConfig.html#storage_cost_byte_per_block","GenesisConfig/RuntimeConfig.html#storage_cost_byte_per_block","GenesisConfig/RuntimeConfig.html#poke_threshold","GenesisConfig/RuntimeConfig.html#transaction_costs","GenesisConfig/RuntimeConfig.html#wasm_config","GenesisConfig/RuntimeConfig.html#account_length_baseline_cost_per_block","GenesisConfig/RuntimeFeeConfig.html#runtimefeesconfig","GenesisConfig/RuntimeFeeConfig.html#action_receipt_creation_config","GenesisConfig/RuntimeFeeConfig.html#data_receipt_creation_config","GenesisConfig/RuntimeFeeConfig.html#action_creation_config","GenesisConfig/RuntimeFeeConfig.html#storage_usage_config","GenesisConfig/RuntimeFeeConfig.html#burnt_gas_reward","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#accesskeycreationconfig","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#full_access_cost","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#function_call_cost","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#function_call_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#action_creation_config","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#create_account_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#deploy_contract_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#deploy_contract_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#function_call_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#function_call_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#transfer_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#stake_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#add_key_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#delete_key_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#delete_account_cost","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#datareceiptcreationconfig","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#base_cost","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#cost_per_byte","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#storageusageconfig","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#account_cost","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#data_record_cost","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#key_cost_per_byte","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#value_cost_per_byte-gas","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#code_cost_per_byte-gas","GenesisConfig/RuntimeFeeConfig/Fee.html#fee","GenesisConfig/RuntimeFeeConfig/Fee.html#send_sir","GenesisConfig/RuntimeFeeConfig/Fee.html#send_not_sir","GenesisConfig/RuntimeFeeConfig/Fee.html#execution","GenesisConfig/RuntimeFeeConfig/Fraction.html#fraction","GenesisConfig/RuntimeFeeConfig/Fraction.html#numerator","GenesisConfig/RuntimeFeeConfig/Fraction.html#denominator","GenesisConfig/VMConfig.html#vmconfig","GenesisConfig/VMConfig.html#ext_costs","GenesisConfig/VMConfig.html#grow_mem_cost","GenesisConfig/VMConfig.html#regular_op_cost","GenesisConfig/VMConfig.html#max_gas_burnt","GenesisConfig/VMConfig.html#max_stack_height","GenesisConfig/VMConfig.html#initial_memory_pages","GenesisConfig/VMConfig.html#max_memory_pages","GenesisConfig/VMConfig.html#registers_memory_limit","GenesisConfig/VMConfig.html#max_register_size","GenesisConfig/VMConfig.html#max_number_registers","GenesisConfig/VMConfig.html#max_number_logs","GenesisConfig/VMConfig.html#max_log_len","GenesisConfig/ExtCostsConfig.html#extcostsconfig","GenesisConfig/ExtCostsConfig.html#base","GenesisConfig/ExtCostsConfig.html#read_memory_base","GenesisConfig/ExtCostsConfig.html#read_memory_byte","GenesisConfig/ExtCostsConfig.html#write_memory_base","GenesisConfig/ExtCostsConfig.html#write_memory_byte","GenesisConfig/ExtCostsConfig.html#read_register_base","GenesisConfig/ExtCostsConfig.html#read_register_byte","GenesisConfig/ExtCostsConfig.html#write_register_base","GenesisConfig/ExtCostsConfig.html#write_register_byte","GenesisConfig/ExtCostsConfig.html#utf8_decoding_base","GenesisConfig/ExtCostsConfig.html#utf8_decoding_byte","GenesisConfig/ExtCostsConfig.html#utf16_decoding_base","GenesisConfig/ExtCostsConfig.html#utf16_decoding_byte","GenesisConfig/ExtCostsConfig.html#sha256_base","GenesisConfig/ExtCostsConfig.html#sha256_byte","GenesisConfig/ExtCostsConfig.html#keccak256_base","GenesisConfig/ExtCostsConfig.html#keccak256_byte","GenesisConfig/ExtCostsConfig.html#keccak512_base","GenesisConfig/ExtCostsConfig.html#keccak512_byte","GenesisConfig/ExtCostsConfig.html#log_base","GenesisConfig/ExtCostsConfig.html#log_byte","GenesisConfig/ExtCostsConfig.html#storage-api","GenesisConfig/ExtCostsConfig.html#storage_write_base","GenesisConfig/ExtCostsConfig.html#storage_write_key_byte","GenesisConfig/ExtCostsConfig.html#storage_write_value_byte","GenesisConfig/ExtCostsConfig.html#storage_write_evicted_byte","GenesisConfig/ExtCostsConfig.html#storage_read_base","GenesisConfig/ExtCostsConfig.html#storage_read_key_byte","GenesisConfig/ExtCostsConfig.html#storage_read_value_byte","GenesisConfig/ExtCostsConfig.html#storage_remove_base","GenesisConfig/ExtCostsConfig.html#storage_remove_key_byte","GenesisConfig/ExtCostsConfig.html#storage_remove_ret_value_byte","GenesisConfig/ExtCostsConfig.html#storage_has_key_base","GenesisConfig/ExtCostsConfig.html#storage_has_key_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_prefix_base","GenesisConfig/ExtCostsConfig.html#storage_iter_create_prefix_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_range_base","GenesisConfig/ExtCostsConfig.html#storage_iter_create_from_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_to_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_next_base","GenesisConfig/ExtCostsConfig.html#storage_iter_next_key_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_next_value_byte","GenesisConfig/ExtCostsConfig.html#touching_trie_node","GenesisConfig/ExtCostsConfig.html#promise-api","GenesisConfig/ExtCostsConfig.html#promise_and_base","GenesisConfig/ExtCostsConfig.html#promise_and_per_promise","GenesisConfig/ExtCostsConfig.html#promise_return","GenesisConfig/StateRecord.html#staterecord","GenesisConfig/StateRecord.html#account","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#account","GenesisConfig/StateRecord.html#data","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#data_key","GenesisConfig/StateRecord.html#value","GenesisConfig/StateRecord.html#contract","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#code","GenesisConfig/StateRecord.html#accesskey","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#public_key","GenesisConfig/StateRecord.html#access_key","GenesisConfig/StateRecord.html#postponedreceipt","GenesisConfig/StateRecord.html#receiveddata","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#data_id","GenesisConfig/StateRecord.html#data","GenesisConfig/StateRecord.html#delayedreceipt","Economics/README.html#economics","Economics/README.html#units","Economics/README.html#general-parameters","Economics/README.html#general-variables","Economics/README.html#issuance","Economics/README.html#transaction-fees","Economics/README.html#state-stake","Economics/README.html#validators","Economics/README.html#validator-selection","Economics/README.html#rewards-calculation","Economics/README.html#slashing","Economics/README.html#protocol-treasury","Standards/README.html#standards","Standards/Tokens/FungibleToken.html#fungible-token","Standards/Tokens/FungibleToken.html#summary","Standards/Tokens/FungibleToken.html#motivation","Standards/Tokens/FungibleToken.html#guide-level-explanation","Standards/Tokens/FungibleToken.html#simple-transfer","Standards/Tokens/FungibleToken.html#token-deposit-to-a-contract","Standards/Tokens/FungibleToken.html#multi-token-swap-on-dex","Standards/Tokens/FungibleToken.html#reference-level-explanation","Standards/Tokens/FungibleToken.html#drawbacks","Standards/Tokens/FungibleToken.html#future-possibilities"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":3,"title":3},"1":{"body":8,"breadcrumbs":1,"title":1},"10":{"body":68,"breadcrumbs":3,"title":1},"100":{"body":1000,"breadcrumbs":7,"title":2},"101":{"body":382,"breadcrumbs":7,"title":2},"102":{"body":112,"breadcrumbs":7,"title":2},"103":{"body":97,"breadcrumbs":7,"title":2},"104":{"body":181,"breadcrumbs":7,"title":2},"105":{"body":37,"breadcrumbs":7,"title":2},"106":{"body":0,"breadcrumbs":1,"title":1},"107":{"body":6,"breadcrumbs":1,"title":1},"108":{"body":6,"breadcrumbs":1,"title":1},"109":{"body":13,"breadcrumbs":1,"title":1},"11":{"body":206,"breadcrumbs":3,"title":1},"110":{"body":7,"breadcrumbs":1,"title":1},"111":{"body":11,"breadcrumbs":1,"title":1},"112":{"body":7,"breadcrumbs":1,"title":1},"113":{"body":6,"breadcrumbs":1,"title":1},"114":{"body":6,"breadcrumbs":1,"title":1},"115":{"body":6,"breadcrumbs":1,"title":1},"116":{"body":5,"breadcrumbs":1,"title":1},"117":{"body":11,"breadcrumbs":1,"title":1},"118":{"body":11,"breadcrumbs":1,"title":1},"119":{"body":6,"breadcrumbs":1,"title":1},"12":{"body":112,"breadcrumbs":4,"title":2},"120":{"body":7,"breadcrumbs":1,"title":1},"121":{"body":5,"breadcrumbs":1,"title":1},"122":{"body":10,"breadcrumbs":1,"title":1},"123":{"body":7,"breadcrumbs":1,"title":1},"124":{"body":5,"breadcrumbs":1,"title":1},"125":{"body":5,"breadcrumbs":1,"title":1},"126":{"body":7,"breadcrumbs":1,"title":1},"127":{"body":6,"breadcrumbs":1,"title":1},"128":{"body":7,"breadcrumbs":1,"title":1},"129":{"body":5,"breadcrumbs":1,"title":1},"13":{"body":93,"breadcrumbs":3,"title":1},"130":{"body":6,"breadcrumbs":2,"title":2},"131":{"body":6,"breadcrumbs":2,"title":1},"132":{"body":9,"breadcrumbs":2,"title":1},"133":{"body":11,"breadcrumbs":2,"title":1},"134":{"body":12,"breadcrumbs":2,"title":1},"135":{"body":11,"breadcrumbs":2,"title":1},"136":{"body":5,"breadcrumbs":2,"title":1},"137":{"body":28,"breadcrumbs":2,"title":1},"138":{"body":3,"breadcrumbs":3,"title":1},"139":{"body":12,"breadcrumbs":3,"title":1},"14":{"body":15,"breadcrumbs":6,"title":4},"140":{"body":8,"breadcrumbs":3,"title":1},"141":{"body":10,"breadcrumbs":3,"title":1},"142":{"body":6,"breadcrumbs":3,"title":1},"143":{"body":9,"breadcrumbs":3,"title":1},"144":{"body":5,"breadcrumbs":4,"title":1},"145":{"body":9,"breadcrumbs":4,"title":1},"146":{"body":10,"breadcrumbs":4,"title":1},"147":{"body":10,"breadcrumbs":4,"title":1},"148":{"body":8,"breadcrumbs":4,"title":1},"149":{"body":6,"breadcrumbs":4,"title":1},"15":{"body":0,"breadcrumbs":3,"title":1},"150":{"body":6,"breadcrumbs":4,"title":1},"151":{"body":7,"breadcrumbs":4,"title":1},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":10,"breadcrumbs":4,"title":1},"154":{"body":6,"breadcrumbs":4,"title":1},"155":{"body":5,"breadcrumbs":4,"title":1},"156":{"body":6,"breadcrumbs":4,"title":1},"157":{"body":6,"breadcrumbs":4,"title":1},"158":{"body":6,"breadcrumbs":4,"title":1},"159":{"body":6,"breadcrumbs":4,"title":1},"16":{"body":52,"breadcrumbs":1,"title":1},"160":{"body":7,"breadcrumbs":4,"title":1},"161":{"body":7,"breadcrumbs":4,"title":1},"162":{"body":5,"breadcrumbs":4,"title":1},"163":{"body":6,"breadcrumbs":4,"title":1},"164":{"body":6,"breadcrumbs":4,"title":1},"165":{"body":6,"breadcrumbs":4,"title":1},"166":{"body":6,"breadcrumbs":5,"title":2},"167":{"body":7,"breadcrumbs":5,"title":2},"168":{"body":8,"breadcrumbs":4,"title":1},"169":{"body":7,"breadcrumbs":4,"title":1},"17":{"body":62,"breadcrumbs":2,"title":2},"170":{"body":5,"breadcrumbs":4,"title":1},"171":{"body":3,"breadcrumbs":4,"title":1},"172":{"body":0,"breadcrumbs":4,"title":1},"173":{"body":2,"breadcrumbs":4,"title":1},"174":{"body":2,"breadcrumbs":4,"title":1},"175":{"body":3,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":8,"breadcrumbs":3,"title":1},"178":{"body":6,"breadcrumbs":3,"title":1},"179":{"body":10,"breadcrumbs":3,"title":1},"18":{"body":57,"breadcrumbs":3,"title":3},"180":{"body":6,"breadcrumbs":3,"title":1},"181":{"body":2,"breadcrumbs":3,"title":1},"182":{"body":12,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":8,"breadcrumbs":3,"title":1},"185":{"body":7,"breadcrumbs":3,"title":1},"186":{"body":6,"breadcrumbs":3,"title":1},"187":{"body":7,"breadcrumbs":3,"title":1},"188":{"body":0,"breadcrumbs":4,"title":1},"189":{"body":7,"breadcrumbs":4,"title":1},"19":{"body":51,"breadcrumbs":4,"title":4},"190":{"body":7,"breadcrumbs":4,"title":1},"191":{"body":6,"breadcrumbs":4,"title":1},"192":{"body":7,"breadcrumbs":4,"title":1},"193":{"body":8,"breadcrumbs":4,"title":1},"194":{"body":6,"breadcrumbs":4,"title":1},"195":{"body":6,"breadcrumbs":4,"title":1},"196":{"body":6,"breadcrumbs":4,"title":1},"197":{"body":6,"breadcrumbs":4,"title":1},"198":{"body":6,"breadcrumbs":4,"title":1},"199":{"body":7,"breadcrumbs":4,"title":1},"2":{"body":0,"breadcrumbs":1,"title":1},"20":{"body":87,"breadcrumbs":1,"title":1},"200":{"body":6,"breadcrumbs":4,"title":1},"201":{"body":7,"breadcrumbs":4,"title":1},"202":{"body":6,"breadcrumbs":4,"title":1},"203":{"body":7,"breadcrumbs":4,"title":1},"204":{"body":6,"breadcrumbs":4,"title":1},"205":{"body":7,"breadcrumbs":4,"title":1},"206":{"body":6,"breadcrumbs":4,"title":1},"207":{"body":7,"breadcrumbs":4,"title":1},"208":{"body":5,"breadcrumbs":4,"title":1},"209":{"body":6,"breadcrumbs":4,"title":1},"21":{"body":31,"breadcrumbs":2,"title":2},"210":{"body":0,"breadcrumbs":5,"title":2},"211":{"body":8,"breadcrumbs":4,"title":1},"212":{"body":9,"breadcrumbs":4,"title":1},"213":{"body":9,"breadcrumbs":4,"title":1},"214":{"body":10,"breadcrumbs":4,"title":1},"215":{"body":8,"breadcrumbs":4,"title":1},"216":{"body":9,"breadcrumbs":4,"title":1},"217":{"body":10,"breadcrumbs":4,"title":1},"218":{"body":7,"breadcrumbs":4,"title":1},"219":{"body":8,"breadcrumbs":4,"title":1},"22":{"body":31,"breadcrumbs":1,"title":1},"220":{"body":9,"breadcrumbs":4,"title":1},"221":{"body":9,"breadcrumbs":4,"title":1},"222":{"body":10,"breadcrumbs":4,"title":1},"223":{"body":8,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":4,"title":1},"225":{"body":8,"breadcrumbs":4,"title":1},"226":{"body":10,"breadcrumbs":4,"title":1},"227":{"body":10,"breadcrumbs":4,"title":1},"228":{"body":8,"breadcrumbs":4,"title":1},"229":{"body":8,"breadcrumbs":4,"title":1},"23":{"body":72,"breadcrumbs":3,"title":3},"230":{"body":8,"breadcrumbs":4,"title":1},"231":{"body":7,"breadcrumbs":4,"title":1},"232":{"body":0,"breadcrumbs":5,"title":2},"233":{"body":5,"breadcrumbs":4,"title":1},"234":{"body":7,"breadcrumbs":4,"title":1},"235":{"body":5,"breadcrumbs":4,"title":1},"236":{"body":8,"breadcrumbs":3,"title":1},"237":{"body":10,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":3,"title":1},"239":{"body":10,"breadcrumbs":3,"title":1},"24":{"body":19,"breadcrumbs":3,"title":3},"240":{"body":13,"breadcrumbs":3,"title":1},"241":{"body":8,"breadcrumbs":3,"title":1},"242":{"body":13,"breadcrumbs":3,"title":1},"243":{"body":6,"breadcrumbs":3,"title":1},"244":{"body":10,"breadcrumbs":3,"title":1},"245":{"body":5,"breadcrumbs":3,"title":1},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":10,"breadcrumbs":3,"title":1},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":12,"breadcrumbs":3,"title":1},"25":{"body":1,"breadcrumbs":2,"title":2},"250":{"body":7,"breadcrumbs":3,"title":1},"251":{"body":27,"breadcrumbs":3,"title":1},"252":{"body":23,"breadcrumbs":3,"title":1},"253":{"body":6,"breadcrumbs":3,"title":1},"254":{"body":7,"breadcrumbs":3,"title":1},"255":{"body":9,"breadcrumbs":3,"title":1},"256":{"body":31,"breadcrumbs":3,"title":1},"257":{"body":3,"breadcrumbs":1,"title":1},"258":{"body":22,"breadcrumbs":1,"title":1},"259":{"body":43,"breadcrumbs":2,"title":2},"26":{"body":0,"breadcrumbs":3,"title":1},"260":{"body":32,"breadcrumbs":2,"title":2},"261":{"body":55,"breadcrumbs":1,"title":1},"262":{"body":101,"breadcrumbs":2,"title":2},"263":{"body":135,"breadcrumbs":2,"title":2},"264":{"body":24,"breadcrumbs":1,"title":1},"265":{"body":92,"breadcrumbs":2,"title":2},"266":{"body":73,"breadcrumbs":2,"title":2},"267":{"body":65,"breadcrumbs":1,"title":1},"268":{"body":18,"breadcrumbs":2,"title":2},"269":{"body":3,"breadcrumbs":1,"title":1},"27":{"body":293,"breadcrumbs":4,"title":2},"270":{"body":0,"breadcrumbs":3,"title":2},"271":{"body":14,"breadcrumbs":2,"title":1},"272":{"body":111,"breadcrumbs":2,"title":1},"273":{"body":113,"breadcrumbs":4,"title":3},"274":{"body":51,"breadcrumbs":3,"title":2},"275":{"body":131,"breadcrumbs":4,"title":3},"276":{"body":243,"breadcrumbs":5,"title":4},"277":{"body":180,"breadcrumbs":4,"title":3},"278":{"body":47,"breadcrumbs":2,"title":1},"279":{"body":11,"breadcrumbs":3,"title":2},"28":{"body":84,"breadcrumbs":4,"title":2},"29":{"body":184,"breadcrumbs":4,"title":2},"3":{"body":0,"breadcrumbs":2,"title":2},"30":{"body":151,"breadcrumbs":3,"title":1},"31":{"body":48,"breadcrumbs":4,"title":2},"32":{"body":36,"breadcrumbs":4,"title":2},"33":{"body":99,"breadcrumbs":4,"title":2},"34":{"body":395,"breadcrumbs":3,"title":1},"35":{"body":36,"breadcrumbs":3,"title":1},"36":{"body":120,"breadcrumbs":4,"title":2},"37":{"body":56,"breadcrumbs":5,"title":3},"38":{"body":87,"breadcrumbs":4,"title":2},"39":{"body":13,"breadcrumbs":4,"title":2},"4":{"body":12,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":6,"title":4},"41":{"body":52,"breadcrumbs":5,"title":3},"42":{"body":87,"breadcrumbs":4,"title":2},"43":{"body":518,"breadcrumbs":8,"title":6},"44":{"body":127,"breadcrumbs":4,"title":2},"45":{"body":0,"breadcrumbs":2,"title":2},"46":{"body":38,"breadcrumbs":4,"title":2},"47":{"body":18,"breadcrumbs":4,"title":2},"48":{"body":46,"breadcrumbs":3,"title":1},"49":{"body":74,"breadcrumbs":3,"title":1},"5":{"body":7,"breadcrumbs":1,"title":1},"50":{"body":86,"breadcrumbs":3,"title":1},"51":{"body":19,"breadcrumbs":4,"title":2},"52":{"body":22,"breadcrumbs":4,"title":2},"53":{"body":59,"breadcrumbs":3,"title":1},"54":{"body":44,"breadcrumbs":4,"title":2},"55":{"body":45,"breadcrumbs":3,"title":1},"56":{"body":59,"breadcrumbs":3,"title":1},"57":{"body":20,"breadcrumbs":3,"title":1},"58":{"body":40,"breadcrumbs":3,"title":1},"59":{"body":22,"breadcrumbs":3,"title":1},"6":{"body":0,"breadcrumbs":3,"title":1},"60":{"body":29,"breadcrumbs":3,"title":1},"61":{"body":20,"breadcrumbs":3,"title":1},"62":{"body":13,"breadcrumbs":3,"title":1},"63":{"body":23,"breadcrumbs":3,"title":1},"64":{"body":182,"breadcrumbs":3,"title":1},"65":{"body":82,"breadcrumbs":3,"title":1},"66":{"body":23,"breadcrumbs":3,"title":1},"67":{"body":15,"breadcrumbs":4,"title":2},"68":{"body":19,"breadcrumbs":4,"title":2},"69":{"body":113,"breadcrumbs":4,"title":2},"7":{"body":13,"breadcrumbs":4,"title":2},"70":{"body":69,"breadcrumbs":4,"title":2},"71":{"body":160,"breadcrumbs":9,"title":7},"72":{"body":9,"breadcrumbs":3,"title":1},"73":{"body":45,"breadcrumbs":5,"title":2},"74":{"body":72,"breadcrumbs":5,"title":2},"75":{"body":180,"breadcrumbs":5,"title":2},"76":{"body":28,"breadcrumbs":5,"title":2},"77":{"body":193,"breadcrumbs":5,"title":2},"78":{"body":68,"breadcrumbs":5,"title":2},"79":{"body":34,"breadcrumbs":6,"title":3},"8":{"body":61,"breadcrumbs":5,"title":3},"80":{"body":251,"breadcrumbs":5,"title":2},"81":{"body":45,"breadcrumbs":5,"title":2},"82":{"body":153,"breadcrumbs":6,"title":3},"83":{"body":26,"breadcrumbs":6,"title":3},"84":{"body":27,"breadcrumbs":6,"title":3},"85":{"body":16,"breadcrumbs":5,"title":2},"86":{"body":11,"breadcrumbs":3,"title":1},"87":{"body":23,"breadcrumbs":5,"title":2},"88":{"body":63,"breadcrumbs":5,"title":2},"89":{"body":54,"breadcrumbs":5,"title":2},"9":{"body":97,"breadcrumbs":5,"title":3},"90":{"body":29,"breadcrumbs":5,"title":2},"91":{"body":38,"breadcrumbs":6,"title":3},"92":{"body":58,"breadcrumbs":6,"title":3},"93":{"body":41,"breadcrumbs":5,"title":2},"94":{"body":70,"breadcrumbs":5,"title":2},"95":{"body":94,"breadcrumbs":6,"title":3},"96":{"body":171,"breadcrumbs":5,"title":2},"97":{"body":173,"breadcrumbs":5,"title":2},"98":{"body":293,"breadcrumbs":7,"title":2},"99":{"body":502,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"Near Protocol is the scalable blockchain protocol. For the overview of the NEAR Protocol, read the following documents in numerical order. Terminology Data structures Architecture Chain specification Runtime specification Economics","breadcrumbs":"The NEAR Protocol Specification","id":"0","title":"The NEAR Protocol Specification"},"1":{"body":"Standards such as Fungible Token Standard can be found in Standards page.","breadcrumbs":"Standards","id":"1","title":"Standards"},"10":{"body":"Valid accounts: ok\nbowen\nek-2\nek.near\ncom\ngoogle.com\nbowen.google.com\nnear\nillia.cheap-accounts.near\nmax_99.near\n100\nnear2019\nover.9000\na.bro\n// Valid, but can't be created, because \"a\" is too short\nbro.a Invalid accounts: not ok // Whitespace characters are not allowed\na // Too short\n100- // Suffix separator\nbo__wen // Two separators in a row\n_illia // Prefix separator\n.near // Prefix dot separator\nnear. // Suffix dot separator\na..near // Two dot separators in a row\n$$$ // Non alphanumeric characters are not allowed\nWAT // Non lowercase characters are not allowed\nme@google.com // @ is not allowed (it was allowed in the past)\n// TOO LONG:\nabcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz","breadcrumbs":"Data Structures » Examples","id":"10","title":"Examples"},"100":{"body":"promise_create(account_id_len: u64, account_id_ptr: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) -> u64 Creates a promise that will execute a method on account with given arguments and attaches the given amount. amount_ptr point to slices of bytes representing u128. Panics If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) -> u64 Attaches the callback that is executed after promise pointed by promise_idx is complete. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_and(promise_idx_ptr: u64, promise_idx_count: u64) -> u64 Creates a new promise which completes when time all promises passed as arguments complete. Cannot be used with registers. promise_idx_ptr points to an array of u64 elements, with promise_idx_count denoting the number of elements. The array contains indices of promises that need to be waited on jointly. Panics If promise_ids_ptr + 8 * promise_idx_count extend outside the guest memory with MemoryAccessViolation; If any of the promises in the array do not correspond to existing promises panics with InvalidPromiseIndex. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_results_count() -> u64 If the current function is invoked by a callback we can access the execution results of the promises that caused the callback. This function returns the number of complete and incomplete callbacks. Note, we are only going to have incomplete callbacks once we have promise_or combinator. Normal execution If there is only one callback promise_results_count() returns 1; If there are multiple callbacks (e.g. created through promise_and) promise_results_count() returns their number. If the function was called not through the callback promise_results_count() returns 0. Panics If called in a view function panics with ProhibitedInView. promise_result(result_idx: u64, register_id: u64) -> u64 If the current function is invoked by a callback we can access the execution results of the promises that caused the callback. This function returns the result in blob format and places it into the register. Normal execution If promise result is complete and successful copies its blob into the register; If promise result is complete and failed or incomplete keeps register unused; Returns If promise result is not complete returns 0; If promise result is complete and successful returns 1; If promise result is complete and failed returns 2. Panics If result_idx does not correspond to an existing result panics with InvalidResultIndex. If copying the blob exhausts the memory limit it panics with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Current bugs We currently have two separate functions to check for result completion and copy it. promise_return(promise_idx: u64) When promise promise_idx finishes executing its result is considered to be the result of the current function. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. Current bugs The current name return_promise is inconsistent with the naming convention of Promise API. promise_batch_create(account_id_len: u64, account_id_ptr: u64) -> u64 Creates a new promise towards given account_id without any actions attached to it. Panics If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_batch_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64) -> u64 Attaches a new empty promise that is executed after promise pointed by promise_idx is complete. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_batch_action_create_account(promise_idx: u64) Appends CreateAccount action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R48 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If called in a view function panics with ProhibitedInView. promise_batch_action_deploy_contract(promise_idx: u64, code_len: u64, code_ptr: u64) Appends DeployContract action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R49 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If code_len + code_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_function_call(promise_idx: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) Appends FunctionCall action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R50 NOTE: Calling promise_batch_create and then promise_batch_action_function_call will produce the same promise as calling promise_create directly. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_transfer(promise_idx: u64, amount_ptr: u64) Appends Transfer action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R51 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_stake(promise_idx: u64, amount_ptr: u64, bls_public_key_len: u64, bls_public_key_ptr: u64) Appends Stake action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R52 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given BLS public key is not a valid BLS public key (e.g. wrong length) InvalidPublicKey. If amount_ptr + 16 or bls_public_key_len + bls_public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_add_key_with_full_access(promise_idx: u64, public_key_len: u64, public_key_ptr: u64, nonce: u64) Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R54 The access key will have FullAccess permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_add_key_with_function_call(promise_idx: u64, public_key_len: u64, public_key_ptr: u64, nonce: u64, allowance_ptr: u64, receiver_id_len: u64, receiver_id_ptr: u64, method_names_len: u64, method_names_ptr: u64) Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-156752ec7d78e7b85b8c7de4a19cbd4R54 The access key will have FunctionCall permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation If the allowance value (not the pointer) is 0, the allowance is set to None (which means unlimited allowance). And positive value represents a Some(...) allowance. Given method_names is a utf-8 string with , used as a separator. The vm will split the given string into a vector of strings. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. if method_names is not a valid utf-8 string, fails with BadUTF8. If public_key_len + public_key_ptr, allowance_ptr + 16, receiver_id_len + receiver_id_ptr or method_names_len + method_names_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_delete_key(promise_idx: u64, public_key_len: u64, public_key_ptr: u64) Appends DeleteKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R55 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_delete_account(promise_idx: u64, beneficiary_id_len: u64, beneficiary_id_ptr: u64) Appends DeleteAccount action to the batch of actions for the given promise pointed by promise_idx. Action is used to delete an account. It can be performed on a newly created account, on your own account or an account with insufficient funds to pay rent. Takes beneficiary_id to indicate where to send the remaining funds. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If beneficiary_id_len + beneficiary_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Promises API","id":"100","title":"Promises API"},"101":{"body":"Context API mostly provides read-only functions that access current information about the blockchain, the accounts (that originally initiated the chain of cross-contract calls, the immediate contract that called the current one, the account of the current contract), other important information like storage usage. Many of the below functions are currently implemented through data_read which allows to read generic context data. However, there is no reason to have data_read instead of the specific functions: data_read does not solve forward compatibility. If later we want to add another context function, e.g. executed_operations we can just declare it as a new function, instead of encoding it as DATA_TYPE_EXECUTED_OPERATIONS = 42 which is passed as the first argument to data_read; data_read does not help with renaming. If later we decide to rename signer_account_id to originator_id then one could argue that contracts that rely on data_read would not break, while contracts relying on signer_account_id() would. However the name change often means the change of the semantics, which means the contracts using this function are no longer safe to execute anyway. However there is one reason to not have data_read -- it makes API more human-like which is a general direction Wasm APIs, like WASI are moving towards to. current_account_id(register_id: u64) Saves the account id of the current contract that we execute into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; signer_account_id(register_id: u64) All contract calls are a result of some transaction that was signed by some account using some access key and submitted into a memory pool (either through the wallet using RPC or by a node itself). This function returns the id of that account. Normal operation Saves the bytes of the signer account id into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Currently we conflate originator_id and sender_id in our code base. signer_account_pk(register_id: u64) Saves the public key fo the access key that was used by the signer into the register. In rare situations smart contract might want to know the exact access key that was used to send the original transaction, e.g. to increase the allowance or manipulate with the public key. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Not implemented. predecessor_account_id(register_id: u64) All contract calls are a result of a receipt, this receipt might be created by a transaction that does function invocation on the contract or another contract as a result of cross-contract call. Normal operation Saves the bytes of the predecessor account id into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Not implemented. input(register_id: u64) Reads input to the contract call into the register. Input is expected to be in JSON-format. Normal operation If input is provided saves the bytes (potentially zero) of input into register. If input is not provided does not modify the register. Returns If input was not provided returns 0; If input was provided returns 1; If input is zero bytes returns 1, too. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; Current bugs Implemented as part of data_read. However there is no reason to have one unified function, like data_read that can be used to read all block_index() -> u64 Returns the current block height from genesis. block_timestamp() -> u64 Returns the current block timestamp (number of non-leap-nanoseconds since January 1, 1970 0:00:00 UTC). epoch_height() -> u64 Returns the current epoch height from genesis. storage_usage() -> u64 Returns the number of bytes used by the contract if it was saved to the trie as of the invocation. This includes: The data written with storage_* functions during current and previous execution; The bytes needed to store the account protobuf and the access keys of the given account.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Context API","id":"101","title":"Context API"},"102":{"body":"Accounts own certain balance; and each transaction and each receipt have certain amount of balance and prepaid gas attached to them. During the contract execution, the contract has access to the following u128 values: account_balance -- the balance attached to the given account. This includes the attached_deposit that was attached to the transaction; attached_deposit -- the balance that was attached to the call that will be immediately deposited before the contract execution starts; prepaid_gas -- the tokens attached to the call that can be used to pay for the gas; used_gas -- the gas that was already burnt during the contract execution and attached to promises (cannot exceed prepaid_gas); If contract execution fails prepaid_gas - used_gas is refunded back to signer_account_id and attached_deposit is refunded back to predecessor_account_id. The following spec is the same for all functions: account_balance(balance_ptr: u64)\nattached_deposit(balance_ptr: u64) -- writes the value into the u128 variable pointed by balance_ptr. Panics If balance_ptr + 16 points outside the memory of the guest with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Use a different name; prepaid_gas() -> u64\nused_gas() -> u64 Panics If called in a view function panics with ProhibitedInView.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Economics API","id":"102","title":"Economics API"},"103":{"body":"random_seed(register_id: u64) Returns random seed that can be used for pseudo-random number generation in deterministic way. Panics If the size of the registers exceed the set limit MemoryAccessViolation; sha256(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using sha256 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation. keccak256(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using keccak256 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation. keccak512(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using keccak512 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Math API","id":"103","title":"Math API"},"104":{"body":"value_return(value_len: u64, value_ptr: u64) Sets the blob of data as the return value of the contract. Panics If value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; panic() Terminates the execution of the program with panic GuestPanic(\"explicit guest panic\"). panic_utf8(len: u64, ptr: u64) Terminates the execution of the program with panic GuestPanic(s), where s is the given UTF-8 encoded string. Normal behavior If len == u64::MAX then treats the string as null-terminated with character '\\0'; Panics If string extends outside the memory of the guest with MemoryAccessViolation; If string is not UTF-8 returns BadUtf8. If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8. log_utf8(len: u64, ptr: u64) Logs the UTF-8 encoded string. Normal behavior If len == u64::MAX then treats the string as null-terminated with character '\\0'; Panics If string extends outside the memory of the guest with MemoryAccessViolation; If string is not UTF-8 returns BadUtf8. If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8. log_utf16(len: u64, ptr: u64) Logs the UTF-16 encoded string. len is the number of bytes in the string. See https://stackoverflow.com/a/5923961 that explains that null termination is not defined through encoding. Normal behavior If len == u64::MAX then treats the string as null-terminated with two-byte sequence of 0x00 0x00. Panics If string extends outside the memory of the guest with MemoryAccessViolation; abort(msg_ptr: u32, filename_ptr: u32, line: u32, col: u32) Special import kept for compatibility with AssemblyScript contracts. Not called by smart contracts directly, but instead called by the code generated by AssemblyScript.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Miscellaneous API","id":"104","title":"Miscellaneous API"},"105":{"body":"In the future we can have some of the registers to be on the guest. For instance a guest can tell the host that it has some pre-allocated memory that it wants to be used for the register, e.g. set_guest_register(register_id: u64, register_ptr: u64, max_register_size: u64) will assign register_id to a span of memory on the guest. Host then would also know the size of that buffer on guest and can throw a panic if there is an attempted copying that exceeds the guest register size.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Future Improvements","id":"105","title":"Future Improvements"},"106":{"body":"","breadcrumbs":"GenesisConfig","id":"106","title":"GenesisConfig"},"107":{"body":"type: u32 Protocol version that this genesis works with.","breadcrumbs":"protocol_version","id":"107","title":"protocol_version"},"108":{"body":"type: DateTime Official time of blockchain start.","breadcrumbs":"genesis_time","id":"108","title":"genesis_time"},"109":{"body":"type: String ID of the blockchain. This must be unique for every blockchain. If your testnet blockchains do not have unique chain IDs, you will have a bad time.","breadcrumbs":"chain_id","id":"109","title":"chain_id"},"11":{"body":"Data for an single account is collocated in one shard. The account data consists of the following: Balance Locked balance (for staking) Code of the contract Key-value storage of the contract. Stored in a ordered trie Access Keys Postponed ActionReceipts Received DataReceipts Balances Total account balance consists of unlocked balance and locked balance. Unlocked balance is tokens that the account can use for transaction fees, transfers staking and other operations. Locked balance is the tokens that are currently in use for staking to be a validator or to become a validator. Locked balance may become unlocked at the beginning of an epoch. See [Staking] for details. Contracts A contract (AKA smart contract) is a program in WebAssembly that belongs to a specific account. When account is created, it doesn't have a contract. A contract has to be explicitly deployed, either by the account owner, or during the account creation. A contract can be executed by anyone who calls a method on your account. A contract has access to the storage on your account. Storage Every account has its own storage. It's a persistent key-value trie. Keys are ordered in lexicographical order. The storage can only be modified by the contract on the account. Current implementation on Runtime only allows your account's contract to read from the storage, but this might change in the future and other accounts's contracts will be able to read from your storage. NOTE: Accounts are charged recurrent rent for the total storage. This includes storage of the account itself, contract code, contract storage and all access keys. Access Keys An access key grants an access to a account. Each access key on the account is identified by a unique public key. This public key is used to validate signature of transactions. Each access key contains a unique nonce to differentiate or order transactions signed with this access key. An access keys have a permission associated with it. The permission can be one of two types: Full permission. It grants full access to the account. Function call permission. It grants access to only issue function call transactions. See [Access Keys] for more details.","breadcrumbs":"Data Structures » Account","id":"11","title":"Account"},"110":{"body":"type: u32 Number of block producer seats at genesis.","breadcrumbs":"num_block_producers","id":"110","title":"num_block_producers"},"111":{"body":"type: [ValidatorId] Defines number of shards and number of validators per each shard at genesis.","breadcrumbs":"block_producers_per_shard","id":"111","title":"block_producers_per_shard"},"112":{"body":"type: [ValidatorId] Expected number of fisherman per shard.","breadcrumbs":"avg_fisherman_per_shard","id":"112","title":"avg_fisherman_per_shard"},"113":{"body":"type: bool Enable dynamic re-sharding.","breadcrumbs":"dynamic_resharding","id":"113","title":"dynamic_resharding"},"114":{"body":"type: BlockIndex, Epoch length counted in blocks.","breadcrumbs":"epoch_length","id":"114","title":"epoch_length"},"115":{"body":"type: Gas, Initial gas limit for a block","breadcrumbs":"gas_limit","id":"115","title":"gas_limit"},"116":{"body":"type: Balance, Initial gas price","breadcrumbs":"gas_price","id":"116","title":"gas_price"},"117":{"body":"type: u8 Criterion for kicking out block producers (this is a number between 0 and 100)","breadcrumbs":"block_producer_kickout_threshold","id":"117","title":"block_producer_kickout_threshold"},"118":{"body":"type: u8 Criterion for kicking out chunk producers (this is a number between 0 and 100)","breadcrumbs":"chunk_producer_kickout_threshold","id":"118","title":"chunk_producer_kickout_threshold"},"119":{"body":"type: Fraction Gas price adjustment rate","breadcrumbs":"gas_price_adjustment_rate","id":"119","title":"gas_price_adjustment_rate"},"12":{"body":"Access key provides an access for a particular account. Each access key belongs to some account and is identified by a unique (within the account) public key. Access keys are stored as account_id,public_key in a trie state. Account can have from zero to multiple access keys. pub struct AccessKey { /// The nonce for this access key. /// NOTE: In some cases the access key needs to be recreated. If the new access key reuses the /// same public key, the nonce of the new access key should be equal to the nonce of the old /// access key. It's required to avoid replaying old transactions again. pub nonce: Nonce, /// Defines permissions for this access key. pub permission: AccessKeyPermission,\n} There are 2 types of AccessKeyPermission in Near currently: FullAccess and FunctionCall. FunctionCall grants a permission to issue any action on account like DeployContract , Transfer tokens to other account, call functions FunctionCall , Stake and even delete account DeleteAccountAction . FullAccess also allow to manage access keys. AccessKeyPermission::FunctionCall limits to do only contract calls. pub enum AccessKeyPermission { FunctionCall(FunctionCallPermission), FullAccess,\n}","breadcrumbs":"Data Structures » Access Keys","id":"12","title":"Access Keys"},"120":{"body":"type: RuntimeConfig Runtime configuration (mostly economics constants).","breadcrumbs":"runtime_config","id":"120","title":"runtime_config"},"121":{"body":"type: [AccountInfo] List of initial validators.","breadcrumbs":"validators","id":"121","title":"validators"},"122":{"body":"type: Vec< StateRecord > Records in storage at genesis (get split into shards at genesis creation).","breadcrumbs":"records","id":"122","title":"records"},"123":{"body":"type: u64 Number of blocks for which a given transaction is valid","breadcrumbs":"transaction_validity_period","id":"123","title":"transaction_validity_period"},"124":{"body":"type: Fraction Developer reward percentage.","breadcrumbs":"developer_reward_percentage","id":"124","title":"developer_reward_percentage"},"125":{"body":"type: Fraction Protocol treasury percentage.","breadcrumbs":"protocol_reward_percentage","id":"125","title":"protocol_reward_percentage"},"126":{"body":"type: Fraction Maximum inflation on the total supply every epoch.","breadcrumbs":"max_inflation_rate","id":"126","title":"max_inflation_rate"},"127":{"body":"type: Balance Total supply of tokens at genesis.","breadcrumbs":"total_supply","id":"127","title":"total_supply"},"128":{"body":"type: u64 Expected number of blocks per year","breadcrumbs":"num_blocks_per_year","id":"128","title":"num_blocks_per_year"},"129":{"body":"type: AccountId Protocol treasury account","breadcrumbs":"protocol_treasury_account","id":"129","title":"protocol_treasury_account"},"13":{"body":"Grants limited permission to make FunctionCall to a specified receiver_id and methods of a particular contract with a limit of allowed balance to spend. pub struct FunctionCallPermission { /// Allowance is a balance limit to use by this access key to pay for function call gas and /// transaction fees. When this access key is used, both account balance and the allowance is /// decreased by the same value. /// `None` means unlimited allowance. /// NOTE: To change or increase the allowance, the old access key needs to be deleted and a new /// access key should be created. pub allowance: Option, /// The access key only allows transactions with the given receiver's account id. pub receiver_id: AccountId, /// A list of method names that can be used. The access key only allows transactions with the /// function call of one of the given method names. /// Empty list means any method name can be used. pub method_names: Vec,\n}","breadcrumbs":"Data Structures » AccessKeyPermission::FunctionCall","id":"13","title":"AccessKeyPermission::FunctionCall"},"130":{"body":"For the specific economic specs, refer to Economics Section .","breadcrumbs":"protocol economics","id":"130","title":"protocol economics"},"131":{"body":"The structure that holds the parameters of the runtime, mostly economics.","breadcrumbs":"GenesisConfig » RuntimeConfig","id":"131","title":"RuntimeConfig"},"132":{"body":"type: Balance The cost to store one byte of storage per block.","breadcrumbs":"GenesisConfig » storage_cost_byte_per_block","id":"132","title":"storage_cost_byte_per_block"},"133":{"body":"type: Balance Costs of different actions that need to be performed when sending and processing transaction and receipts.","breadcrumbs":"GenesisConfig » storage_cost_byte_per_block","id":"133","title":"storage_cost_byte_per_block"},"134":{"body":"type: BlockIndex The minimum number of blocks of storage rent an account has to maintain to prevent forced deletion.","breadcrumbs":"GenesisConfig » poke_threshold","id":"134","title":"poke_threshold"},"135":{"body":"type: RuntimeFeesConfig Costs of different actions that need to be performed when sending and processing transaction and receipts.","breadcrumbs":"GenesisConfig » transaction_costs","id":"135","title":"transaction_costs"},"136":{"body":"type: VMConfig , Config of wasm operations.","breadcrumbs":"GenesisConfig » wasm_config","id":"136","title":"wasm_config"},"137":{"body":"type: Balance The baseline cost to store account_id of short length per block. The original formula in NEP#0006 is 1,000 / (3 ^ (account_id.length - 2)) for cost per year. This value represents 1,000 above adjusted to use per block","breadcrumbs":"GenesisConfig » account_length_baseline_cost_per_block","id":"137","title":"account_length_baseline_cost_per_block"},"138":{"body":"Economic parameters for runtime","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeesConfig","id":"138","title":"RuntimeFeesConfig"},"139":{"body":"type: Fee Describes the cost of creating an action receipt, ActionReceipt, excluding the actual cost of actions.","breadcrumbs":"GenesisConfig » RuntimeConfig » action_receipt_creation_config","id":"139","title":"action_receipt_creation_config"},"14":{"body":"If account has no access keys attached it means that it has no owner who can run transactions from its behalf. However, if such accounts has code it can be invoked by other accounts and contracts.","breadcrumbs":"Data Structures » Account without access keys","id":"14","title":"Account without access keys"},"140":{"body":"type: DataReceiptCreationConfig Describes the cost of creating a data receipt, DataReceipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_receipt_creation_config","id":"140","title":"data_receipt_creation_config"},"141":{"body":"type: ActionCreationConfig Describes the cost of creating a certain action, Action. Includes all variants.","breadcrumbs":"GenesisConfig » RuntimeConfig » action_creation_config","id":"141","title":"action_creation_config"},"142":{"body":"type: StorageUsageConfig Describes fees for storage rent","breadcrumbs":"GenesisConfig » RuntimeConfig » storage_usage_config","id":"142","title":"storage_usage_config"},"143":{"body":"type: Fraction Fraction of the burnt gas to reward to the contract account for execution.","breadcrumbs":"GenesisConfig » RuntimeConfig » burnt_gas_reward","id":"143","title":"burnt_gas_reward"},"144":{"body":"Describes the cost of creating an access key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » AccessKeyCreationConfig","id":"144","title":"AccessKeyCreationConfig"},"145":{"body":"type: Fee Base cost of creating a full access access-key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » full_access_cost","id":"145","title":"full_access_cost"},"146":{"body":"type: Fee Base cost of creating an access-key restricted to specific functions.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost","id":"146","title":"function_call_cost"},"147":{"body":"type: Fee Cost per byte of method_names of creating a restricted access-key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost_per_byte","id":"147","title":"function_call_cost_per_byte"},"148":{"body":"Describes the cost of creating a specific action, Action. Includes all variants.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » action_creation_config","id":"148","title":"action_creation_config"},"149":{"body":"type: Fee Base cost of creating an account.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » create_account_cost","id":"149","title":"create_account_cost"},"15":{"body":"","breadcrumbs":"Data Structures » Transaction","id":"15","title":"Transaction"},"150":{"body":"type: Fee Base cost of deploying a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » deploy_contract_cost","id":"150","title":"deploy_contract_cost"},"151":{"body":"type: Fee Cost per byte of deploying a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » deploy_contract_cost_per_byte","id":"151","title":"deploy_contract_cost_per_byte"},"152":{"body":"type: Fee Base cost of calling a function.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost","id":"152","title":"function_call_cost"},"153":{"body":"type: Fee Cost per byte of method name and arguments of calling a function.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost_per_byte","id":"153","title":"function_call_cost_per_byte"},"154":{"body":"type: Fee Base cost of making a transfer.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » transfer_cost","id":"154","title":"transfer_cost"},"155":{"body":"type: Fee Base cost of staking.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » stake_cost","id":"155","title":"stake_cost"},"156":{"body":"type: AccessKeyCreationConfig Base cost of adding a key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » add_key_cost:","id":"156","title":"add_key_cost:"},"157":{"body":"type: Fee Base cost of deleting a key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » delete_key_cost","id":"157","title":"delete_key_cost"},"158":{"body":"type: Fee Base cost of deleting an account.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » delete_account_cost","id":"158","title":"delete_account_cost"},"159":{"body":"Describes the cost of creating a data receipt, DataReceipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » DataReceiptCreationConfig","id":"159","title":"DataReceiptCreationConfig"},"16":{"body":"Near node consists roughly of a blockchain layer and a runtime layer. These layers are designed to be independent from each other: the blockchain layer can in theory support runtime that processes transactions differently, has a different virtual machine (e.g. RISC-V), has different fees; on the other hand the runtime is oblivious to where the transactions are coming from. It is not aware whether the blockchain it runs on is sharded, what consensus it uses, and whether it runs as part of a blockchain at all. The blockchain layer and the runtime layer share the following components and invariants:","breadcrumbs":"Architecture","id":"16","title":"Architecture"},"160":{"body":"type: Fee Base cost of creating a data receipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » base_cost","id":"160","title":"base_cost"},"161":{"body":"type: Fee Additional cost per byte sent.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » cost_per_byte","id":"161","title":"cost_per_byte"},"162":{"body":"Describes cost of storage per block","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » StorageUsageConfig","id":"162","title":"StorageUsageConfig"},"163":{"body":"type: Gas Base storage usage for an account","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » account_cost","id":"163","title":"account_cost"},"164":{"body":"type: Gas Base cost for a k/v record","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » data_record_cost","id":"164","title":"data_record_cost"},"165":{"body":"type: Gas Cost per byte of key","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » key_cost_per_byte:","id":"165","title":"key_cost_per_byte:"},"166":{"body":"type: Gas Cost per byte of value","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » value_cost_per_byte: Gas","id":"166","title":"value_cost_per_byte: Gas"},"167":{"body":"type: Gas Cost per byte of contract code","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » code_cost_per_byte: Gas","id":"167","title":"code_cost_per_byte: Gas"},"168":{"body":"Costs associated with an object that can only be sent over the network (and executed by the receiver).","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » Fee","id":"168","title":"Fee"},"169":{"body":"Fee for sending an object from the sender to itself, guaranteeing that it does not leave","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » send_sir","id":"169","title":"send_sir"},"17":{"body":"Transactions and receipts are a fundamental concept in Near Protocol. Transactions represent actions requested by the blockchain user, e.g. send assets, create account, execute a method, etc. Receipts, on the other hand is an internal structure; think of a receipt as a message which is used inside a message-passing system. Transactions are created outside the Near Protocol node, by the user who sends them via RPC or network communication. Receipts are created by the runtime from transactions or as the result of processing other receipts. Blockchain layer cannot create or process transactions and receipts, it can only manipulate them by passing them around and feeding them to a runtime.","breadcrumbs":"Transactions and Receipts","id":"17","title":"Transactions and Receipts"},"170":{"body":"Fee for sending an object potentially across the shards.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » send_not_sir","id":"170","title":"send_not_sir"},"171":{"body":"Fee for executing the object.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » execution","id":"171","title":"execution"},"172":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » Fraction","id":"172","title":"Fraction"},"173":{"body":"type: u64","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » numerator","id":"173","title":"numerator"},"174":{"body":"type: u64","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » denominator","id":"174","title":"denominator"},"175":{"body":"Config of wasm operations.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig","id":"175","title":"VMConfig"},"176":{"body":"type: ExtCostsConfig Costs for runtime externals","breadcrumbs":"GenesisConfig » RuntimeConfig » ext_costs:","id":"176","title":"ext_costs:"},"177":{"body":"type: u32 Gas cost of a growing memory by single page.","breadcrumbs":"GenesisConfig » RuntimeConfig » grow_mem_cost","id":"177","title":"grow_mem_cost"},"178":{"body":"type: u32 Gas cost of a regular operation.","breadcrumbs":"GenesisConfig » RuntimeConfig » regular_op_cost","id":"178","title":"regular_op_cost"},"179":{"body":"type: Gas Max amount of gas that can be used, excluding gas attached to promises.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_gas_burnt","id":"179","title":"max_gas_burnt"},"18":{"body":"Similar to Ethereum, Near Protocol is an account-based system. Which means that each blockchain user is roughly associated with one or several accounts (there are exceptions though, when users share an account and are separated through the access keys). The runtime is essentially a complex set of rules on what to do with accounts based on the information from the transactions and the receipts. It is therefore deeply aware of the concept of account. Blockchain layer however is mostly aware of the accounts through the trie (see below) and the validators (see below). Outside these two it does not operate on the accounts directly.","breadcrumbs":"Account-Based System","id":"18","title":"Account-Based System"},"180":{"body":"type: u32 How tall the stack is allowed to grow?","breadcrumbs":"GenesisConfig » RuntimeConfig » max_stack_height","id":"180","title":"max_stack_height"},"181":{"body":"type: u32","breadcrumbs":"GenesisConfig » RuntimeConfig » initial_memory_pages","id":"181","title":"initial_memory_pages"},"182":{"body":"type: u32 The initial number of memory pages. What is the maximal memory pages amount is allowed to have for a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_memory_pages","id":"182","title":"max_memory_pages"},"183":{"body":"type: u64 Limit of memory used by registers.","breadcrumbs":"GenesisConfig » RuntimeConfig » registers_memory_limit","id":"183","title":"registers_memory_limit"},"184":{"body":"type: u64 Maximum number of bytes that can be stored in a single register.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_register_size","id":"184","title":"max_register_size"},"185":{"body":"type: u64 Maximum number of registers that can be used simultaneously.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_number_registers","id":"185","title":"max_number_registers"},"186":{"body":"type: u64 Maximum number of log entries.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_number_logs","id":"186","title":"max_number_logs"},"187":{"body":"type: u64 Maximum length of a single log, in bytes.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_log_len","id":"187","title":"max_log_len"},"188":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » ExtCostsConfig","id":"188","title":"ExtCostsConfig"},"189":{"body":"type: Gas Base cost for calling a host function.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » base","id":"189","title":"base"},"19":{"body":"Every account at NEAR belongs to some shard. All the information related to this account also belongs to the same shard. The information includes: Balance Locked balance (for staking) Code of the contract Key-value storage of the contract All Access Keys Runtime assumes, it's the only information that is available for the contract execution. While other accounts may belong to the same shards, the Runtime never uses or provides them during contract execution. We can just assume that every account belongs to its own shard. So there is no reason to intentionally try to collocate accounts.","breadcrumbs":"Assume every account belongs to its own shard","id":"19","title":"Assume every account belongs to its own shard"},"190":{"body":"type: Gas Base cost for guest memory read","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_memory_base","id":"190","title":"read_memory_base"},"191":{"body":"type: Gas Cost for guest memory read","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_memory_byte","id":"191","title":"read_memory_byte"},"192":{"body":"type: Gas Base cost for guest memory write","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_memory_base","id":"192","title":"write_memory_base"},"193":{"body":"type: Gas Cost for guest memory write per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_memory_byte","id":"193","title":"write_memory_byte"},"194":{"body":"type: Gas Base cost for reading from register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_register_base","id":"194","title":"read_register_base"},"195":{"body":"type: Gas Cost for reading byte from register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_register_byte","id":"195","title":"read_register_byte"},"196":{"body":"type: Gas Base cost for writing into register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_register_base","id":"196","title":"write_register_base"},"197":{"body":"type: Gas Cost for writing byte into register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_register_byte","id":"197","title":"write_register_byte"},"198":{"body":"type: Gas Base cost of decoding utf8.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf8_decoding_base","id":"198","title":"utf8_decoding_base"},"199":{"body":"type: Gas Cost per bye of decoding utf8.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf8_decoding_byte","id":"199","title":"utf8_decoding_byte"},"2":{"body":"","breadcrumbs":"Terminology","id":"2","title":"Terminology"},"20":{"body":"Near Protocol is a stateful blockchain -- there is a state associated with each account and the user actions performed through transactions mutate that state. The state then is stored as a trie, and both the blockchain layer and the runtime layer are aware of this technical detail. The blockchain layer manipulates the trie directly. It partitions the trie between the shards to distribute the load. It synchronizes the trie between the nodes, and eventually it is responsible for maintaining the consistency of the trie between the nodes through its consensus mechanism and other game-theoretic methods. The runtime layer is also aware that the storage that it uses to perform the operations on is a trie. In general it does not have to know this technical detail and in theory we could have abstracted out the trie as a generic key-value storage. However, we allow some trie-specific operations that we expose to the smart contract developers so that they utilize Near Protocol to its maximum efficiency.","breadcrumbs":"Trie","id":"20","title":"Trie"},"200":{"body":"type: Gas Base cost of decoding utf16.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf16_decoding_base","id":"200","title":"utf16_decoding_base"},"201":{"body":"type: Gas Cost per bye of decoding utf16.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf16_decoding_byte","id":"201","title":"utf16_decoding_byte"},"202":{"body":"type: Gas Cost of getting sha256 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » sha256_base","id":"202","title":"sha256_base"},"203":{"body":"type: Gas Cost of getting sha256 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » sha256_byte","id":"203","title":"sha256_byte"},"204":{"body":"type: Gas Cost of getting keccak256 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak256_base","id":"204","title":"keccak256_base"},"205":{"body":"type: Gas Cost of getting keccak256 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak256_byte","id":"205","title":"keccak256_byte"},"206":{"body":"type: Gas Cost of getting keccak512 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak512_base","id":"206","title":"keccak512_base"},"207":{"body":"type: Gas Cost of getting keccak512 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak512_byte","id":"207","title":"keccak512_byte"},"208":{"body":"type: Gas Cost for calling logging.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » log_base","id":"208","title":"log_base"},"209":{"body":"type: Gas Cost for logging per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » log_byte","id":"209","title":"log_byte"},"21":{"body":"Even though tokens is a fundamental concept of the blockchain, it is neatly encapsulated inside the runtime layer together with the gas, fees, and rewards. The only way the blockchain layer is aware of the tokens and the gas is through the computation of the exchange rate and the inflation which is based strictly on the block production mechanics.","breadcrumbs":"Tokens and gas","id":"21","title":"Tokens and gas"},"210":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » Storage API","id":"210","title":"Storage API"},"211":{"body":"type: Gas Storage trie write key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_base","id":"211","title":"storage_write_base"},"212":{"body":"type: Gas Storage trie write key per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_key_byte","id":"212","title":"storage_write_key_byte"},"213":{"body":"type: Gas Storage trie write value per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_value_byte","id":"213","title":"storage_write_value_byte"},"214":{"body":"type: Gas Storage trie write cost per byte of evicted value.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_evicted_byte","id":"214","title":"storage_write_evicted_byte"},"215":{"body":"type: Gas Storage trie read key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_base","id":"215","title":"storage_read_base"},"216":{"body":"type: Gas Storage trie read key per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_key_byte","id":"216","title":"storage_read_key_byte"},"217":{"body":"type: Gas Storage trie read value cost per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_value_byte","id":"217","title":"storage_read_value_byte"},"218":{"body":"type: Gas Remove key from trie base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_base","id":"218","title":"storage_remove_base"},"219":{"body":"type: Gas Remove key from trie per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_key_byte","id":"219","title":"storage_remove_key_byte"},"22":{"body":"Both the blockchain layer and the runtime layer are aware of a special group of participants who are responsible for maintaining the integrity of the Near Protocol. These participants are associated with the accounts and are rewarded accordingly. The reward part is what the runtime layer is aware of, while everything around the orchestration of the validators is inside the blockchain layer.","breadcrumbs":"Validators","id":"22","title":"Validators"},"220":{"body":"type: Gas Remove key from trie ret value byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_ret_value_byte","id":"220","title":"storage_remove_ret_value_byte"},"221":{"body":"type: Gas Storage trie check for key existence cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_has_key_base","id":"221","title":"storage_has_key_base"},"222":{"body":"type: Gas Storage trie check for key existence per key byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_has_key_byte","id":"222","title":"storage_has_key_byte"},"223":{"body":"type: Gas Create trie prefix iterator cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_prefix_base","id":"223","title":"storage_iter_create_prefix_base"},"224":{"body":"type: Gas Create trie prefix iterator cost per byte.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_prefix_byte","id":"224","title":"storage_iter_create_prefix_byte"},"225":{"body":"type: Gas Create trie range iterator cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_range_base","id":"225","title":"storage_iter_create_range_base"},"226":{"body":"type: Gas Create trie range iterator cost per byte of from key.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_from_byte","id":"226","title":"storage_iter_create_from_byte"},"227":{"body":"type: Gas Create trie range iterator cost per byte of to key.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_to_byte","id":"227","title":"storage_iter_create_to_byte"},"228":{"body":"type: Gas Trie iterator per key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_base","id":"228","title":"storage_iter_next_base"},"229":{"body":"type: Gas Trie iterator next key byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_key_byte","id":"229","title":"storage_iter_next_key_byte"},"23":{"body":"Interestingly, the following concepts are for the blockchain layer only and the runtime layer is not aware of them: Sharding -- the runtime layer does not know that it is being used in a sharded blockchain, e.g. it does not know that the trie it works on is only a part of the overall blockchain state; Blocks or chunks -- the runtime does not know that the receipts that it processes constitute a chunk and that the output receipts will be used in other chunks. From the runtime perspective it consumes and outputs batches of transactions and receipts; Consensus -- the runtime does not know how consistency of the state is maintained; Communication -- the runtime don't know anything about the current network topology. Receipt has only a receiver_id (a recipient account), but knows nothing about the destination shard, so it's a responsibility of a blockchain layer to route a particular receipt.","breadcrumbs":"Blockchain Layer Concepts","id":"23","title":"Blockchain Layer Concepts"},"230":{"body":"type: Gas Trie iterator next key byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_value_byte","id":"230","title":"storage_iter_next_value_byte"},"231":{"body":"type: Gas Cost per touched trie node","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » touching_trie_node","id":"231","title":"touching_trie_node"},"232":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » Promise API","id":"232","title":"Promise API"},"233":{"body":"type: Gas Cost for calling promise_and","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_and_base","id":"233","title":"promise_and_base"},"234":{"body":"type: Gas Cost for calling promise_and for each promise","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_and_per_promise","id":"234","title":"promise_and_per_promise"},"235":{"body":"type: Gas Cost for calling promise_return","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_return","id":"235","title":"promise_return"},"236":{"body":"type: Enum Enum that describes one of the records in the state storage.","breadcrumbs":"GenesisConfig » RuntimeConfig » StateRecord","id":"236","title":"StateRecord"},"237":{"body":"type: Unnamed struct Record that contains account information for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Account","id":"237","title":"Account"},"238":{"body":"type: AccountId The account ID of the account.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"238","title":"account_id"},"239":{"body":"type: Account The account structure. Serialized to JSON. U128 types are serialized to strings.","breadcrumbs":"GenesisConfig » RuntimeConfig » account","id":"239","title":"account"},"24":{"body":"Fees and rewards -- fees and rewards are neatly encapsulated in the runtime layer. The blockchain layer, however has an indirect knowledge of them through the computation of the tokens-to-gas exchange rate and the inflation.","breadcrumbs":"Runtime Layer Concepts","id":"24","title":"Runtime Layer Concepts"},"240":{"body":"type: Unnamed struct Record that contains key-value data record for a contract at the given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Data","id":"240","title":"Data"},"241":{"body":"type: AccountId The account ID of the contract that contains this data record.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"241","title":"account_id"},"242":{"body":"type: Vec Data Key serialized in Base64 format. NOTE: Key doesn't contain the data separator.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_key","id":"242","title":"data_key"},"243":{"body":"type: Vec Value serialized in Base64 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » value","id":"243","title":"value"},"244":{"body":"type: Unnamed struct Record that contains a contract code for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Contract","id":"244","title":"Contract"},"245":{"body":"type: AccountId The account ID of that has the contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"245","title":"account_id"},"246":{"body":"type: Vec WASM Binary contract code serialized in Base64 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » code","id":"246","title":"code"},"247":{"body":"type: Unnamed struct Record that contains an access key for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » AccessKey","id":"247","title":"AccessKey"},"248":{"body":"type: AccountId The account ID of the access key owner.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"248","title":"account_id"},"249":{"body":"type: [PublicKey] The public key for the access key in JSON-friendly string format. E.g. ed25519:5JFfXMziKaotyFM1t4hfzuwh8GZMYCiKHfqw1gTEWMYT","breadcrumbs":"GenesisConfig » RuntimeConfig » public_key","id":"249","title":"public_key"},"25":{"body":"TBD","breadcrumbs":"Chain Specification","id":"25","title":"Chain Specification"},"250":{"body":"type: AccessKey The access key serialized in JSON format.","breadcrumbs":"GenesisConfig » RuntimeConfig » access_key","id":"250","title":"access_key"},"251":{"body":"type: Box< Receipt > Record that contains a receipt that was postponed on a shard (e.g. it's waiting for incoming data). The receipt is in JSON-friendly format. The receipt can only be an ActionReceipt. NOTE: Box is used to decrease fixed size of the entire enum.","breadcrumbs":"GenesisConfig » RuntimeConfig » PostponedReceipt","id":"251","title":"PostponedReceipt"},"252":{"body":"type: Unnamed struct Record that contains information about received data for some action receipt, that is not yet received or processed for a given account ID. The data is received using DataReceipt before. See Receipts for details.","breadcrumbs":"GenesisConfig » RuntimeConfig » ReceivedData","id":"252","title":"ReceivedData"},"253":{"body":"type: AccountId The account ID of the receiver of the data.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"253","title":"account_id"},"254":{"body":"type: [CryptoHash] Data ID of the data in base58 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_id","id":"254","title":"data_id"},"255":{"body":"type: Option> Optional data encoded as base64 format or null in JSON.","breadcrumbs":"GenesisConfig » RuntimeConfig » data","id":"255","title":"data"},"256":{"body":"type: Box< Receipt > Record that contains a receipt that was delayed on a shard. It means the shard was overwhelmed with receipts and it processes receipts from backlog. The receipt is in JSON-friendly format. See Delayed Receipts for details. NOTE: Box is used to decrease fixed size of the entire enum.","breadcrumbs":"GenesisConfig » RuntimeConfig » DelayedReceipt","id":"256","title":"DelayedReceipt"},"257":{"body":"This is under heavy development","breadcrumbs":"Economics","id":"257","title":"Economics"},"258":{"body":"Name Value yoctoNEAR smallest undividable amount of native currency NEAR . NEAR 10**24 yoctoNEAR block smallest on-chain unit of time gas unit to measure usage of blockchain","breadcrumbs":"Units","id":"258","title":"Units"},"259":{"body":"Name Value INITIAL_SUPPLY 10**33 yoctoNEAR NEAR 10**24 yoctoNEAR MIN_GAS_PRICE 10**5 yoctoNEAR REWARD_PCT_PER_YEAR 0.05 BLOCK_TIME 1 second EPOCH_LENGTH 43,200 blocks EPOCHS_A_YEAR 730 epochs POKE_THRESHOLD 500 blocks INITIAL_MAX_STORAGE 10 * 2**40 bytes == 10 TB TREASURY_PCT 0.1 TREASURY_ACCOUNT_ID treasury CONTRACT_PCT 0.3 INVALID_STATE_SLASH_PCT 0.05 ADJ_FEE 0.001 TOTAL_SEATS 100","breadcrumbs":"General Parameters","id":"259","title":"General Parameters"},"26":{"body":"","breadcrumbs":"Chain specification » Consensus","id":"26","title":"Consensus"},"260":{"body":"Name Description Initial value totalSupply[t] Total supply of NEAR at given epoch[t] INITIAL_SUPPLY gasPrice[t] The cost of 1 unit of gas in NEAR tokens (see Transaction Fees section below) MIN_GAS_PRICE storageAmountPerByte[t] keeping constant, INITIAL_SUPPLY / INITIAL_MAX_STORAGE ~9.09 * 10**19 yoctoNEAR","breadcrumbs":"General Variables","id":"260","title":"General Variables"},"261":{"body":"The protocol sets a ceiling for the maximum issuance of tokens, and dynamically decreases this issuance depending on the amount of total fees in the system. Name Description reward[t] totalSupply[t] * ((1 - REWARD_PCT_PER_YEAR) ** (1/EPOCHS_A_YEAR) - 1) epochFee[t] sum([(1 - DEVELOPER_PCT_PER_YEAR) * block.txFee + block.stateFee for block in epoch[t]]) issuance[t] The amount of token issued at a certain epoch[t], issuance[t] = reward[t] - epochFee[t] Where totalSupply[t] is the total number of tokens in the system at a given time t . If epochFee[t] > reward[t] the issuance is negative, thus the totalSupply[t] decreases in given epoch.","breadcrumbs":"Issuance","id":"261","title":"Issuance"},"262":{"body":"Each transaction before inclusion must buy gas enough to cover the cost of bandwidth and execution. Gas unifies execution and bytes of bandwidth usage of blockchain. Each WASM instruction or pre-compiled function gets assigned an amount of gas based on measurements on common-denominator computer. Same goes for weighting the used bandwidth based on general unified costs. For specific gas mapping numbers see ??? . Gas is priced dynamically in NEAR tokens. At each block t, we update gasPrice[t] = gasPrice[t - 1] * (gasUsed[t - 1] / gasLimit[t - 1] - 0.5) * ADJ_FEE. Where gasUsed[t] = sum([sum([gas(tx) for tx in chunk]) for chunk in block[t]]). gasLimit[t] is defined as gasLimit[t] = gasLimit[t - 1] + validatorGasDiff[t - 1], where validatorGasDiff is parameter with which each chunk producer can either increase or decrease gas limit based on how long it to execute the previous chunk. validatorGasDiff[t] can be only within ±0.1% of gasLimit[t] and only if gasUsed[t - 1] > 0.9 * gasLimit[t - 1].","breadcrumbs":"Transaction Fees","id":"262","title":"Transaction Fees"},"263":{"body":"Amount of NEAR on the account represents right for this account to take portion of the blockchain's overall global state. Transactions fail if account doesn't have enough balance to cover the storage required for given account. def check_storage_cost(account): # Compute requiredAmount given size of the account. requiredAmount = sizeOf(account) * storageAmountPerByte return Ok() if account.amount + account.locked < requiredAmount else Error(requiredAmount) # Check when transaction is received to verify that it is valid.\ndef verify_transaction(tx, signer_account): # ... # Updates signer's account with the amount it will have after executing this tx. update_post_amount(signer_account, tx) result = check_storage_cost(signer_account) # If enough balance OR account is been deleted by the owner. if not result.ok() or DeleteAccount(tx.signer_id) in tx.actions: assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err()) # After account touched / changed, we check it still has enough balance to cover it's storage.\ndef on_account_change(block_height, account): # ... execute transaction / receipt changes ... # Validate post-condition and revert if it fails. result = check_storage_cost(sender_account) if not result.ok(): assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err()) Where sizeOf(account) includes size of account_id, account structure and size of all the data stored under the account. Account can end up with not enough balance in case it gets slashed. Account will become unusable as all orginating transactions will fail (including deletion). The only way to recover it in this case is by sending extra funds from a different accounts.","breadcrumbs":"State Stake","id":"263","title":"State Stake"},"264":{"body":"NEAR validators provide their resources in exchange for a reward epochReward[t], where [t] represents the considered epoch Name Description epochReward[t] = coinbaseReward[t] + epochFee[t] coinbaseReward[t] The maximum inflation per epoch[t], as a function of REWARD_PCT_PER_YEAR / EPOCHS_A_YEAR","breadcrumbs":"Validators","id":"264","title":"Validators"},"265":{"body":"Name Description proposals The array of all existing validators, minus the ones which were online less than ONLINE_THRESHOLD, plus new validators INCLUSION_FEE The arbitrary transaction fee that new validators offer to be included in the proposals, to mitigate censorship risks by existing validators ONLINE_THRESHOLD 0.9 epoch[T] The epoch when validator[v] is selected from the proposals auction array seatPrice The minimum stake needed to become validator in epoch[T] stake[v] The amount in NEAR tokens staked by validator[v] during the auction at the end of epoch[T-2], minus INCLUSION_FEE shard[v] The shard is randomly assigned to validator[v] at epoch[T-1], such that its node can download and sync with its state numSeats Number of seats assigned to validator[v], calculated from stake[v]/seatPrice validatorAssignments The resulting ordered array of all proposals with a stake higher than seatPrice validatorAssignments is then split in two groups: block/chunk producers and hidden validators.","breadcrumbs":"Validator Selection","id":"265","title":"Validator Selection"},"266":{"body":"Name Value epochFee[t] sum([(1 - DEVELOPER_PCT_PER_YEAR) * txFee[i] + stateFee[i] for i in epoch[t]]), where [i] represents any considered block within the epoch[t] Total reward every epoch t is equal to: reward[t] = totalSupply * ((1 + REWARD_PCT_PER_YEAR) ** (1 / EPOCHS_A_YEAR) - 1) Uptime of a specific validator is computed: pct_online[t][j] = (num_produced_blocks[t][j] / expected_produced_blocks[t][j] + num_produced_chunks[t][j] / expected_produced_chunks[t][j]) / 2\nif pct_online > ONLINE_THRESHOLD: uptime[t][j] = (pct_online[t][j] - ONLINE_THRESHOLD) / (1 - ONLINE_THRESHOLD)\nelse: uptime[t][j] = 0 Where expected_produced_blocks and expected_produced_chunks is the number of blocks and chunks respectively that is expected to be produced by given validator j in the epoch t. The specific validator[t][j] reward for epoch t is then proportional to the fraction of stake of this validator from total stake: validator[t][j] = (uptime[t][j] * stake[t][j] * reward[t]) / total_stake[t]","breadcrumbs":"Rewards Calculation","id":"266","title":"Rewards Calculation"},"267":{"body":"ChunkProofs # Check that chunk is invalid, because the proofs in header don't match the body.\ndef chunk_proofs_condition(chunk): # TODO # At the end of the epoch, run update validators and\n# determine how much to slash validators.\ndef end_of_epoch_update_validators(validators): # ... for validator in validators: if validator.is_slashed: validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake ChunkState # Check that chunk header post state root is invalid, # because the execution of previous chunk doesn't lead to it.\ndef chunk_state_condition(prev_chunk, prev_state, chunk_header): # TODO # At the end of the epoch, run update validators and\n# determine how much to slash validators.\ndef end_of_epoch(..., validators): # ... for validator in validators: if validator.is_slashed: validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake","breadcrumbs":"Slashing","id":"267","title":"Slashing"},"268":{"body":"Treasury account TREASURY_ACCOUNT_ID receives fraction of reward every epoch t: # At the end of the epoch, update treasury\ndef end_of_epoch(..., reward): # ... accounts[TREASURY_ACCOUNT_ID].amount = TREASURY_PCT * reward","breadcrumbs":"Protocol Treasury","id":"268","title":"Protocol Treasury"},"269":{"body":"Fungible Token Standard","breadcrumbs":"Standards","id":"269","title":"Standards"},"27":{"body":"For the purpose of maintaining consensus, transactions are grouped into blocks . There is a single preconfigured block \\(G\\) called genesis block . Every block except \\(G\\) has a link pointing to the previous block \\(prev(B)\\), where \\(B\\) is the block, and \\(G\\) is reachable from every block by following those links (that is, there are no cycles). The links between blocks give rise to a partial order: for blocks \\(A\\) and \\(B\\), \\(A < B\\) means that \\(A \\ne B\\) and \\(A\\) is reachable from \\(B\\) by following links to previous blocks, and \\(A \\le B\\) means that \\(A < B\\) or \\(A = B\\). The relations \\(>\\) and \\(\\ge\\) are defined as the reflected versions of \\(<\\) and \\(\\le\\), respectively. Finally, \\(A \\sim B\\) means that either \\(A < B\\), \\(A = B\\) or \\(A > B\\), and \\(A \\nsim B\\) means the opposite. A chain \\(chain(T)\\) is a set of blocks reachable from block \\(T\\), which is called its tip . That is, \\(chain(T) = \\{B | B \\le T\\}\\). For any blocks \\(A\\) and \\(B\\), there is a chain that both \\(A\\) and \\(B\\) belong to iff \\(A \\sim B\\). In this case, \\(A\\) and \\(B\\) are said to be on the same chain . Each block has an integer height \\(h(B)\\). It is guaranteed that block heights are monotonic (that is, for any block \\(B \\ne G\\), \\(h(B) > h(prev(B))\\)), but they need not be consecutive. Also, \\(h(G)\\) may not be zero. Each node keeps track of a valid block with the largest height it knows about, which is called its head . Blocks are grouped into epochs . In a chain, the set of blocks that belongs to some epoch forms a contiguous range: if blocks \\(A\\) and \\(B\\) such that \\(A < B\\) belong to the same epoch, then every block \\(X\\) such that \\(A < X < B\\) also belongs to that epoch. Epochs can be identified by sequential indices: \\(G\\) belongs to an epoch with index \\(0\\), and for every other block \\(B\\), the index of its epoch is either the same as that of \\(prev(B)\\), or one greater. Each epoch is associated with a set of block producers that are validating blocks in that epoch, as well as an assignment of block heights to block producers that are responsible for producing a block at that height. A block producer responsible for producing a block at height \\(h\\) is called block proposer at \\(h\\) . This information (the set and the assignment) for an epoch with index \\(i \\ge 2\\) is determined by the last block of the epoch with index \\(i-2\\). For epochs with indices \\(0\\) and \\(1\\), this information is preconfigured. Therefore, if two chains share the last block of some epoch, they will have the same set and the same assignment for the next two epochs, but not necessarily for any epoch after that. The consensus protocol defines a notion of finality . Informally, if a block \\(B\\) is final, any future final blocks may only be built on top of \\(B\\). Therefore, transactions in \\(B\\) and preceding blocks are never going to be reversed. Finality is not a function of a block itself, rather, a block may be final or not final in some chain it is a member of. Specifically, \\(final(B, T)\\), where \\(B \\le T\\), means that \\(B\\) is final in \\(chain(T)\\). A block that is final in a chain is final in all of its extensions: specifically, if \\(final(B, T)\\) is true, then \\(final(B, T')\\) is also true for all \\(T' \\ge T\\).","breadcrumbs":"Chain specification » Definitions and notation","id":"27","title":"Definitions and notation"},"270":{"body":"","breadcrumbs":"Standards » Fungible Token","id":"270","title":"Fungible Token"},"271":{"body":"A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.","breadcrumbs":"Standards » Summary","id":"271","title":"Summary"},"272":{"body":"NEAR Protocol uses an asynchronous sharded Runtime. This means the following: Storage for different contracts and accounts can be located on the different shards. Two contracts can be executed at the same time in different shards. While this increases the transaction throughput linearly with the number of shards, it also creates some challenges for cross-contract development. For example, if one contract wants to query some information from the state of another contract (e.g. current balance), by the time the first contract receive the balance the real balance can change. It means in the async system, a contract can't rely on the state of other contract and assume it's not going to change. Instead the contract can rely on temporary partial lock of the state with a callback to act or unlock, but it requires careful engineering to avoid dead locks. In this standard we're trying to avoid enforcing locks, since most actions can still be completed without locks by transferring ownership to an escrow account. Prior art: ERC-20 standard NEP#4 NEAR NFT standard: nearprotocol/neps#4 For latest lock proposals see Safes (#26)","breadcrumbs":"Standards » Motivation","id":"272","title":"Motivation"},"273":{"body":"We should be able to do the following: Initialize contract once. The given total supply will be owned by the given account ID. Get the total supply. Transfer tokens to a new user. Set a given allowance for an escrow account ID. Escrow will be able to transfer up this allowance from your account. Get current balance for a given account ID. Transfer tokens from one user to another. Get the current allowance for an escrow account on behalf of the balance owner. This should only be used in the UI, since a contract shouldn't rely on this temporary information. There are a few concepts in the scenarios above: Total supply . It's the total number of tokens in circulation. Balance owner . An account ID that owns some amount of tokens. Balance . Some amount of tokens. Transfer . Action that moves some amount from one account to another account. Escrow . A different account from the balance owner who has permission to use some amount of tokens. Allowance . The amount of tokens an escrow account can use on behalf of the account owner. Note, that the precision is not part of the default standard, since it's not required to perform actions. The minimum value is always 1 token.","breadcrumbs":"Standards » Guide-level explanation","id":"273","title":"Guide-level explanation"},"274":{"body":"Alice wants to send 5 wBTC tokens to Bob. Assumptions The wBTC token contract is wbtc. Alice's account is alice. Bob's account is bob. The precision on wBTC contract is 10^8. The 5 tokens is 5 * 10^8 or as a number is 500000000. High-level explanation Alice needs to issue one transaction to wBTC contract to transfer 5 tokens (multiplied by precision) to Bob. Technical calls alice calls wbtc::transfer({\"new_owner_id\": \"bob\", \"amount\": \"500000000\"}).","breadcrumbs":"Standards » Simple transfer","id":"274","title":"Simple transfer"},"275":{"body":"Alice wants to deposit 1000 DAI tokens to a compound interest contract to earn extra tokens. Assumptions The DAI token contract is dai. Alice's account is alice. The compound interest contract is compound. The precision on DAI contract is 10^18. The 1000 tokens is 1000 * 10^18 or as a number is 1000000000000000000000. The compound contract can work with multiple token types. High-level explanation Alice needs to issue 2 transactions. The first one to dai to set an allowance for compound to be able to withdraw tokens from alice. The second transaction is to the compound to start the deposit process. Compound will check that the DAI tokens are supported and will try to withdraw the desired amount of DAI from alice. If transfer succeeded, compound can increase local ownership for alice to 1000 DAI If transfer fails, compound doesn't need to do anything in current example, but maybe can notify alice of unsuccessful transfer. Technical calls alice calls dai::set_allowance({\"escrow_account_id\": \"compound\", \"allowance\": \"1000000000000000000000\"}). alice calls compound::deposit({\"token_contract\": \"dai\", \"amount\": \"1000000000000000000000\"}). During the deposit call, compound does the following: makes async call dai::transfer_from({\"owner_id\": \"alice\", \"new_owner_id\": \"compound\", \"amount\": \"1000000000000000000000\"}). attaches a callback compound::on_transfer({\"owner_id\": \"alice\", \"token_contract\": \"dai\", \"amount\": \"1000000000000000000000\"}).","breadcrumbs":"Standards » Token deposit to a contract","id":"275","title":"Token deposit to a contract"},"276":{"body":"Charlie wants to exchange his wLTC to wBTC on decentralized exchange contract. Alex wants to buy wLTC and has 80 wBTC. Assumptions The wLTC token contract is wltc. The wBTC token contract is wbtc. The DEX contract is dex. Charlie's account is charlie. Alex's account is alex. The precision on both tokens contract is 10^8. The amount of 9001 wLTC tokens is Alex wants is 9001 * 10^8 or as a number is 900100000000. The 80 wBTC tokens is 80 * 10^8 or as a number is 8000000000. Charlie has 1000000 wLTC tokens which is 1000000 * 10^8 or as a number is 100000000000000 Dex contract already has an open order to sell 80 wBTC tokens by alex towards 9001 wLTC. Without Safes implementation, DEX has to act as an escrow and hold funds of both users before it can do an exchange. High-level explanation Let's first setup open order by Alex on DEX. It's similar to Token deposit to a contract example above. Alex sets an allowance on wBTC to DEX Alex calls deposit on Dex for wBTC. Alex calls DEX to make an new sell order. Then Charlie comes and decides to fulfill the order by selling his wLTC to Alex on DEX. Charlie calls the DEX Charlie sets the allowance on wLTC to DEX Alex calls deposit on Dex for wLTC. Then calls DEX to take the order from Alex. When called, DEX makes 2 async transfers calls to exchange corresponding tokens. DEX calls wLTC to transfer tokens DEX to Alex. DEX calls wBTC to transfer tokens DEX to Charlie. Technical calls alex calls wbtc::set_allowance({\"escrow_account_id\": \"dex\", \"allowance\": \"8000000000\"}). alex calls dex::deposit({\"token\": \"wbtc\", \"amount\": \"8000000000\"}). dex calls wbtc::transfer_from({\"owner_id\": \"alex\", \"new_owner_id\": \"dex\", \"amount\": \"8000000000\"}) alex calls dex::trade({\"have\": \"wbtc\", \"have_amount\": \"8000000000\", \"want\": \"wltc\", \"want_amount\": \"900100000000\"}). charlie calls wltc::set_allowance({\"escrow_account_id\": \"dex\", \"allowance\": \"100000000000000\"}). charlie calls dex::deposit({\"token\": \"wltc\", \"amount\": \"100000000000000\"}). dex calls wltc::transfer_from({\"owner_id\": \"charlie\", \"new_owner_id\": \"dex\", \"amount\": \"100000000000000\"}) charlie calls dex::trade({\"have\": \"wltc\", \"have_amount\": \"900100000000\", \"want\": \"wbtc\", \"want_amount\": \"8000000000\"}). dex calls wbtc::transfer({\"new_owner_id\": \"charlie\", \"amount\": \"8000000000\"}) dex calls wltc::transfer({\"new_owner_id\": \"alex\", \"amount\": \"900100000000\"})","breadcrumbs":"Standards » Multi-token swap on DEX","id":"276","title":"Multi-token swap on DEX"},"277":{"body":"The full implementation in Rust can be found there: https://github.com/nearprotocol/near-sdk-rs/blob/master/examples/fungible-token/src/lib.rs NOTES: All amounts, balances and allowance are limited by U128 (max value 2**128 - 1). Token standard uses JSON for serialization of arguments and results. Amounts in arguments and results have are serialized as Base-10 strings, e.g. \"100\". This is done to avoid JSON limitation of max integer value of 2**53. Interface: /******************/\n/* CHANGE METHODS */\n/******************/ /// Sets the `allowance` for `escrow_account_id` on the account of the caller of this contract\n/// (`predecessor_id`) who is the balance owner.\npub fn set_allowance(&mut self, escrow_account_id: AccountId, allowance: U128); /// Transfers the `amount` of tokens from `owner_id` to the `new_owner_id`.\n/// Requirements:\n/// * `amount` should be a positive integer.\n/// * `owner_id` should have balance on the account greater or equal than the transfer `amount`.\n/// * If this function is called by an escrow account (`owner_id != predecessor_account_id`),\n/// then the allowance of the caller of the function (`predecessor_account_id`) on\n/// the account of `owner_id` should be greater or equal than the transfer `amount`.\npub fn transfer_from(&mut self, owner_id: AccountId, new_owner_id: AccountId, amount: U128); /// Transfer `amount` of tokens from the caller of the contract (`predecessor_id`) to\n/// `new_owner_id`.\n/// Act the same was as `transfer_from` with `owner_id` equal to the caller of the contract\n/// (`predecessor_id`).\npub fn transfer(&mut self, new_owner_id: AccountId, amount: U128); /****************/\n/* VIEW METHODS */\n/****************/ /// Returns total supply of tokens.\npub fn get_total_supply(&self) -> U128; /// Returns balance of the `owner_id` account.\npub fn get_balance(&self, owner_id: AccountId) -> U128; /// Returns current allowance of `escrow_account_id` for the account of `owner_id`.\n///\n/// NOTE: Other contracts should not rely on this information, because by the moment a contract\n/// receives this information, the allowance may already be changed by the owner.\n/// So this method should only be used on the front-end to see the current allowance.\npub fn get_allowance(&self, owner_id: AccountId, escrow_account_id: AccountId) -> U128;","breadcrumbs":"Standards » Reference-level explanation","id":"277","title":"Reference-level explanation"},"278":{"body":"Current interface doesn't have minting, precision (decimals), naming. But it should be done as extensions, e.g. a Precision extension. It's not possible to exchange tokens without transferring them to escrow first. It's not possible to transfer tokens to a contract with a single transaction without setting the allowance first. It should be possible if we introduce transfer_with function that transfers tokens and calls escrow contract. It needs to handle result of the execution and contracts have to be aware of this API.","breadcrumbs":"Standards » Drawbacks","id":"278","title":"Drawbacks"},"279":{"body":"Support for multiple token types Minting and burning Precision, naming and short token name.","breadcrumbs":"Standards » Future possibilities","id":"279","title":"Future possibilities"},"28":{"body":"The fields in the Block header relevant to the consensus process are: struct BlockHeader { ... prev_hash: BlockHash, height: BlockHeight, epoch_id: EpochId, last_final_block_hash: BlockHash, approvals: Vec> ...\n} Block producers in the particular epoch exchange many kinds of messages. The two kinds that are relevant to the consensus are Blocks and Approvals . The approval contains the following fields: enum ApprovalInner { Endorsement(BlockHash), Skip(BlockHeight),\n} struct Approval { inner: ApprovalInner, target_height: BlockHeight, signature: Signature, account_id: AccountId\n} Where the parameter of the Endorsement is the hash of the approved block, the parameter of the Skip is the height of the approved block, target_height is the specific height at which the approval can be used (an approval with a particular target_height can be only included in the approvals of a block that has height = target_height), account_id is the account of the block producer who created the approval, and signature is their signature on the tuple (inner, target_height).","breadcrumbs":"Chain specification » Data structures","id":"28","title":"Data structures"},"29":{"body":"Every block \\(B\\) except the genesis block must logically contain approvals of a form described in the next paragraph from block producers whose cumulative stake exceeds \\(^2\\!/_3\\) of the total stake in the current epoch, and in specific conditions described in section epoch switches also the approvals of the same form from block producers whose cumulative stake exceeds \\(^2\\!/_3\\) of the total stake in the next epoch. The approvals logically included in the block must be an Endorsement with the hash of \\(prev(B)\\) if and only if \\(h(B) = h(prev(B))+1\\), otherwise it must be a Skip with the height of \\(prev(B)\\). See this section below for details on why the endorsements must contain the hash of the previous block, and skips must contain the height. Note that since each approval that is logically stored in the block is the same for each block producer (except for the account_id of the sender and the signature), it is redundant to store the full approvals. Instead physically we only store the signatures of the approvals. The specific way they are stored is the following: we first fetch the ordered set of block producers from the current epoch. If the block is on the epoch boundary and also needs to include approvals from the next epoch (see epoch switches ), we add new accounts from the new epoch def get_accounts_for_block_ordered(h, prev_block): cur_epoch = get_next_block_epoch(prev_block) next_epoch = get_next_block_next_epoch(prev_block) account_ids = get_epoch_block_producers_ordered(cur_epoch) if next_block_needs_approvals_from_next_epoch(prev_block): for account_id in get_epoch_block_producers_ordered(next_epoch): if account_id not in account_ids: account_ids.append(account_id) return account_ids The block then contains a vector of optional signatures of the same or smaller size than the resulting set of account_ids, with each element being None if the approval for such account is absent, or the signature on the approval message if it is present. It's easy to show that the actual approvals that were signed by the block producers can easily be reconstructed from the information available in the block, and thus the signatures can be verified. If the vector of signatures is shorter than the length of account_ids, the remaining signatures are assumed to be None.","breadcrumbs":"Chain specification » Approvals Requirements","id":"29","title":"Approvals Requirements"},"3":{"body":"","breadcrumbs":"Abstraction definitions","id":"3","title":"Abstraction definitions"},"30":{"body":"On receipt of the approval message the participant just stores it in the collection of approval messages. def on_approval(self, approval): self.approvals.append(approval) Whenever a participant receives a block, the operations relevant to the consensus include updating the head and initiating a timer to start sending the approvals on the block to the block producers at the consecutive target_heights. The timer delays depend on the height of the last final block, so that information is also persisted. def on_block(self, block): header = block.header if header.height <= self.head_height: return last_final_block = store.get_block(header.last_final_block_hash) self.head_height = header.height self.head_hash = block.hash() self.largest_final_height = last_final_block.height self.timer_height = self.head_height + 1 self.timer_started = time.time() self.endorsement_pending = True The timer needs to be checked periodically, and contain the following logic: def get_delay(n): min(MAX_DELAY, MIN_DELAY + DELAY_STEP * (n-2)) def process_timer(self): now = time.time() skip_delay = get_delay(self.timer_height - self.largest_final_height) if self.endorsement_pending and now > self.timer_started + ENDORSEMENT_DELAY: if self.head_height >= self.largest_target_height: self.largest_target_height = self.head_height + 1 self.send_approval(head_height + 1) self.endorsement_pending = False if now > self.timer_started + skip_delay: assert not self.endorsement_pending self.largest_target_height = max(self.largest_target_height, self.timer_height + 1) self.send_approval(self.timer_height + 1) self.timer_started = now self.timer_height += 1 def send_approval(self, target_height): if target_height == self.head_height + 1: inner = Endorsement(self.head_hash) else: inner = Skip(self.head_height) approval = Approval(inner, target_height) send(approval, to_whom = get_block_proposer(self.head_hash, target_height)) Where get_block_proposer returns the next block proposer given the previous block and the height of the next block. It is also necessary that ENDORSEMENT_DELAY < MIN_DELAY. Moreover, while not necessary for correctness, we require that ENDORSEMENT_DELAY * 2 <= MIN_DELAY.","breadcrumbs":"Chain specification » Messages","id":"30","title":"Messages"},"31":{"body":"We first define a convenience function to fetch approvals that can be included in a block at particular height: def get_approvals(self, target_height): return [approval for approval in self.approvals if approval.target_height == target_height and (isinstance(approval.inner, Skip) and approval.prev_height == self.head_height or isinstance(approval.inner, Endorsement) and approval.prev_hash == self.head_hash)] A block producer assigned for a particular height produces a block at that height whenever they have get_approvals return approvals from block producers whose stake collectively exceeds 2/3 of the total stake.","breadcrumbs":"Chain specification » Block Production","id":"31","title":"Block Production"},"32":{"body":"A block \\(B\\) is final in \\(chain(T)\\), where \\(T \\ge B\\), when either \\(B = G\\) or there is a block \\(X \\le T\\) such that \\(B = prev(prev(X))\\) and \\(h(X) = h(prev(X))+1 = h(B)+2\\). That is, either \\(B\\) is the genesis block, or \\(chain(T)\\) includes at least two blocks on top of \\(B\\), and these three blocks (\\(B\\) and the two following blocks) have consecutive heights.","breadcrumbs":"Chain specification » Finality condition","id":"32","title":"Finality condition"},"33":{"body":"There's a parameter \\(epoch\\_length \\ge 3\\) that defines the minimum length of an epoch. Suppose that a particular epoch \\(e\\_cur\\) started at height \\(h\\), and say the next epoch will be \\(e\\_next\\). Say \\(BP(e)\\) is a set of block producers in epoch \\(e\\). Say \\(last\\_final(T)\\) is the highest final block in \\(chain(T)\\). The following are the rules of what blocks contain approvals from what block producers, and belong to what epoch. Any block \\(B\\) with \\(h(prev(B)) < h+epoch\\_length-3\\) is in the epoch \\(e\\_cur\\) and must have approvals from more than \\(^2\\!/_3\\) of \\(BP(e\\_cur)\\) (stake-weighted). Any block \\(B\\) with \\(h(prev(B)) \\ge h+epoch\\_length-3\\) for which \\(h(last\\_final(prev(B))) < h+epoch\\_length-3\\) is in the epoch \\(e\\_cur\\) and must logically include approvals from both more than \\(^2\\!/_3\\) of \\(BP(e\\_cur)\\) and more than \\(^2\\!/_3\\) of \\(BP(e\\_next)\\) (both stake-weighted). The first block \\(B\\) with \\(h(last\\_final(prev(B))) >= h+epoch\\_length-3\\) is in the epoch \\(e\\_next\\) and must logically include approvals from more than \\(^2\\!/_3\\) of \\(BP(e\\_next)\\) (stake-weighted). (see the definition of logically including approvals in approval requirements )","breadcrumbs":"Chain specification » Epoch switches","id":"33","title":"Epoch switches"},"34":{"body":"Note that with the implementation above a honest block producer can never produce two endorsements with the same prev_height (call this condition conflicting endorsements ), neither can they produce a skip message s and an endorsement e such that s.prev_height < e.prev_height and s.target_height >= e.target_height (call this condition conflicting skip and endorsement ). Theorem Suppose that there are blocks \\(B_1\\), \\(B_2\\), \\(T_1\\) and \\(T_2\\) such that \\(B_1 \\nsim B_2\\), \\(final(B_1, T_1)\\) and \\(final(B_2, T_2)\\). Then, more than \\(^1\\!/_3\\) of the block producer in some epoch must have signed either conflicting endorsements or conflicting skip and endorsement. Proof Without loss of generality, we can assume that these blocks are chosen such that their heights are smallest possible. Specifically, we can assume that \\(h(T_1) = h(B_1)+2\\) and \\(h(T_2) = h(B_2)+2\\). Also, letting \\(B_c\\) be the highest block that is an ancestor of both \\(B_1\\) and \\(B_2\\), we can assume that there is no block \\(X\\) such that \\(final(X, T_1)\\) and \\(B_c < X < B_1\\) or \\(final(X, T_2)\\) and \\(B_c < X < B_2\\). Lemma There is such an epoch \\(E\\) that all blocks \\(X\\) such that \\(B_c < X \\le T_1\\) or \\(B_c < X \\le T_2\\) include approvals from more than \\(^2\\!/_3\\) of the block producers in \\(E\\). Proof There are two cases. Case 1: Blocks \\(B_c\\), \\(T_1\\) and \\(T_2\\) are all in the same epoch. Because the set of blocks in a given epoch in a given chain is a contiguous range, all blocks between them (specifically, all blocks \\(X\\) such that \\(B_c < X < T_1\\) or \\(B_c < X < T_2\\)) are also in the same epoch, so all those blocks include approvals from more than \\(^2\\!/_3\\) of the block producers in that epoch. Case 2: Blocks \\(B_c\\), \\(T_1\\) and \\(T_2\\) are not all in the same epoch. Suppose that \\(B_c\\) and \\(T_1\\) are in different epochs. Let \\(E\\) be the epoch of \\(T_1\\) and \\(E_p\\) be the preceding epoch (\\(T_1\\) cannot be in the same epoch as the genesis block). Let \\(R\\) and \\(S\\) be the first and the last block of \\(E_p\\) in \\(chain(T_1)\\). Then, there must exist a block \\(F\\) in epoch \\(E_p\\) such that \\(h(F)+2 = h(S) < h(T_1)\\). Because \\(h(F) < h(T_1)-2\\), we have \\(F < B_1\\), and since there are no final blocks \\(X\\) such that \\(B_c < X < B_1\\), we conclude that \\(F \\le B_c\\). Because there are no epochs between \\(E\\) and \\(E_p\\), we conclude that \\(B_c\\) is in epoch \\(E_p\\). Also, \\(h(B_c) \\ge h(F) \\ge h(R)+epoch\\_length-3\\). Thus, any block after \\(B_c\\) and until the end of \\(E\\) must include approvals from more than \\(^2\\!/_3\\) of the block producers in \\(E\\). Applying the same argument to \\(chain(T_2)\\), we can determine that \\(T_2\\) is either in \\(E\\) or \\(E_p\\), and in both cases all blocks \\(X\\) such that \\(B_c < X \\le T_2\\) include approvals from more than \\(^2\\!/_3\\) of block producers in \\(E\\) (the set of block producers in \\(E\\) is the same in \\(chain(T_1)\\) and \\(chain(T_2)\\) because the last block of the epoch preceding \\(E_p\\), if any, is before \\(B_c\\) and thus is shared by both chains). The case where \\(B_c\\) and \\(T_1\\) are in the same epoch, but \\(B_c\\) and \\(T_2\\) are in different epochs is handled similarly. Thus, the lemma is proven. Now back to the theorem. Without loss of generality, assume that \\(h(B_1) \\le h(B_2)\\). On the one hand, if \\(chain(T_2)\\) doesn't include a block at height \\(h(B_1)\\), then the first block at height greater than \\(h(B_1)\\) must include skips from more than \\(^2\\!/_3\\) of the block producers in \\(E\\) which conflict with endorsements in \\(prev(T_1)\\), therefore, more than \\(^1\\!/_3\\) of the block producers in \\(E\\) must have signed conflicting skip and endorsement. Similarly, if \\(chain(T_2)\\) doesn't include a block at height \\(h(B_1)+1\\), more than \\(^1\\!/_3\\) of the block producers in \\(E\\) signed both an endorsement in \\(T_1\\) and a skip in the first block in \\(chain(T_2)\\) at height greater than \\(h(T_1)\\). On the other hand, if \\(chain(T_2)\\) includes both a block at height \\(h(B_1)\\) and a block at height \\(h(B_1)+1\\), the latter must include endorsements for the former, which conflict with endorsements for \\(B_1\\). Therefore, more than \\(^1\\!/_3\\) of the block producers in \\(E\\) must have signed conflicting endorsements. Thus, the theorem is proven.","breadcrumbs":"Chain specification » Safety","id":"34","title":"Safety"},"35":{"body":"See the proof of liveness in near.ai/doomslug . The consensus in this section differs in that it requires two consecutive blocks with endorsements. The proof in the linked paper trivially extends, by observing that once the delay is sufficiently long for a honest block producer to collect enough endorsements, the next block producer ought to have enough time to collect all the endorsements too.","breadcrumbs":"Chain specification » Liveness","id":"35","title":"Liveness"},"36":{"body":"The approval condition above Any valid block must logically include approvals from block producers whose cumulative stake exceeds 2/3 of the total stake in the epoch. For a block B and its previous block B' each approval in B must be an Endorsement with the hash of B' if and only if B.height == B'.height + 1, otherwise it must be a Skip with the height of B' Is more complex that desired, and it is tempting to unify the two conditions. Unfortunately, they cannot be unified. It is critical that for endorsements each approval has the prev_hash equal to the hash of the previous block, because otherwise the safety proof above doesn't work, in the second case the endorsements in B1 and Bx can be the very same approvals. It is critical that for the skip messages we do not require the hashes in the approvals to match the hash of the previous block, because otherwise a malicious actor can create two blocks at the same height, and distribute them such that half of the block producers have one as their head, and the other half has the other. The two halves of the block producers will be sending skip messages with different prev_hash but the same prev_height to the future block producers, and if there's a requirement that the prev_hash in the skip matches exactly the prev_hash of the block, no block producer will be able to create their blocks.","breadcrumbs":"Chain specification » Approval condition","id":"36","title":"Approval condition"},"37":{"body":"A client creates a transaction, computes the transaction hash and signs this hash to get a signed transaction. Now this signed transaction can be sent to a node. When a node receives a new signed transaction, it validates the transaction (if the node tracks the shard) and gossips it to the peers. Eventually, the valid transaction is added to a transaction pool. Every validating node has its own transaction pool. The transaction pool maintains transactions that were not yet discarded and not yet included into the chain. Before producing a chunk transactions are ordered and validated again. This is done to produce chunks with only valid transactions.","breadcrumbs":"Chain specification » Transactions in the Blockchain Layer","id":"37","title":"Transactions in the Blockchain Layer"},"38":{"body":"The transaction pool groups transactions by a pair of (signer_id, signer_public_key). The signer_id is the account ID of the user who signed the transaction, the signer_public_key is the public key of the account's access key that was used to sign the transactions. Transactions within a group are not ordered. The valid order of the transactions in a chunk is the following: transactions are ordered in batches. within a batch all transactions keys should have different. a set of transaction keys in each subsequent batch should be a sub-set of keys from the previous batch. transactions with the same key should be ordered in strictly increasing order of their corresponding nonces. Note: the order within a batch is undefined. Each node should use a unique secret seed for that ordering to users from finding the lowest keys to get advantage of every node. Transaction pool provides a draining structure that allows to pull transactions in a proper order.","breadcrumbs":"Chain specification » Transaction ordering","id":"38","title":"Transaction ordering"},"39":{"body":"The transaction validation happens twice, once before adding to the transaction pool, next before adding to a chunk.","breadcrumbs":"Chain specification » Transaction validation","id":"39","title":"Transaction validation"},"4":{"body":"A chain is a replication machinery, that provides for any type of state a way to replicate across the network and reach consensus on the state.","breadcrumbs":"Chain","id":"4","title":"Chain"},"40":{"body":"This is done to quickly filter out transactions that have an invalid signature or are invalid on the latest state.","breadcrumbs":"Chain specification » Before adding to a transaction pool","id":"40","title":"Before adding to a transaction pool"},"41":{"body":"A chunk producer has to create a chunk with valid and ordered transactions up to some limits. One limit is the maximum number of transactions, another is the total gas burnt for transactions. To order and filter transactions, chunk producer gets a pool iterator and passes it to the runtime adapter. The runtime adapter pulls transactions one by one. The valid transactions are added to the result, invalid transactions are discarded. Once the limit is reached, all the remaining transactions from the iterator are returned back to the pool.","breadcrumbs":"Chain specification » Before adding to a chunk","id":"41","title":"Before adding to a chunk"},"42":{"body":"Pool Iterator is a trait that iterates over transaction groups until all transaction group are empty. Pool Iterator returns a mutable reference to a transaction group that implements a draining iterator. The draining iterator is like a normal iterator, but it removes the returned entity from the group. It pulls transactions from the group in order from the smallest nonce to largest. The pool iterator and draining iterators for transaction groups allow the runtime adapter to create proper order. For every transaction group, the runtime adapter keeps pulling transactions until the valid transaction is found. If the transaction group becomes empty, then it's skipped. The runtime adapter may implement the following code to pull all valid transactions: let mut valid_transactions = vec![];\nlet mut pool_iter = pool.pool_iterator();\nwhile let Some(group_iter) = pool_iter.next() { while let Some(tx) = group_iter.next() { if is_valid(tx) { valid_transactions.push(tx); break; } }\n}\nvalid_transactions","breadcrumbs":"Chain specification » Pool iterator","id":"42","title":"Pool iterator"},"43":{"body":"Let's say: account IDs as uppercase letters (\"A\", \"B\", \"C\" ...) public keys are lowercase letters (\"a\", \"b\", \"c\" ...) nonces are numbers (1, 2, 3 ...) A pool might have group of transactions in the hashmap: transactions: { (\"A\", \"a\") -> [1, 3, 2, 1, 2] (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3]\n} There are 3 accounts (\"A\", \"B\", \"C\"). Account \"A\" used 2 public keys (\"a\", \"c\"). Other accounts used 1 public key each. Transactions within each group may have repeated nonces while in the pool. That's because the pool doesn't filter transactions with the same nonce, only transactions with the same hash. For this example, let's say that transactions are valid if the nonce is even and strictly greater than the previous nonce for the same key. Initialization When .pool_iterator() is called, a new PoolIteratorWrapper is created and it holds the mutuable reference to the pool, so the pool can't be modified outside of this iterator. The wrapper looks like this: pool: { transactions: { (\"A\", \"a\") -> [1, 3, 2, 1, 2] (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [], sorted_groups is a queue of sorted transaction groups that were already sorted and pulled from the pool. Transaction #1 The first group to be selected is for key (\"A\", \"a\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [1, 1, 2, 2, 3]. Runtime adapter pulls 1, then 1, and then 2. Both transactions with nonce 1 are invalid because of odd nonce. Transaction with nonce 2 is added to the list of valid transactions. The transaction group is dropped and the pool iterator wrapper becomes the following: pool: { transactions: { (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], Transaction #2 The next group is for key (\"B\", \"b\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [13, 14]. Runtime adapter pulls 13, then 14. The transaction with nonce 13 is invalid because of odd nonce. Transaction with nonce 14 is added to the list of valid transactions. The transaction group is dropped, but it's empty, so the pool iterator drops it completely: pool: { transactions: { (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], Transaction #3 The next group is for key (\"C\", \"d\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [7]. Runtime adapter pulls 7. The transaction with nonce 7 is invalid because of odd nonce. No valid transactions is added for this group. The transaction group is dropped, it's empty, so the pool iterator drops it completely: pool: { transactions: { (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], The next group is for key (\"A\", \"c\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [2, 3, 5]. Runtime adapter pulls 2. It's a valid transaction, so it's added to the list of valid transactions. The transaction group is dropped, so the pool iterator drops it completely: pool: { transactions: { }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3] (\"A\", \"c\") -> [3, 5]\n], Transaction #4 The next group is pulled not from the pool, but from the sorted_groups. The key is (\"A\", \"a\"). It's already sorted, so the iterator returns the mutable reference. Nonces are: [2, 3]. Runtime adapter pulls 2, then pulls 3. The transaction with nonce 2 is invalid, because we've already pulled a transaction #1 from this group and it had nonce 2. The new nonce has to be larger than the previous nonce, so this transaction is invalid. The transaction with nonce 3 is invalid because of odd nonce. No valid transactions is added for this group. The transaction group is dropped, it's empty, so the pool iterator drops it completely: pool: { transactions: { }\n}\nsorted_groups: [ (\"A\", \"c\") -> [3, 5]\n], The next group is for key (\"A\", \"c\"), with nonces [3, 5]. Runtime adapter pulls 3, then pulls 5. Both transactions are invalid, because the nonce is odd. No transactions are added. The transaction group is dropped, the pool iterator wrapper becomes empty: pool: { transactions: { }\n}\nsorted_groups: [ ], When runtime adapter tries to pull the next group, the pool iterator returns None, so the runtime adapter drops the iterator. Dropping iterator If the iterator was not fully drained, but some transactions still remained. They would be reinserted back into the pool. Chunk Transactions Transactions that were pulled from the pool: // First batch\n(\"A\", \"a\", 1),\n(\"A\", \"a\", 1),\n(\"A\", \"a\", 2),\n(\"B\", \"b\", 13),\n(\"B\", \"b\", 14),\n(\"C\", \"d\", 7),\n(\"A\", \"c\", 2), // Next batch\n(\"A\", \"a\", 2),\n(\"A\", \"a\", 3),\n(\"A\", \"c\", 3),\n(\"A\", \"c\", 5), The valid transactions are: (\"A\", \"a\", 2),\n(\"B\", \"b\", 14),\n(\"A\", \"c\", 2), In total there were only 3 valid transactions, that resulted in one batch.","breadcrumbs":"Chain specification » Transaction ordering example using pool iterator.","id":"43","title":"Transaction ordering example using pool iterator."},"44":{"body":"Other validators need to check the order of transactions in the produced chunk. It can be done in linear time, using a greedy algorithm. To select a first batch we need to iterate over transactions one by one until we see a transaction with the key that we've already included in the first batch. This transaction belongs to the next batch. Now all transactions in the N+1 batch should have a corresponding transaction with the same key in the N batch. If there are no transaction with the same key in the N batch, then the order is invalid. We also enforce the order of the sequence of transactions for the same key, the nonces of them should be in strictly increasing order. Here is the algorithm that validates the order: fn validate_order(txs: &Vec) -> bool { let mut nonces: HashMap = HashMap::new(); let mut batches: HashMap = HashMap::new(); let mut current_batch = 1; for tx in txs { let key = tx.key(); // Verifying nonce let nonce = tx.nonce(); if let Some(last_nonce) = nonces.get(key) { if nonce <= last_nonce { // Nonces should increase. return false; } } nonces.insert(key, nonce); // Verifying batch if let Some(last_batch) = batches.get(key) { if last_batch == current_batch { current_batch += 1; } else if last_batch < current_batch - 1 { // Was skipped this key in the previous batch return false; } } else { if current_batch > 1 { // Not in first batch return false; } } batches.insert(key, batch); } true\n}","breadcrumbs":"Chain specification » Order validation","id":"44","title":"Order validation"},"45":{"body":"","breadcrumbs":"Runtime Specification","id":"45","title":"Runtime Specification"},"46":{"body":"In this section we provide an explanation how the FunctionCall action execution works, what are the inputs and what are the outputs. Suppose runtime received the following ActionReceipt: ActionReceipt { id: \"A1\", signer_id: \"alice\", signer_public_key: \"6934...e248\", receiver_id: \"dex\", predecessor_id: \"alice\", input_data_ids: [], output_data_receivers: [], actions: [FunctionCall { gas: 100000, deposit: 100000u128, method_name: \"exchange\", args: \"{arg1, arg2, ...}\", ... }], }","breadcrumbs":"Runtime specification » Function Call","id":"46","title":"Function Call"},"47":{"body":"ActionReceipt.input_data_ids must be satisfied before execution (see Receipt Matching ). Each of ActionReceipt.input_data_ids will be converted to the PromiseResult::Successful(Vec) if data_id.data is Some(Vec) otherwise if data_id.data is None promise will be PromiseResult::Failed.","breadcrumbs":"Runtime specification » input_data_ids to PromiseResult's","id":"47","title":"input_data_ids to PromiseResult's"},"48":{"body":"The FunctionCall executes in the receiver_id account environment. a vector of Promise Results which can be accessed by a promise_result import PromisesAPI promise_result) the original Transaction signer_id, signer_public_key data from the ActionReceipt (e.g. method_name, args, predecessor_id, deposit, prepaid_gas (which is gas in FunctionCall)) a general blockchain data (e.g. block_index, block_timestamp) read data from the account storage A full list of the data available for the contract can be found in Context API and Trie","breadcrumbs":"Runtime specification » Input","id":"48","title":"Input"},"49":{"body":"First of all, runtime does prepare the Wasm binary to be executed: loads the contract code from the receiver_id account storage deserializes and validates the code Wasm binary (see prepare::prepare_contract) injects the gas counting function gas which will charge gas on the beginning of the each code block instantiates Bindings Spec with binary and calls the FunctionCall.method_name exported function During execution, VM does the following: counts burnt gas on execution counts used gas (which is burnt gas + gas attached to the new created receipts) counts how accounts storage usage increased by the call collects logs produced by the contract sets the return data creates new receipts through PromisesAPI","breadcrumbs":"Runtime specification » Execution","id":"49","title":"Execution"},"5":{"body":"Account Account ID Account Access Keys Transaction","breadcrumbs":"Primitives","id":"5","title":"Primitives"},"50":{"body":"The output of the FunctionCall: storage updates - changes to the account trie storage which will be applied on a successful call burnt_gas - irreversible amount of gas witch was spent on computations used_gas - includes burnt_gas and gas attached to the new ActionReceipts created during the method execution. In case of failure, created ActionReceipts not going to be sent thus account will pay only for burnt_gas balance - unspent account balance (account balance could be spent on deposits of newly created FunctionCalls or TransferActions to other contracts) storage_usage - storage_usage after ActionReceipt application logs - during contract execution, utf8/16 string log records could be created. Logs are not persistent currently. new_receipts - new ActionReceipts created during the execution. These receipts are going to be sent to the respective receiver_ids (see Receipt Matching explanation ) result could be either ReturnData::Value(Vec) or ReturnData::ReceiptIndex(u64) `","breadcrumbs":"Runtime specification » Output","id":"50","title":"Output"},"51":{"body":"If applied ActionReceipt contains output_data_receivers , runtime will create DataReceipt for each of data_id and receiver_id and data equals returned value. Eventually, these DataReceipt will be delivered to the corresponding receivers.","breadcrumbs":"Runtime specification » Value Result","id":"51","title":"Value Result"},"52":{"body":"Successful result could not return any Value, but generates a bunch of new ActionReceipts instead. One example could be a callback. In this case, we assume the the new Receipt will send its Value Result to the output_data_receivers of the current ActionReceipt.","breadcrumbs":"Runtime specification » ReceiptIndex Result","id":"52","title":"ReceiptIndex Result"},"53":{"body":"A transaction in Near is a list of actions and additional information: pub struct Transaction { /// An account on which behalf transaction is signed pub signer_id: AccountId, /// An access key which was used to sign a transaction pub public_key: PublicKey, /// Nonce is used to determine order of transaction in the pool. /// It increments for a combination of `signer_id` and `public_key` pub nonce: Nonce, /// Receiver account for this transaction. If pub receiver_id: AccountId, /// The hash of the block in the blockchain on top of which the given transaction is valid pub block_hash: CryptoHash, /// A list of actions to be applied pub actions: Vec,\n}","breadcrumbs":"Runtime specification » Transactions","id":"53","title":"Transactions"},"54":{"body":"SignedTransaction is what the node receives from a wallet through JSON-RPC endpoint and then routed to the shard where receiver_id account lives. Signature proves an ownership of the corresponding public_key (which is an AccessKey for a particular account) as well as authenticity of the transaction itself. pub struct SignedTransaction { pub transaction: Transaction, /// A signature of a hash of the Borsh-serialized Transaction pub signature: Signature, Take a look some scenarios how transaction can be applied.","breadcrumbs":"Runtime specification » Signed Transaction","id":"54","title":"Signed Transaction"},"55":{"body":"There are a several action types in Near: pub enum Action { CreateAccount(CreateAccountAction), DeployContract(DeployContractAction), FunctionCall(FunctionCallAction), Transfer(TransferAction), Stake(StakeAction), AddKey(AddKeyAction), DeleteKey(DeleteKeyAction), DeleteAccount(DeleteAccountAction),\n} Each transaction consists a list of actions to be performed on the receiver_id side. Sometimes the singer_id equals to receiver_id. There is a set of action types when signer_id and receiver_id are required to be equal. Actions requires arguments and use data from the Transaction itself. // TODO: how to introduce the concept of sender_id","breadcrumbs":"Runtime specification » Actions","id":"55","title":"Actions"},"56":{"body":"Requirements: unique tx.receiver_id public_key to be AccessKeyPermission::FullAccess for the singer_id CreateAccountAction doesn't take any additional arguments, it uses receiver_id from Transaction. receiver_id is an ID for an account to be created. Account ID should be valid and unique throughout the system. Outcome : creates an account with id = receiver_id sets Account storage_usage to account_cost (genesis config) sets Account storage_paid_at to the current block height NOTE: for the all subsequent actions in the transaction the signer_id becomes receiver_id until DeleteAccountAction . It allows to execute actions on behalf of the just created account. pub struct CreateAccountAction {}","breadcrumbs":"Runtime specification » CreateAccountAction","id":"56","title":"CreateAccountAction"},"57":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Outcome : sets a code for account pub struct DeployContractAction { pub code: Vec, // a valid WebAssembly code\n}","breadcrumbs":"Runtime specification » DeployContractAction","id":"57","title":"DeployContractAction"},"58":{"body":"Requirements: tx.public_key to be AccessKeyPermission::FullAccess or AccessKeyPermission::FunctionCall Calls a method of a particular contract. See details . pub struct FunctionCallAction { /// Name of exported Wasm function pub method_name: String, /// Serialized arguments pub args: Vec, /// Prepaid gas (gas_limit) for a function call pub gas: Gas, /// Amount of tokens to transfer to a receiver_id pub deposit: Balance,\n}","breadcrumbs":"Runtime specification » FunctionCallAction","id":"58","title":"FunctionCallAction"},"59":{"body":"Requirements: tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Outcome : transfers amount specified in deposit from tx.signer to a tx.receiver_id account pub struct TransferAction { /// Amount of tokens to transfer to a receiver_id pub deposit: Balance,\n}","breadcrumbs":"Runtime specification » TransferAction","id":"59","title":"TransferAction"},"6":{"body":"","breadcrumbs":"Data Structures » Accounts","id":"6","title":"Accounts"},"60":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id pub struct StakeAction { // Amount of tokens to stake pub stake: Balance, // This public key is a public key of the validator node pub public_key: PublicKey,\n} Outcome : // TODO: cover staking","breadcrumbs":"Runtime specification » StakeAction","id":"60","title":"StakeAction"},"61":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Associates an AccessKey with a public_key provided. pub struct AddKeyAction { pub public_key: PublicKey, pub access_key: AccessKey,\n}","breadcrumbs":"Runtime specification » AddKeyAction","id":"61","title":"AddKeyAction"},"62":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id pub struct DeleteKeyAction { pub public_key: PublicKey,\n}","breadcrumbs":"Runtime specification » DeleteKeyAction","id":"62","title":"DeleteKeyAction"},"63":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id tx.account shouldn't have any locked balance pub struct DeleteAccountAction { /// The remaining account balance will be transferred to the AccountId below pub beneficiary_id: AccountId,\n}","breadcrumbs":"Runtime specification » DeleteAccountAction","id":"63","title":"DeleteAccountAction"},"64":{"body":"All cross-contract (we assume that each account lives in it's own shard) communication in Near happens trough Receipts. Receipts are stateful in a sense that they serve not only as messages between accounts but also can be stored in the account storage to await DataReceipts. Each receipt has a predecessor_id (who sent it) and receiver_id the current account. Receipts are one of 2 types: action receipts or data receipts. Data Receipts are receipts that contains some data for some ActionReceipt with the same receiver_id. Data Receipts has 2 fields: the unique data identifier data_id and data the received result. data is an Option field and it indicates whether the result was a success or a failure. If it's Some, then it means the remote execution was successful and it contains the vector of bytes of the result. Each ActionReceipt also contains fields related to data: input_data_ids - a vector of input data with the data_ids required for the execution of this receipt. output_data_receivers - a vector of output data receivers. It indicates where to send outgoing data. Each DataReceiver consists of data_id and receiver_id for routing. Before any action receipt is executed, all input data dependencies need to be satisfied. Which means all corresponding data receipts has to be received. If any of the data dependencies is missing, the action receipt is postponed until all missing data dependency arrives. Because Chain and Runtime guarantees that no receipts are missing, we can rely that every action receipt will be executed eventually ( Receipt Matching explanation ). Each Receipt has the following fields: predecessor_id type : AccountId The account_id which issued a receipt. receiver_id type : AccountId The destination account_id. receipt_id type : AccountId An unique id for the receipt. receipt type : ActionReceipt | DataReceipt There is a 2 types of Receipts in Near: ActionReceipt and DataReceipt . ActionReceipt is a request to apply Actions , while DataReceipt is a result of application of these actions.","breadcrumbs":"Runtime specification » Receipt","id":"64","title":"Receipt"},"65":{"body":"ActionReceipt represents a request to apply actions on the receiver_id side. It could be a derived as a result of a Transaction execution or a another ActionReceipt processing. ActionReceipt consists the following fields: signer_id type : AccountId An account_id which signed the original transaction . signer_public_key type : PublicKey An AccessKey which was used to sign the original transaction. gas_price type : u128 Gas price is a gas price which was set in a block where original transaction has been applied. output_data_receivers type : [DataReceiver{ data_id: CryptoHash, receiver_id: AccountId }] If smart contract finishes its execution with some value (not Promise), runtime creates a [DataReceipt]s for each of the output_data_receivers. input_data_ids type : [CryptoHash]_ input_data_ids are the receipt data dependencies. input_data_ids correspond to DataReceipt.data_id. actions type : FunctionCall | TransferAction | StakeAction | AddKeyAction | DeleteKeyAction | CreateAccountAction | DeleteAccountAction","breadcrumbs":"Runtime specification » ActionReceipt","id":"65","title":"ActionReceipt"},"66":{"body":"DataReceipt represents a final result of some contract execution. data_id type : CryptoHash An a unique DataReceipt identifier. data type : Option([u8]) An an associated data in bytes. None indicates an error during execution.","breadcrumbs":"Runtime specification » DataReceipt","id":"66","title":"DataReceipt"},"67":{"body":"Receipts can be generated during the execution of the SignedTransaction (see example ) or during application of some ActionReceipt which contains FunctionCall action. The result of the FunctionCall could either","breadcrumbs":"Runtime specification » Creating Receipt","id":"67","title":"Creating Receipt"},"68":{"body":"Runtime doesn't expect that Receipts are coming in a particular order. Each Receipt is processed individually. The goal of the Receipt Matching process is to match all ActionReceipts to the corresponding DataReceipts .","breadcrumbs":"Runtime specification » Receipt Matching","id":"68","title":"Receipt Matching"},"69":{"body":"For each incoming ActionReceipt runtime checks whether we have all the DataReceipts (defined as ActionsReceipt.input_data_ids ) required for execution. If all the required DataReceipts are already in the storage , runtime can apply this ActionReceipt immediately. Otherwise we save this receipt as a Postponed ActionReceipt . Also we save Pending DataReceipts Count and a link from pending DataReceipt to the Postponed ActionReceipt . Now runtime will wait all the missing DataReceipts to apply the Postponed ActionReceipt. Postponed ActionReceipt A Receipt which runtime stores until all the designated DataReceipts arrive. key = account_id,receipt_id value = [u8] Where account_id is Receipt.receiver_id , receipt_id is Receipt.receiver_id and value is a serialized Receipt (which type must be ActionReceipt ). Pending DataReceipt Count A counter which counts pending DataReceipts for a Postponed Receipt initially set to the length of missing input_data_ids of the incoming ActionReceipt. It's decrementing with every new received DataReceipt : key = account_id,receipt_id value = u32 Where account_id is AccountId, receipt_id is CryptoHash and value is an integer. Pending DataReceipt for Postponed ActionReceipt We index each pending DataReceipt so when a new DataReceipt arrives we can find to which Postponed Receipt it belongs. key = account_id,data_id value = receipt_id","breadcrumbs":"Runtime specification » Processing ActionReceipt","id":"69","title":"Processing ActionReceipt"},"7":{"body":"NEAR Protocol has an account names system. Account ID is similar to a username. Account IDs have to follow the rules.","breadcrumbs":"Data Structures » Account ID","id":"7","title":"Account ID"},"70":{"body":"Received DataReceipt First of all, runtime saves the incoming DataReceipt to the storage as: key = account_id,data_id value = [u8] Where account_id is Receipt.receiver_id , data_id is DataReceipt.data_id and value is a DataReceipt.data (which is typically a serialized result of the call to a particular contract). Next, runtime checks if there is any Postponed ActionReceipt awaits for this DataReceipt by querying Pending DataReceipt to the Postponed Receipt . If there is no postponed receipt_id yet, we do nothing else. If there is a postponed receipt_id, we do the following: decrement Pending Data Count for the postponed receipt_id remove found Pending DataReceipt to the Postponed ActionReceipt If Pending DataReceipt Count is now 0 that means all the Receipt.input_data_ids are in storage and runtime can safely apply the Postponed Receipt and remove it from the store.","breadcrumbs":"Runtime specification » Processing DataReceipt","id":"70","title":"Processing DataReceipt"},"71":{"body":"Suppose runtime got the following ActionReceipt: # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt_id: \"693406\" receipt: ActionReceipt { input_data_ids: [] }\n} If execution return Result::Value Suppose runtime got the following ActionReceipt (we use a python-like pseudo code): # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt_id: \"5e73d4\" receipt: ActionReceipt { input_data_ids: [\"e5fa44\", \"7448d8\"] }\n} We can't apply this receipt right away: there are missing DataReceipt'a with IDs: [\"e5fa44\", \"7448d8\"]. Runtime does the following: postponed_receipts[\"alice,5e73d4\"] = borsh_serialize( Receipt{ receiver_id: \"alice\", receipt_id: \"5e73d4\" receipt: ActionReceipt { input_data_ids: [\"e5fa44\", \"7448d8\"] } }\n)\npending_data_receipt_store[\"alice,e5fa44\"] = \"5e73d4\"\npending_data_receipt_store[\"alice,7448d8\"] = \"5e73d4\"\npending_data_receipt_count = 2 Note: the subsequent Receipts could arrived in the current block or next, that's why we save Postponed ActionReceipt in the storage Then the first pending Pending DataReceipt arrives: # Non-relevant fields are omitted.\nReceipt { receiver_id: \"alice\", receipt: DataReceipt { data_id: \"e5fa44\", data: \"some data for alice\", }\n} data_receipts[\"alice,e5fa44\"] = borsh_serialize(Receipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"e5fa44\", data: \"some data for alice\", }\n};\npending_data_receipt_count[\"alice,5e73d4\"] = 1`\ndel pending_data_receipt_store[\"alice,e5fa44\"] And finally the last Pending DataReceipt arrives: # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"7448d8\", data: \"some more data for alice\", }\n} data_receipts[\"alice,7448d8\"] = borsh_serialize(Receipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"7448d8\", data: \"some more data for alice\", }\n};\npostponed_receipt_id = pending_data_receipt_store[\"alice,5e73d4\"]\npostponed_receipt = postponed_receipts[postponed_receipt_id]\ndel postponed_receipts[postponed_receipt_id]\ndel pending_data_receipt_count[\"alice,5e73d4\"]\ndel pending_data_receipt_store[\"alice,7448d8\"]\napply_receipt(postponed_receipt)","breadcrumbs":"Runtime specification » Case 1: Call to multiple contracts and await responses","id":"71","title":"Case 1: Call to multiple contracts and await responses"},"72":{"body":"In the following sections we go over the common scenarios that runtime takes care of.","breadcrumbs":"Runtime specification » Scenarios","id":"72","title":"Scenarios"},"73":{"body":"Suppose Alice wants to transfer 100 tokens to Bob. In this case we are talking about native Near Protocol tokens, oppose to user-defined tokens implemented through a smart contract. There are several way this can be done: Direct transfer through a transaction containing transfer action; Alice calling a smart contract that in turn creates a financial transaction towards Bob. In this section we are talking about the former simpler scenario.","breadcrumbs":"Runtime specification » Scenarios » Financial Transaction","id":"73","title":"Financial Transaction"},"74":{"body":"For this to work both Alice and Bob need to have accounts and an access to them through the full access keys . Suppose Alice has account alice_near and Bob has account bob_near. Also, some time in the past, each of them has created a public-secret key-pair, saved the secret key somewhere (e.g. in a wallet application) and created a full access key with the public key for the account. We also need to assume that both Alice and Bob has some number of tokens on their accounts. Alice needs >100 tokens on the account so that she could transfer 100 tokens to Bob, but also Alice and Bob need to have some tokens to pay for the rent of their account -- which is essentially the cost of the storage occupied by the account in the Near Protocol network.","breadcrumbs":"Runtime specification » Scenarios » Pre-requisites","id":"74","title":"Pre-requisites"},"75":{"body":"To send the transaction neither Alice nor Bob need to run a node. However, Alice needs a way to create and sign a transaction structure. Suppose Alice uses near-shell or any other third-party tool for that. The tool then creates the following structure: Transaction { signer_id: \"alice_near\", public_key: \"ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy\", nonce: 57, receiver_id: \"bob_near\", block_hash: \"CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf\", actions: vec![ Action::Transfer(TransferAction {deposit: 100} ) ],\n} Which contains one token transfer action, the id of the account that signs this transaction (alice_near) the account towards which this transaction is addressed (bob_near). Alice also uses the public key associated with one of the full access keys of alice_near account. Additionally, Alice uses the nonce which is unique value that allows Near Protocol to differentiate the transactions (in case there are several transfers coming in rapid succession) which should be strictly increasing with each transaction. Unlike in Ethereum, nonces are associated with access keys, oppose to the entire accounts, so several users using the same account through different access keys need not to worry about accidentally reusing each other's nonces. The block hash is used to calculate the transaction \"freshness\". It is used to make sure the transaction does not get lost (let's say somewhere in the network) and then arrive hours, days, or years later when it is not longer relevant or would be undesirable to execute. The transaction does not need to arrive at the specific block, instead it is required to arrive within certain number of blocks from the bock identified by the block_hash (as of 2019-10-27 the constant is 10 blocks). Any transaction arriving outside this threshold is considered to be invalid. near-shell or other tool that Alice uses then signs this transaction, by: computing the hash of the transaction and signing it with the secret key, resulting in a SignedTransaction object.","breadcrumbs":"Runtime specification » Scenarios » Creating a transaction","id":"75","title":"Creating a transaction"},"76":{"body":"To send the transaction, near-shell connects through the RPC to any Near Protocol node and submits it. If users wants to wait until the transaction is processed they can use send_tx_commit JSONRPC method which waits for the transaction to appear in a block. Otherwise the user can use send_tx_async.","breadcrumbs":"Runtime specification » Scenarios » Sending the transaction","id":"76","title":"Sending the transaction"},"77":{"body":"We skip the details on how the transaction arrives to be processed by the runtime, since it is a part of the blockchain layer discussion. We consider the moment where SignedTransaction is getting passed to Runtime::apply of the runtime crate. Runtime::apply immediately passes transaction to Runtime::process_transaction which in turn does the following: Verifies that transaction is valid; Applies initial reversible and irreversible charges to alice_near account; Creates a receipt with the same set of actions directed towards bob_near. The first two items are performed inside Runtime::verify_and_charge_transaction method. Specifically it does the following checks: Verifies that alice_near and bob_near are syntactically valid account ids; Verifies that the signature of the transaction is correct based on the transaction hash and the attached public key; Retrieves the latest state of the alice_near account, and simultaneously checks that it exists; Retrieves the state of the access key of that alice_near used to sign the transaction; Checks that transaction nonce is greater than the nonce of the latest transaction executed with that access key; Checks whether the account that signed the transaction is the same as the account that receives it. In our case the sender (alice_near) and the receiver (bob_near) are not the same. We apply different fees if receiver and sender is the same account; Applies the storage rent to the alice_near account; Computes how much gas we need to spend to convert this transaction to a receipt; Computes how much balance we need to subtract from alice_near, in this case it is 100 tokens; Deducts the tokens and the gas from alice_near balance, using the current gas price; Checks whether after all these operations account has enough balance to passively pay for the rent for the next several blocks (an economical constant defined by Near Protocol). Otherwise account will be open for an immediate deletion, which we do not want; Updates the alice_near account with the new balance and the used access key with the new nonce; Computes how much reward should be paid to the validators from the burnt gas. If any of the above operations fail all of the changes will be reverted.","breadcrumbs":"Runtime specification » Scenarios » Transaction to receipt","id":"77","title":"Transaction to receipt"},"78":{"body":"The receipt created in the previous section will eventually arrive to a runtime on the shard that hosts bob_near account. Again, it will be processed by Runtime::apply which will immediately call Runtime::process_receipt. It will check that this receipt does not have data dependencies (which is only the case of function calls) and will then call Runtime::apply_action_receipt on TransferAction. Runtime::apply_action_receipt will perform the following checks: Retrieves the state of bob_near account, if it still exists (it is possible that Bob has deleted his account concurrently with the transfer transaction); Applies the rent to Bob's account; Computes the cost of processing a receipt and a transfer action; Checks if bob_near still exists and if it is deposits the transferred tokens; Computes how much reward should be paid to the validators from the burnt gas.","breadcrumbs":"Runtime specification » Scenarios » Processing receipt","id":"78","title":"Processing receipt"},"79":{"body":"This guide assumes that you have read the Financial Transaction section. Suppose Alice is a calling a function reserve_trip(city: String, date: u64) on a smart contract deployed to a travel_agency account which in turn calls reserve(date: u64) on a smart contract deployed to a hotel_near account and attaches a callback to method hotel_reservation_complete(date: u64) on travel_agency.","breadcrumbs":"Runtime specification » Scenarios » Cross-Contract Call","id":"79","title":"Cross-Contract Call"},"8":{"body":"minimum length is 2 maximum length is 64 Account ID consists of Account ID parts separated by . Account ID part consists of lowercase alphanumeric symbols separated by either _ or -. Account names are similar to a domain names. Anyone can create a top level account (TLA) without separators, e.g. near. Only near can create alice.near. And only alice.near can create app.alice.near and so on. Note, near can NOT create app.alice.near directly. Regex for a full account ID, without checking for length: ^(([a-z\\d]+[\\-_])*[a-z\\d]+\\.)*([a-z\\d]+[\\-_])*[a-z\\d]+$","breadcrumbs":"Data Structures » Account ID Rules","id":"8","title":"Account ID Rules"},"80":{"body":"It possible for Alice to call the travel_agency in several different ways. In the simplest scenario Alice has an account alice_near and she has a full access key. She then composes the following transaction that calls the travel_agency: Transaction { signer_id: \"alice_near\", public_key: \"ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy\", nonce: 57, receiver_id: \"travel_agency\", block_hash: \"CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf\", actions: vec![ Action::FunctionCall(FunctionCallAction { method_name: \"reserve_trip\", args: \"{\\\"city\\\": \\\"Venice\\\", \\\"date\\\": 20191201}\", gas: 1000000, tokens: 100, }) ],\n} Here the public key corresponds to the full access key of alice_near account. All other fields in Transaction were discussed in the Financial Transaction section. The FunctionCallAction action describes how the contract should be called. The receiver_id field in Transaction already establishes what contract should be executed, FunctionCallAction merely describes how it should be executed. Interestingly, the arguments is just a blob of bytes, it is up to the contract developer what serialization format they choose for their arguments. In this example, the contract developer has chosen to use JSON and so the tool that Alice uses to compose this transaction is expected to use JSON too to pass the arguments. gas declares how much gas alice_near has prepaid for dynamically calculated fees of the smart contract executions and other actions that this transaction may spawn. The tokens is the amount of alice_near attaches to be deposited to whatever smart contract that it is calling to. Notice, gas and tokens are in different units of measurement. Now, consider a slightly more complex scenario. In this scenario Alice uses a restricted access key to call the function. That is the permission of the access key is not AccessKeyPermission::FullAccess but is instead: AccessKeyPermission::FunctionCall(FunctionCallPermission) where FunctionCallPermission { allowance: Some(3000), receiver_id: \"travel_agency\", method_names: [ \"reserve_trip\", \"cancel_trip\" ]\n} This scenario might arise when someone Alice's parent has given them a restricted access to alice_near account by creating an access key that can be used strictly for trip management. This access key allows up to 3000 tokens to be spent (which includes token transfers and payments for gas), it can be only used to call travel_agency and it can be only used with the reserve_trip and cancel_trip methods. The way runtime treats this case is almost exactly the same as the previous one, with the only difference on how it verifies the signature of on the signed transaction, and that it also checks for allowance to not be exceeded. Finally, in the last scenario, Alice does not have an account (or the existence of alice_near is irrelevant). However, alice has full or restricted access key directly on travel_agency account. In that case signer_id == receiver_id in the Transaction object and runtime will convert transaction to the first receipt and apply that receipt in the same block. This section will focus on the first scenario, since the other two are the same with some minor differences.","breadcrumbs":"Runtime specification » Scenarios » Pre-requisites","id":"80","title":"Pre-requisites"},"81":{"body":"The process of converting transaction to receipt is very similar to the Financial Transaction with several key points to note: Since Alice attaches 100 tokens to the function call, we subtract them from alice_near upon converting transaction to receipt, similar to the regular financial transaction; Since we are attaching 1000000 prepaid gas, we will not only subtract the gas costs of processing the receipt from alice_near, but will also purchase 1000000 gas using the current gas price.","breadcrumbs":"Runtime specification » Scenarios » Transaction to receipt","id":"81","title":"Transaction to receipt"},"82":{"body":"The receipt created on the shard that hosts alice_near will eventually arrive to the shard hosting travel_agency account. It will be processed in Runtime::apply which will check that receipt does not have data dependencies (which is the case because this function call is not a callback) and will call Runtime::apply_action_receipt. At this point receipt processing is similar to receipt processing from the Financial Transaction section, with one difference that we will also call action_function_call which will do the following: Retrieve the Wasm code of the smart contract (either from the database or from the cache); Initialize runtime context through VMContext and create RuntimeExt which provides access to the trie when the smart contract call the storage API. Specifically \"{\\\"city\\\": \\\"Venice\\\", \\\"date\\\": 20191201}\" arguments will be set in VMContext. Calls near_vm_runner::run which does the following: Inject gas, stack, and other kinds of metering; Verify that Wasm code does not use floats; Checks that bindings API functions that the smart contract is trying to call are actually those provided by near_vm_logic; Compiles Wasm code into the native binary; Calls reserve_trip on the smart contract. During the execution of the smart contract it will at some point call promise_create and promise_then, which will call method on RuntimeExt that will record that two promises were created and that the second one should wait on the first one. Specifically, promise_create will call RuntimeExt::create_receipt(vec![], \"hotel_near\") returning 0 and then RuntimeExt::create_receipt(vec![0], \"travel_agency\"); action_function_call then collects receipts from VMContext along with the execution result, logs, and information about used gas; apply_action_receipt then goes over the collected receipts from each action and returns them at the end of Runtime::apply together with other receipts.","breadcrumbs":"Runtime specification » Scenarios » Processing the reserve_trip receipt","id":"82","title":"Processing the reserve_trip receipt"},"83":{"body":"This receipt will have output_data_receivers with one element corresponding to the receipt that calls hotel_reservation_complete, which will tell the runtime that it should create DataReceipt and send it towards travel_agency once the execution of reserve(date: u64) is complete. The rest of the smart contract execution is similar to the above.","breadcrumbs":"Runtime specification » Scenarios » Processing the reserve receipt","id":"83","title":"Processing the reserve receipt"},"84":{"body":"Upon receiving the hotel_reservation_complete receipt the runtime will notice that its input_data_ids is not empty which means that it cannot be executed until reserve receipt is complete. It will store the receipt in the trie together with the counter of how many DataReceipt it is waiting on. It will not call the Wasm smart contract at this point.","breadcrumbs":"Runtime specification » Scenarios » Processing the hotel_reservation_complete receipt","id":"84","title":"Processing the hotel_reservation_complete receipt"},"85":{"body":"Once the runtime receives the DataReceipt it takes the receipt with hotel_reservation_complete function call and executes it following the same execution steps as with the reserve_trip receipt.","breadcrumbs":"Runtime specification » Scenarios » Processing the DataReceipt","id":"85","title":"Processing the DataReceipt"},"86":{"body":"Here is the high-level diagram of various runtime components, including some blockchain layer components.","breadcrumbs":"Runtime specification » Components","id":"86","title":"Components"},"87":{"body":"Runtime crate encapsulates the logic of how transactions and receipts should be handled. If it encounters a smart contract call within a transaction or a receipt it calls near-vm-runner, for all other actions, like account creation, it processes them in-place.","breadcrumbs":"Runtime specification » Components » Runtime crate","id":"87","title":"Runtime crate"},"88":{"body":"The main entry point of the Runtime is method apply. It applies new singed transactions and incoming receipts for some chunk/shard on top of given trie and the given state root. If the validator accounts update is provided, updates validators accounts. All new signed transactions should be valid and already verified by the chunk producer. If any transaction is invalid, the method returns an InvalidTxError. In case of success, the method returns ApplyResult that contains the new state root, trie changes, new outgoing receipts, stats for validators (e.g. total rent paid by all the affected accounts), execution outcomes.","breadcrumbs":"Runtime specification » Components » Runtime class","id":"88","title":"Runtime class"},"89":{"body":"It takes the following arguments: trie: Arc - the trie that contains the latest state. root: CryptoHash - the hash of the state root in the trie. validator_accounts_update: &Option - optional field that contains updates for validator accounts. It's provided at the beginning of the epoch or when someone is slashed. apply_state: &ApplyState - contains block index and timestamp, epoch length, gas price and gas limit. prev_receipts: &[Receipt] - the list of incoming receipts, from the previous block. transactions: &[SignedTransaction] - the list of new signed transactions.","breadcrumbs":"Runtime specification » Components » Apply arguments","id":"89","title":"Apply arguments"},"9":{"body":"Name Value REGISTRAR_ACCOUNT_ID registrar MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH 32 Top level account names (TLAs) are very valuable as they provide root of trust and discoverability for companies, applications and users. To allow for fair access to them, the top level account names that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters going to be auctioned off. Specifically, only REGISTRAR_ACCOUNT_ID account can create new top level accounts that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters. REGISTRAR_ACCOUNT_ID implements standard Account Naming (link TODO) interface to allow create new accounts. def action_create_account(predecessor_id, account_id): \"\"\"Called on CreateAccount action in receipt.\"\"\" if len(account_id) < MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH and predecessor_id != REGISTRAR_ACCOUNT_ID: raise CreateAccountOnlyByRegistrar(account_id, REGISTRAR_ACCOUNT_ID, predecessor_id) # Otherwise, create account with given `account_id`. Note: we are not going to deploy registrar auction at launch, instead allow to deploy it by Foundation after initial launch. The link to details of the auction will be added here in the next spec release post MainNet.","breadcrumbs":"Data Structures » Top Level Accounts","id":"9","title":"Top Level Accounts"},"90":{"body":"The execution consists of the following stages: Snapshot the initial state. Apply validator accounts update, if available. Convert new signed transactions into the receipts. Process receipts. Check that incoming and outgoing balances match. Finalize trie update. Return ApplyResult.","breadcrumbs":"Runtime specification » Components » Apply logic","id":"90","title":"Apply logic"},"91":{"body":"Validator accounts are accounts that staked some tokens to become a validator. The validator accounts update usually happens when the current chunk is the first chunk of the epoch. It also happens when there is a challenge in the current block with one of the participants belong to the current shard. This update distributes validator rewards, return locked tokens and maybe slashes some accounts out of their stake.","breadcrumbs":"Runtime specification » Components » Validator accounts update","id":"91","title":"Validator accounts update"},"92":{"body":"New signed transaction transactions are provided by the chunk producer in the chunk. These transactions should be ordered and already validated. Runtime does validation again for the following reasons: to charge accounts for transactions fees, transfer balances, prepaid gas and account rents; to create new receipts; to compute burnt gas; to validate transactions again, in case the chunk producer was malicious. If the transaction has the the same signer_id and receiver_id, then the new receipt is added to the list of new local receipts, otherwise it's added to the list of new outgoing receipts.","breadcrumbs":"Runtime specification » Components » Signed Transaction conversion","id":"92","title":"Signed Transaction conversion"},"93":{"body":"Receipts are processed one by one in the following order: Previously delayed receipts from the state. New local receipts. New incoming receipts. After each processed receipt, we compare total gas burnt (so far) with the gas limit. When the total gas burnt reaches or exceeds the gas limit, the processing stops. The remaining receipts are considered delayed and stored into the state.","breadcrumbs":"Runtime specification » Components » Receipt processing","id":"93","title":"Receipt processing"},"94":{"body":"Delayed receipts are stored as a persistent queue in the state. Initially, the first unprocessed index and the next available index are initialized to 0. When a new delayed receipt is added, it's written under the next available index in to the state and the next available index is incremented by 1. When a delayed receipt is processed, it's read from the state using the first unprocessed index and the first unprocessed index is incremented. At the end of the receipt processing, the all remaining local and incoming receipts are considered to be delayed and stored to the state in their respective order. If during receipt processing, we've changed indices, then the delayed receipt indices are stored to the state as well.","breadcrumbs":"Runtime specification » Components » Delayed receipts","id":"94","title":"Delayed receipts"},"95":{"body":"The receipt processing algorithm is the following: Read indices from the state or initialize with zeros. While the first unprocessed index is less than the next available index do the following If the total burnt gas is at least the gas limit, break. Read the receipt from the first unprocessed index. Remove the receipt from the state. Increment the first unprocessed index. Process the receipt. Add the new burnt gas to the total burnt gas. Remember that the delayed queue indices has changed. Process the new local receipts and then the new incoming receipts If the total burnt gas is less then the gas limit: Process the receipt. Add the new burnt gas to the total burnt gas. Else: Store the receipt under the next available index. Increment the next available index. Remember that the delayed queue indices has changed. If the delayed queue indices has changed, store the new indices to the state.","breadcrumbs":"Runtime specification » Components » Receipt processing algorithm","id":"95","title":"Receipt processing algorithm"},"96":{"body":"Balance checker computes the total incoming balance and the total outgoing balance. The total incoming balance consists of the following: Incoming validator rewards from validator accounts update. Sum of the initial accounts balances for all affected accounts. We compute it using the snapshot of the initial state. Incoming receipts balances. The prepaid fees and gas multiplied their gas prices with the attached balances from transfers and function calls. Refunds are considered to be free of charge for fees, but still has attached deposits. Balances for the processed delayed receipts. Initial balances for the postponed receipts. Postponed receipts are receipts from the previous blocks that were processed, but were not executed. They are action receipts with some expected incoming data. Usually for a callback on top of awaited promise. When the expected data arrives later than the action receipt, then the action receipt is postponed. Note, the data receipts are 0 cost, because they are completely prepaid when issued. The total outgoing balance consists of the following: Sum of the final accounts balance for all affected accounts. Outgoing receipts balances. New delayed receipts. Local and incoming receipts that were not processed this time. Final balances for the postponed receipts. Total rent paid by all affected accounts. Total new validator rewards. It's computed from total gas burnt rewards. Total balance burnt. In case the balance is burnt for some reason (e.g. account was deleted during the refund), it's accounted there. Total balance slashed. In case a validator is slashed for some reason, the balance is account here. When you sum up incoming balances and outgoing balances, they should match. If they don't match, we throw an error.","breadcrumbs":"Runtime specification » Components » Balance checker","id":"96","title":"Balance checker"},"97":{"body":"This is the low-level interface available to the smart contracts, it consists of the functions that the host (represented by Wasmer inside near-vm-runner) exposes to the guest (the smart contract compiled to Wasm). Due to Wasm restrictions the methods operate only with primitive types, like u64. Also for all functions in the bindings specification the following is true: Method execution could result in MemoryAccessViolation error if one of the following happens: The method causes host to read a piece of memory from the guest but it points outside the guest's memory; The guest causes host to read from the register, but register id is invalid. Execution of a bindings function call result in an error being generated. This error causes execution of the smart contract to be terminated and the error message written into the logs of the transaction that caused the execution. Many bindings functions can throw specialized error messages, but there is also a list of error messages that can be thrown by almost any function: IntegerOverflow -- happens when guest passes some data to the host but when host tries to apply arithmetic operation on it it causes overflow or underflow; GasExceeded -- happens when operation performed by the guest causes more gas than the remaining prepaid gas; GasLimitExceeded -- happens when the execution uses more gas than allowed by the global limit imposed in the economics config; StorageError -- happens when method fails to do some operation on the trie. The following binding methods cannot be invoked in a view call: signer_account_id signer_account_pk predecessor_account_id attached_deposit prepaid_gas used_gas promise_create promise_then promise_and promise_batch_create promise_batch_then promise_batch_action_create_account promise_batch_action_deploy_account promise_batch_action_function_call promise_batch_action_transfer promise_batch_action_stake promise_batch_action_add_key_with_full_access promise_batch_action_add_key_with_function_call promise_batch_action_delete_key promise_batch_action_delete_account promise_results_count promise_result promise_return If they are invoked the smart contract execution will panic with ProhibitedInView().","breadcrumbs":"Runtime specification » Components » Bindings Specification","id":"97","title":"Bindings Specification"},"98":{"body":"Registers allow the host function to return the data into a buffer located inside the host oppose to the buffer located on the client. A special operation can be used to copy the content of the buffer into the host. Memory pointers can then be used to point either to the memory on the guest or the memory on the host, see below. Benefits: We can have functions that return values that are not necessarily used, e.g. inserting key-value into a trie can also return the preempted old value, which might not be necessarily used. Previously, if we returned something we would have to pass the blob from host into the guest, even if it is not used; We can pass blobs of data between host functions without going through the guest, e.g. we can remove the value from the storage and insert it into under a different key; It makes API cleaner, because we don't need to pass buffer_len and buffer_ptr as arguments to other functions; It allows merging certain functions together, see storage_iter_next; This is consistent with other APIs that were created for high performance, e.g. allegedly Ewasm have implemented SNARK-like computations in Wasm by exposing a bignum library through stack-like interface to the guest. The guest can manipulate then with the stack of 256-bit numbers that is located on the host. Host → host blob passing The registers can be used to pass the blobs between host functions. For any function that takes a pair of arguments *_len: u64, *_ptr: u64 this pair is pointing to a region of memory either on the guest or the host: If *_len != u64::MAX it points to the memory on the guest; If *_len == u64::MAX it points to the memory under the register *_ptr on the host. For example: storage_write(u64::MAX, 0, u64::MAX, 1, 2) -- insert key-value into storage, where key is read from register 0, value is read from register 1, and result is saved to register 2. Note, if some function takes register_id then it means this function can copy some data into this register. If register_id == u64::MAX then the copying does not happen. This allows some micro-optimizations in the future. Note, we allow multiple registers on the host, identified with u64 number. The guest does not have to use them in order and can for instance save some blob in register 5000 and another value in register 1. Specification read_register(register_id: u64, ptr: u64) Writes the entire content from the register register_id into the memory of the guest starting with ptr. Panics If the content extends outside the memory allocated to the guest. In Wasmer, it returns MemoryAccessViolation error message; If register_id is pointing to unused register returns InvalidRegisterId error message. Undefined Behavior If the content of register extends outside the preallocated memory on the host side, or the pointer points to a wrong location this function will overwrite memory that it is not supposed to overwrite causing an undefined behavior. register_len(register_id: u64) -> u64 Returns the size of the blob stored in the given register. Normal operation If register is used, then returns the size, which can potentially be zero; If register is not used, returns u64::MAX","breadcrumbs":"Runtime specification » Components » Bindings Specification » Registers API","id":"98","title":"Registers API"},"99":{"body":"Here we provide a specification of trie API. After this NEP is merged, the cases where our current implementation does not follow the specification are considered to be bugs that need to be fixed. storage_write(key_len: u64, key_ptr: u64, value_len: u64, value_ptr: u64, register_id: u64) -> u64 Writes key-value into storage. Normal operation If key is not in use it inserts the key-value pair and does not modify the register; If key is in use it inserts the key-value and copies the old value into the register_id. Returns If key was not used returns 0; If key was used returns 1. Panics If key_len + key_ptr or value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation. (When we say that something panics with the given error we mean that we use Wasmer API to create this error and terminate the execution of VM. For mocks of the host that would only cause a non-name panic.) If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs External::storage_set trait can return an error which is then converted to a generic non-descriptive StorageUpdateError, here however the actual implementation does not return error at all, see ; Does not return into the registers. storage_read(key_len: u64, key_ptr: u64, register_id: u64) -> u64 Reads the value stored under the given key. Normal operation If key is used copies the content of the value into the register_id, even if the content is zero bytes; If key is not present then does not modify the register. Returns If key was not present returns 0; If key was present returns 1. Panics If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs This function currently does not exist. storage_remove(key_len: u64, key_ptr: u64, register_id: u64) -> u64 Removes the value stored under the given key. Normal operation Very similar to storage_read: If key is used, removes the key-value from the trie and copies the content of the value into the register_id, even if the content is zero bytes. If key is not present then does not modify the register. Returns If key was not present returns 0; If key was present returns 1. Panics If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; If the registers exceed the memory limit panics with MemoryAccessViolation; If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs Does not return into the registers. storage_has_key(key_len: u64, key_ptr: u64) -> u64 Checks if there is a key-value pair. Normal operation If key is used returns 1, even if the value is zero bytes; Otherwise returns 0. Panics If key_len + key_ptr exceeds the memory container it panics with MemoryAccessViolation; storage_iter_prefix(prefix_len: u64, prefix_ptr: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Creates an iterator object inside the host. Returns the identifier that uniquely differentiates the given iterator from other iterators that can be simultaneously created. Normal operation It iterates over the keys that have the provided prefix. The order of iteration is defined by the lexicographic order of the bytes in the keys. If there are no keys, it creates an empty iterator, see below on empty iterators; Panics If prefix_len + prefix_ptr exceeds the memory container it panics with MemoryAccessViolation; storage_iter_range(start_len: u64, start_ptr: u64, end_len: u64, end_ptr: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Similarly to storage_iter_prefix creates an iterator object inside the host. Normal operation Unless lexicographically start < end, it creates an empty iterator. Iterates over all key-values such that keys are between start and end, where start is inclusive and end is exclusive. Note, this definition allows for start or end keys to not actually exist on the given trie. Panics: If start_len + start_ptr or end_len + end_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; storage_iter_next(iterator_id: u64, key_register_id: u64, value_register_id: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Advances iterator and saves the next key and value in the register. Normal operation If iterator is not empty (after calling next it points to a key-value), copies the key into key_register_id and value into value_register_id and returns 1; If iterator is empty returns 0. This allows us to iterate over the keys that have zero bytes stored in values. Panics If key_register_id == value_register_id panics with MemoryAccessViolation; If the registers exceed the memory limit panics with MemoryAccessViolation; If iterator_id does not correspond to an existing iterator panics with InvalidIteratorId If between the creation of the iterator and calling storage_iter_next any modification to storage was done through storage_write or storage_remove the iterator is invalidated and the error message is IteratorWasInvalidated. Current bugs Not implemented, currently we have storage_iter_next and data_read + DATA_TYPE_STORAGE_ITER that together fulfill the purpose, but have unspecified behavior.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Trie API","id":"99","title":"Trie API"}},"length":280,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}},"3":{"df":1,"docs":{"259":{"tf":1.0}}},"5":{"df":1,"docs":{"262":{"tf":1.0}}},"9":{"df":2,"docs":{"262":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"70":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"x":{"0":{"0":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"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":{}}}}},"0":{"*":{"*":{"1":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"258":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"275":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"276":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"46":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"275":{"tf":2.0}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"^":{"1":{"8":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":2.0}}},"df":0,"docs":{}},"df":3,"docs":{"259":{"tf":1.4142135623730951},"277":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"43":{"tf":2.6457513110645907}}},"4":{"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"5":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"5":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"4":{"8":{"df":1,"docs":{"100":{"tf":1.0}}},"9":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":3,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.0},"104":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"!":{"/":{"_":{"3":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":3.872983346207417},"44":{"tf":2.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.23606797749979}}},"2":{"*":{"*":{"1":{"2":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"3":{"df":2,"docs":{"31":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"9":{"1":{"2":{"0":{"1":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"75":{"tf":1.0}}},"\\":{"!":{"/":{"_":{"3":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":5.5677643628300215},"64":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"df":4,"docs":{"137":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":5.0990195135927845}}},"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{",":{"2":{"0":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"98":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}},"df":2,"docs":{"274":{"tf":2.0},"43":{"tf":3.3166247903554}},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"9":{"3":{"4":{".":{".":{".":{"df":0,"docs":{},"e":{"2":{"4":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":2.0}}},"9":{".":{"0":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.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":{"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"]":{")":{"*":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}},"a":{".":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":7,"docs":{"137":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"250":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"11":{"tf":3.605551275463989},"12":{"tf":3.605551275463989},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"82":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"12":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0}},"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":{"12":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"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},"80":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"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":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"11":{"tf":1.0},"38":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":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":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{",":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"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":{"12":{"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":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.8284271247461903},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":3.0},"102":{"tf":1.4142135623730951},"11":{"tf":4.242640687119285},"12":{"tf":2.6457513110645907},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"19":{"tf":2.449489742783178},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":3.7416573867739413},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":3.3166247903554},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.23606797749979},"77":{"tf":3.1622776601683795},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"96":{"tf":3.0}},"i":{"d":{"df":14,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":2.6457513110645907},"28":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"s":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":3,"docs":{"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":5.291502622129181},"12":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":15,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"65":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903}}}}},"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"29":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"161":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":9,"docs":{"156":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"j":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"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":2,"docs":{"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"k":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":1,"docs":{"276":{"tf":4.123105625617661}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":10,"docs":{"274":{"tf":2.0},"275":{"tf":3.3166247903554},"46":{"tf":1.4142135623730951},"71":{"tf":3.3166247903554},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":3.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"180":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.3166247903554}}}}}},"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":2.6457513110645907},"277":{"tf":3.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"275":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}},"p":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":3.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"50":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":17,"docs":{"34":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"df":7,"docs":{"28":{"tf":3.1622776601683795},"29":{"tf":3.3166247903554},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":2.6457513110645907}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"0":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"2":{"df":1,"docs":{"46":{"tf":1.0}}},"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":1,"docs":{"101":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"153":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"89":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"19":{"tf":1.7320508075688772},"272":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"52":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":2.449489742783178},"14":{"tf":1.0},"179":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}}},"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":1,"docs":{"105":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"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":{},"i":{"d":{"df":3,"docs":{"12":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"278":{"tf":1.0}}},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"'":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"1":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"1":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}},"2":{"df":1,"docs":{"34":{"tf":2.0}}},"c":{"df":1,"docs":{"34":{"tf":4.242640687119285}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"100":{"tf":1.0},"104":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":22,"docs":{"102":{"tf":2.0},"11":{"tf":3.0},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"263":{"tf":2.0},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"277":{"tf":2.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"77":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":4.47213595499958}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":36,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"18":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"262":{"tf":1.7320508075688772},"277":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":3.0},"23":{"tf":1.0},"38":{"tf":2.23606797749979},"43":{"tf":1.7320508075688772},"44":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":6,"docs":{"27":{"tf":5.385164807134504},"29":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"43":{"tf":4.123105625617661}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"14":{"tf":1.0},"273":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"33":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}}}},"w":{"df":7,"docs":{"101":{"tf":1.0},"18":{"tf":1.4142135623730951},"260":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"100":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.7320508075688772},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"246":{"tf":1.0},"49":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"d":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"o":{"b":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"53":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"df":19,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":6.164414002968976},"28":{"tf":2.6457513110645907},"29":{"tf":3.605551275463989},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":5.916079783099616},"35":{"tf":1.7320508075688772},"36":{"tf":3.605551275463989},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"'":{"df":2,"docs":{"274":{"tf":1.0},"78":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}}},"x":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"e":{"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"101":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{".":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"g":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"99":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}},"y":{"df":2,"docs":{"262":{"tf":1.0},"276":{"tf":1.0}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"100":{"tf":3.1622776601683795},"272":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":42,"docs":{"100":{"tf":4.358898943540674},"101":{"tf":3.0},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"27":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":4.47213595499958},"277":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":2.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"272":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"12":{"tf":1.0},"263":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":1,"docs":{"43":{"tf":4.795831523312719}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"261":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"272":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":3.4641016151377544}},"e":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"263":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"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":{},"e":{"df":0,"docs":{},"v":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":14,"docs":{"118":{"tf":1.0},"23":{"tf":1.7320508075688772},"262":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"9":{"6":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"42":{"tf":1.0},"49":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"71":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"53":{"tf":1.0}}}}},"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":4,"docs":{"16":{"tf":1.0},"276":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"262":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"262":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":3.3166247903554},"272":{"tf":1.0},"43":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":3,"docs":{"18":{"tf":1.0},"36":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"s":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"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":{"275":{"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":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"273":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"260":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"99":{"tf":3.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":2.0},"99":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}}},"df":43,"docs":{"101":{"tf":3.872983346207417},"102":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"11":{"tf":3.7416573867739413},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":3.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":2.449489742783178},"276":{"tf":2.6457513110645907},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}},"t":{"df":6,"docs":{"47":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"105":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"100":{"tf":3.7416573867739413},"276":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":84,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"49":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"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":{},"r":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{"_":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"254":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"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":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":3.7416573867739413},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.1622776601683795}}},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"254":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"101":{"tf":3.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":3.872983346207417},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"'":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"df":1,"docs":{"65":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"140":{"tf":1.0},"159":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"11":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"252":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":3.4641016151377544},"70":{"tf":2.6457513110645907},"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"278":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"13":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":7,"docs":{"263":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":7,"docs":{"256":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"71":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"263":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{},"x":{".":{"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":{"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"262":{"tf":1.0}}}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"261":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"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":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"79":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":11,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":2,"docs":{"275":{"tf":1.0},"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"124":{"tf":1.0},"20":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"276":{"tf":5.196152422706632},"46":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.7320508075688772},"263":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"77":{"tf":1.0},"80":{"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":3,"docs":{"20":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"267":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.4641016151377544}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"113":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"262":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"257":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{":":{"3":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"7":{"7":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"3":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"1":{"df":0,"docs":{},"t":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"1":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"33":{"tf":1.0},"34":{"tf":3.7416573867739413}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"10":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"29":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.0},"84":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":2.0},"255":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"267":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"263":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":3.4641016151377544},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"272":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"262":{"tf":1.0},"263":{"tf":2.0},"35":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"236":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"[":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951}}}},"\\":{"_":{"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":{"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":{"114":{"tf":1.0},"259":{"tf":1.0}}}}}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":3.872983346207417},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"33":{"tf":3.0},"34":{"tf":4.123105625617661},"36":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":3,"docs":{"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.7320508075688772},"36":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"66":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":2.8284271247461903}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"74":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"20":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":3.3166247903554}},"e":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":39,"docs":{"100":{"tf":3.605551275463989},"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":3.7416573867739413},"221":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":3,"docs":{"20":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"176":{"tf":1.0},"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"35":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"278":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"176":{"tf":1.0}}}}},"r":{"a":{"df":2,"docs":{"263":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"34":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"28":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"71":{"tf":2.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"df":10,"docs":{"27":{"tf":3.1622776601683795},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"n":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"277":{"tf":2.449489742783178},"44":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":39,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"80":{"tf":1.0}}}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"172":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.4142135623730951},"145":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"12":{"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":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":2,"docs":{"13":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"100":{"tf":4.795831523312719},"101":{"tf":3.605551275463989},"102":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"263":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}},"g":{"a":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":2.449489742783178},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"58":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":2.449489742783178}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"27":{"tf":2.23606797749979},"32":{"tf":1.0}},"e":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"20":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"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":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":10,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"n":{"df":24,"docs":{"100":{"tf":4.242640687119285},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"273":{"tf":2.0},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":7,"docs":{"100":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.4142135623730951},"72":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":2,"docs":{"262":{"tf":1.0},"82":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"22":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"42":{"tf":2.8284271247461903},"43":{"tf":4.795831523312719}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"177":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"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":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":2,"docs":{"273":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"(":{"b":{")":{"+":{"2":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{")":{"+":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":2.0}}},"2":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"f":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"27":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{")":{")":{"+":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{")":{")":{"+":{"1":{"df":1,"docs":{"32":{"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":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":2.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"+":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"33":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"36":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.4142135623730951}},"l":{"df":3,"docs":{"278":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":3,"docs":{"267":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"44":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":3.4641016151377544},"105":{"tf":1.4142135623730951},"189":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"79":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"(":{"d":{"df":1,"docs":{"79":{"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":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"0":{"0":{"0":{"5":{"df":1,"docs":{"100":{"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"8":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"/":{"5":{"9":{"2":{"3":{"9":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":27,"docs":{"101":{"tf":2.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":2.0},"11":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"262":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"251":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"53":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"100":{"tf":2.23606797749979},"27":{"tf":2.0},"69":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178}}}},"i":{"c":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"237":{"tf":1.0},"252":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"101":{"tf":2.8284271247461903},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}},"r":{"df":2,"docs":{"22":{"tf":1.0},"271":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}},"f":{"a":{"c":{"df":6,"docs":{"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"278":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"267":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":3.605551275463989}}}}},"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":{"100":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"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":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":2.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"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":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.0},"43":{"tf":4.123105625617661},"44":{"tf":1.0},"99":{"tf":4.123105625617661}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"169":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"266":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"k":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"206":{"tf":1.0},"207":{"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":{},"p":{"df":4,"docs":{"100":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":51,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"11":{"tf":3.7416573867739413},"12":{"tf":3.7416573867739413},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"38":{"tf":2.6457513110645907},"43":{"tf":3.1622776601683795},"44":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":2.23606797749979},"77":{"tf":2.0},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":5.477225575051661}},"s":{".":{"df":0,"docs":{},"m":{"d":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.449489742783178},"27":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"263":{"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":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"71":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"272":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}},"v":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":3,"docs":{"27":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"104":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":2.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"265":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"t":{"'":{"df":3,"docs":{"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":2.0},"97":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"183":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"k":{"df":4,"docs":{"27":{"tf":2.0},"35":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"275":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":2,"docs":{"272":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"272":{"tf":2.23606797749979},"63":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"1":{"6":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"104":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"82":{"tf":1.0},"97":{"tf":1.0}},"i":{"c":{"df":6,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"262":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"w":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"75":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"98":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"262":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"267":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"9":{"9":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"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":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"179":{"tf":1.0},"277":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"275":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.449489742783178},"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795},"99":{"tf":3.3166247903554}}},"y":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.4641016151377544}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"g":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"64":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":2.449489742783178},"11":{"tf":1.0},"13":{"tf":2.0},"153":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":2.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":2,"docs":{"278":{"tf":1.0},"279":{"tf":1.0}}},"u":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"64":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"df":4,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"277":{"tf":1.0},"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"11":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":3.0},"36":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"273":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":2,"docs":{"274":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.23606797749979}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"+":{"1":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"153":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"258":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"0":{"1":{"9":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"#":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"d":{"df":20,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"261":{"tf":1.0}}},"p":{"#":{"0":{"0":{"0":{"6":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"168":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"_":{"a":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":17,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"231":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":5.477225575051661},"44":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"71":{"tf":2.0},"99":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"42":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"h":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"275":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"30":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"255":{"tf":1.0}}}},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"43":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":2.0}}}}},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":{},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"100":{"tf":1.0},"273":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":1.0},"18":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"255":{"tf":1.0},"29":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":2.23606797749979},"29":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"53":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"29":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}}}}},"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":5,"docs":{"64":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":2.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"9":{"0":{"0":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"23":{"tf":1.0},"263":{"tf":1.0}}}},"df":6,"docs":{"168":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":3.1622776601683795}}},"df":0,"docs":{}}},"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":2.0},"277":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"54":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.4142135623730951}}}},"i":{"d":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":6.928203230275509},"101":{"tf":3.605551275463989},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":3.0},"105":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"t":{"df":7,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"273":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"272":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"74":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"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":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":33,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.7320508075688772},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":5.830951894845301},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"27":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":5.291502622129181},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"277":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"251":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"96":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}}},"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":{"27":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"277":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"277":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":2.0},"48":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"49":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"v":{"(":{"b":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"36":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":14,"docs":{"101":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":2,"docs":{"93":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"262":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.7320508075688772},"95":{"tf":2.23606797749979},"96":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":22,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":3.605551275463989},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"21":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":8.06225774829855},"102":{"tf":1.0},"179":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"100":{"tf":3.1622776601683795},"233":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"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":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"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":{},"f":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":1,"docs":{"100":{"tf":5.744562646538029}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"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":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":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":2.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"235":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"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":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"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":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"267":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":4,"docs":{"265":{"tf":2.0},"27":{"tf":1.0},"272":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":19,"docs":{"0":{"tf":2.0},"107":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"i":{"d":{"df":14,"docs":{"101":{"tf":2.23606797749979},"12":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}},"u":{"b":{"df":14,"docs":{"12":{"tf":2.0},"13":{"tf":2.0},"277":{"tf":2.449489742783178},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":9,"docs":{"249":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":12,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"249":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"249":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"103":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"df":1,"docs":{"34":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"0":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"48":{"tf":1.0},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"19":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"64":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":45,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"23":{"tf":2.23606797749979},"251":{"tf":2.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.449489742783178},"263":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":4.69041575982343},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":3.7416573867739413},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.8284271247461903},"95":{"tf":3.0},"96":{"tf":3.605551275463989}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":20,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.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":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"75":{"tf":1.0},"80":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":13,"docs":{"122":{"tf":1.4142135623730951},"164":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"263":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":2.0},"101":{"tf":3.4641016151377544},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":4.123105625617661},"99":{"tf":3.872983346207417}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":2.449489742783178},"105":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.449489742783178}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"71":{"tf":2.0},"75":{"tf":1.0}}}},"i":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"64":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"42":{"tf":1.0},"70":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":22,"docs":{"12":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"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},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"d":{"df":2,"docs":{"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"80":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"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":1,"docs":{"263":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}},":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":24,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"t":{"df":1,"docs":{"220":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":4.58257569495584}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"75":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":2,"docs":{"263":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"267":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"p":{"c":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":4,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"87":{"tf":1.0},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":41,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"272":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"82":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"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":{"77":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":1,"docs":{"120":{"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":2,"docs":{"120":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.7320508075688772},"34":{"tf":2.8284271247461903},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":5,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"265":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"259":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.0},"260":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"38":{"tf":1.0}}},"df":20,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":2.449489742783178},"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"277":{"tf":1.7320508075688772}}},"l":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"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":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"29":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}},"t":{"df":5,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"18":{"tf":1.0},"242":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":2.23606797749979},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"v":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":20,"docs":{"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":2.0},"37":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"137":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":2.6457513110645907},"40":{"tf":1.0},"54":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":16,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"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":4,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"18":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"11":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.7320508075688772},"29":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":2.449489742783178},"36":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"263":{"tf":1.0},"267":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"34":{"tf":1.0},"42":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"20":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":3.3166247903554}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"22":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":23,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"265":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"]":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"265":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1":{"tf":2.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"275":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":20,"docs":{"12":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"122":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"263":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"101":{"tf":1.0},"11":{"tf":3.1622776601683795},"122":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"101":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"101":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"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":{"142":{"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":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"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":1,"docs":{"97":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"21":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.0},"104":{"tf":3.7416573867739413},"109":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"277":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"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}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":3.1622776601683795},"36":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"m":{"(":{"[":{"(":{"1":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"16":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":9,"docs":{"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":1,"docs":{"265":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"272":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}},"2":{"df":1,"docs":{"34":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"100":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.23606797749979},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"271":{"tf":1.0}}}}}}},"b":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":7,"docs":{"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"27":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"83":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":2.8284271247461903},"97":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"i":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"105":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":4,"docs":{"261":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"50":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"a":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"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":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.8284271247461903},"274":{"tf":2.0},"275":{"tf":2.8284271247461903},"276":{"tf":3.4641016151377544},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"p":{"df":7,"docs":{"27":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":17,"docs":{"11":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":2.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":3.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}},"y":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"263":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"276":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"37":{"tf":3.7416573867739413},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.8284271247461903},"42":{"tf":3.1622776601683795},"43":{"tf":7.14142842854285},"44":{"tf":2.8284271247461903},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":2.0},"73":{"tf":1.7320508075688772},"75":{"tf":3.7416573867739413},"76":{"tf":2.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"154":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"259":{"tf":1.0},"268":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":6,"docs":{"19":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":37,"docs":{"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}},"p":{"df":1,"docs":{"80":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"18":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"x":{".":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"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":7,"docs":{"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}}}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"56":{"tf":1.0},"59":{"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":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":145,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"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},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"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.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"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},"275":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"97":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":8.426149773176359},"101":{"tf":3.0},"102":{"tf":2.0},"103":{"tf":3.1622776601683795},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"123":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":5.385164807134504}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":6,"docs":{"257":{"tf":1.0},"263":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"262":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":3,"docs":{"258":{"tf":1.7320508075688772},"260":{"tf":1.0},"80":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"13":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"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":2,"docs":{"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"263":{"tf":1.0},"273":{"tf":1.0},"41":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"163":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.0}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":2.0},"137":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":2.8284271247461903}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"50":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"38":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"8":{"/":{"1":{"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"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":{"42":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"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":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":2.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":1,"docs":{"265":{"tf":2.0}}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.4142135623730951}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"96":{"tf":2.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":4.358898943540674}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"e":{"c":{"<":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"s":{"df":0,"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":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"8":{"df":5,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"122":{"tf":1.0},"42":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"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":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"277":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}},"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":2,"docs":{"136":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}},"df":5,"docs":{"100":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"251":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}}}},"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":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"10":{"tf":1.0}}},"y":{"df":8,"docs":{"103":{"tf":1.0},"21":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"b":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"274":{"tf":2.23606797749979},"276":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"v":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"94":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"262":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":2.23606797749979},"12":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"14":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"276":{"tf":3.7416573867739413}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.0},"23":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":11,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":2.0},"98":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.605551275463989}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"\\":{"d":{"]":{"+":{"\\":{".":{")":{"*":{"(":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.0}}},"df":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":{"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"27":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}},"3":{"df":1,"docs":{"259":{"tf":1.0}}},"5":{"df":1,"docs":{"262":{"tf":1.0}}},"9":{"df":2,"docs":{"262":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"70":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"x":{"0":{"0":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"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":{}}}}},"0":{"*":{"*":{"1":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"258":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"275":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"276":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"46":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"275":{"tf":2.0}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"^":{"1":{"8":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":2.0}}},"df":0,"docs":{}},"df":3,"docs":{"259":{"tf":1.4142135623730951},"277":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"43":{"tf":2.6457513110645907}}},"4":{"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"5":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"5":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"4":{"8":{"df":1,"docs":{"100":{"tf":1.0}}},"9":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":3,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.0},"104":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"!":{"/":{"_":{"3":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":3.872983346207417},"44":{"tf":2.0},"71":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.23606797749979}}},"2":{"*":{"*":{"1":{"2":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"3":{"df":2,"docs":{"31":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"9":{"1":{"2":{"0":{"1":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"75":{"tf":1.0}}},"\\":{"!":{"/":{"_":{"3":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":5.5677643628300215},"64":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"df":4,"docs":{"137":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":5.0990195135927845}}},"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{",":{"2":{"0":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"98":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}},"df":2,"docs":{"274":{"tf":2.0},"43":{"tf":3.3166247903554}},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"9":{"3":{"4":{".":{".":{".":{"df":0,"docs":{},"e":{"2":{"4":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":2.0}}},"9":{".":{"0":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.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":{"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"]":{")":{"*":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}},"a":{".":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":7,"docs":{"137":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"250":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"11":{"tf":3.605551275463989},"12":{"tf":3.7416573867739413},"13":{"tf":2.449489742783178},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"82":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"12":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0}},"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":{"12":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"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},"80":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"58":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"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":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"11":{"tf":1.0},"38":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":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":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{",":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"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":{"12":{"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":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.8284271247461903},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"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":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":3.0},"102":{"tf":1.4142135623730951},"11":{"tf":4.358898943540674},"12":{"tf":2.6457513110645907},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.23606797749979},"143":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":2.6457513110645907},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":3.7416573867739413},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":3.3166247903554},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":2.23606797749979},"77":{"tf":3.1622776601683795},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.8284271247461903},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":3.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"96":{"tf":3.0}},"i":{"d":{"df":14,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":2.6457513110645907},"28":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"s":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":3,"docs":{"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}}},"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":{},"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":1,"docs":{"141":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":5.291502622129181},"12":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":15,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903}}}}},"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"29":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"161":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":9,"docs":{"156":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":2.449489742783178},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"j":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"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":2,"docs":{"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"k":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":1,"docs":{"276":{"tf":4.123105625617661}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":10,"docs":{"274":{"tf":2.0},"275":{"tf":3.3166247903554},"46":{"tf":1.4142135623730951},"71":{"tf":3.3166247903554},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":3.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"180":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.3166247903554}}}}}},"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":2.6457513110645907},"277":{"tf":3.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"275":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"278":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}}},"p":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":3.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"50":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":17,"docs":{"34":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"df":7,"docs":{"28":{"tf":3.1622776601683795},"29":{"tf":3.4641016151377544},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":2.8284271247461903}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"2":{"df":1,"docs":{"46":{"tf":1.0}}},"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":1,"docs":{"101":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"153":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"89":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"19":{"tf":2.0},"272":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"52":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":2.449489742783178},"14":{"tf":1.0},"179":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}}},"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":1,"docs":{"105":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"12":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"r":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"278":{"tf":1.0}}},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"'":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"1":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"1":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}},"2":{"df":1,"docs":{"34":{"tf":2.0}}},"c":{"df":1,"docs":{"34":{"tf":4.242640687119285}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"100":{"tf":1.0},"104":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":22,"docs":{"102":{"tf":2.0},"11":{"tf":3.0},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"263":{"tf":2.0},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"277":{"tf":2.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"77":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":36,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"18":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"262":{"tf":1.7320508075688772},"277":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":3.0},"23":{"tf":1.0},"38":{"tf":2.23606797749979},"43":{"tf":1.7320508075688772},"44":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":6,"docs":{"27":{"tf":5.385164807134504},"29":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"43":{"tf":4.123105625617661}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"14":{"tf":1.0},"273":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":2.449489742783178},"27":{"tf":2.23606797749979},"33":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}}}},"w":{"df":7,"docs":{"101":{"tf":1.0},"18":{"tf":1.4142135623730951},"260":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"100":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.7320508075688772},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"246":{"tf":1.0},"49":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"d":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"o":{"b":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"53":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"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":{},"m":{"df":1,"docs":{"259":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"df":19,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":6.164414002968976},"28":{"tf":2.6457513110645907},"29":{"tf":3.605551275463989},"30":{"tf":2.8284271247461903},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":5.916079783099616},"35":{"tf":1.7320508075688772},"36":{"tf":3.605551275463989},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"'":{"df":2,"docs":{"274":{"tf":1.0},"78":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}}},"x":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"e":{"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"101":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{".":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"g":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"99":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}},"y":{"df":2,"docs":{"262":{"tf":1.0},"276":{"tf":1.0}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"100":{"tf":3.1622776601683795},"272":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":42,"docs":{"100":{"tf":4.358898943540674},"101":{"tf":3.0},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"27":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":4.47213595499958},"277":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":2.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"272":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"12":{"tf":1.0},"263":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":1,"docs":{"43":{"tf":4.795831523312719}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"261":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":26,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"272":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":3.4641016151377544}},"e":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"263":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"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":{},"e":{"df":0,"docs":{},"v":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":14,"docs":{"118":{"tf":1.0},"23":{"tf":1.7320508075688772},"262":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"9":{"6":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"42":{"tf":1.0},"49":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"71":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"53":{"tf":1.0}}}}},"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":4,"docs":{"16":{"tf":1.0},"276":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"262":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"262":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":3.3166247903554},"272":{"tf":1.0},"43":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":3,"docs":{"18":{"tf":1.0},"36":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"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":{"275":{"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":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"260":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"99":{"tf":3.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":2.0},"99":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":2.23606797749979},"48":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}}},"df":43,"docs":{"101":{"tf":3.872983346207417},"102":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"11":{"tf":3.7416573867739413},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":3.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":2.6457513110645907},"276":{"tf":2.6457513110645907},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"t":{"df":6,"docs":{"47":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"105":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"100":{"tf":3.7416573867739413},"276":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":84,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"49":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":2.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"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":{},"r":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{"_":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"254":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"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":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":3.7416573867739413},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.1622776601683795}}},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"254":{"tf":1.4142135623730951},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"101":{"tf":3.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":3.872983346207417},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"'":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"df":1,"docs":{"65":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"140":{"tf":1.0},"159":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"11":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"252":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":2.0},"66":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":3.4641016151377544},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"278":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"13":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":7,"docs":{"263":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":7,"docs":{"256":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"71":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"263":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{},"x":{".":{"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":{"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"262":{"tf":1.0}}}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"261":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}},"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":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"79":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":11,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":2,"docs":{"275":{"tf":1.0},"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"124":{"tf":1.0},"20":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"276":{"tf":5.291502622129181},"46":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.7320508075688772},"263":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"77":{"tf":1.0},"80":{"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":3,"docs":{"20":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"267":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.4641016151377544}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"113":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"262":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"138":{"tf":1.0},"257":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{":":{"3":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"7":{"7":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"3":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"1":{"df":0,"docs":{},"t":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"1":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"33":{"tf":1.0},"34":{"tf":3.7416573867739413}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"10":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"29":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.0},"84":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":2.0},"255":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"267":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"263":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":3.4641016151377544},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"272":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"262":{"tf":1.0},"263":{"tf":2.0},"35":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"236":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"[":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951}}}},"\\":{"_":{"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":{"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":{"114":{"tf":1.4142135623730951},"259":{"tf":1.0}}}}}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":3.872983346207417},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"33":{"tf":3.1622776601683795},"34":{"tf":4.123105625617661},"36":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":3,"docs":{"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.7320508075688772},"36":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"66":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":2.8284271247461903}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"74":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"20":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":3.3166247903554}},"e":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":39,"docs":{"100":{"tf":3.605551275463989},"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":3.7416573867739413},"221":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":3,"docs":{"20":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"176":{"tf":1.0},"188":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"35":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"278":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"176":{"tf":1.0}}}}},"r":{"a":{"df":2,"docs":{"263":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"34":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"28":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"71":{"tf":2.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"df":10,"docs":{"27":{"tf":3.1622776601683795},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"n":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"73":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"277":{"tf":2.449489742783178},"44":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":39,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"80":{"tf":1.0}}}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.4142135623730951},"145":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"12":{"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":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":2,"docs":{"13":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"100":{"tf":4.795831523312719},"101":{"tf":3.605551275463989},"102":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"263":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"11":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}},"g":{"a":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":2.449489742783178},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"65":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":2.449489742783178}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"27":{"tf":2.23606797749979},"32":{"tf":1.0}},"e":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"20":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":127,"docs":{"106":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.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}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"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":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":10,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"n":{"df":24,"docs":{"100":{"tf":4.242640687119285},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"273":{"tf":2.0},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":7,"docs":{"100":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.4142135623730951},"72":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":2,"docs":{"262":{"tf":1.0},"82":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"22":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"42":{"tf":2.8284271247461903},"43":{"tf":4.795831523312719}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"177":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"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":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":2,"docs":{"273":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"(":{"b":{")":{"+":{"2":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{")":{"+":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":2.0}}},"2":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"f":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"27":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{")":{")":{"+":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{")":{")":{"+":{"1":{"df":1,"docs":{"32":{"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":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":2.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"+":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"33":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"36":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.4142135623730951}},"l":{"df":3,"docs":{"278":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":3,"docs":{"267":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"44":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":3.4641016151377544},"105":{"tf":1.4142135623730951},"189":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"79":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":1,"docs":{"79":{"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":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"0":{"0":{"0":{"5":{"df":1,"docs":{"100":{"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"8":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"/":{"5":{"9":{"2":{"3":{"9":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":27,"docs":{"101":{"tf":2.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":2.0},"11":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"262":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"251":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"53":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"100":{"tf":2.23606797749979},"27":{"tf":2.0},"69":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178}}}},"i":{"c":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"237":{"tf":1.0},"252":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"101":{"tf":2.8284271247461903},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}},"r":{"df":2,"docs":{"22":{"tf":1.0},"271":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}},"f":{"a":{"c":{"df":6,"docs":{"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"278":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"267":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":3.605551275463989}}}}},"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":{"100":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"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":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":2.23606797749979}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"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":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":4.242640687119285},"44":{"tf":1.0},"99":{"tf":4.123105625617661}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"169":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"266":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"k":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"206":{"tf":1.0},"207":{"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":{},"p":{"df":4,"docs":{"100":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":51,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"11":{"tf":3.7416573867739413},"12":{"tf":3.872983346207417},"13":{"tf":2.449489742783178},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"38":{"tf":2.6457513110645907},"43":{"tf":3.1622776601683795},"44":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":2.23606797749979},"77":{"tf":2.0},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":5.477225575051661}},"s":{".":{"df":0,"docs":{},"m":{"d":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.449489742783178},"27":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"263":{"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":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"71":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"272":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.449489742783178},"24":{"tf":2.0},"37":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}},"v":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":3,"docs":{"27":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"104":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":2.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"265":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"t":{"'":{"df":3,"docs":{"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":2.23606797749979},"97":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"183":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"k":{"df":4,"docs":{"27":{"tf":2.0},"35":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"275":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":2,"docs":{"272":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"272":{"tf":2.23606797749979},"63":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"1":{"6":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"104":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"82":{"tf":1.0},"97":{"tf":1.0}},"i":{"c":{"df":6,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"262":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"w":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"75":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"98":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"262":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"267":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"9":{"9":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"179":{"tf":1.0},"277":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"275":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.449489742783178},"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795},"99":{"tf":3.3166247903554}}},"y":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.4641016151377544}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"g":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"64":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":2.449489742783178},"11":{"tf":1.0},"13":{"tf":2.0},"153":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":2.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":2,"docs":{"278":{"tf":1.0},"279":{"tf":1.0}}},"u":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"64":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"df":4,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"277":{"tf":1.0},"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"11":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":3.0},"36":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"273":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":2,"docs":{"274":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.23606797749979}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"+":{"1":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"153":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"258":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"0":{"1":{"9":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"0":{"tf":2.0},"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"#":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"d":{"df":20,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"261":{"tf":1.0}}},"p":{"#":{"0":{"0":{"0":{"6":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"168":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"_":{"a":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":17,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"231":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":5.477225575051661},"44":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"71":{"tf":2.0},"99":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"42":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"h":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"275":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"30":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"255":{"tf":1.0}}}},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"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":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"43":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":2.0}}}}},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":{},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"100":{"tf":1.0},"273":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":1.0},"18":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"255":{"tf":1.0},"29":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":2.23606797749979},"29":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"53":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"29":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}}}}},"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":5,"docs":{"64":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":2.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"9":{"0":{"0":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"23":{"tf":1.0},"263":{"tf":1.0}}}},"df":6,"docs":{"168":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":3.1622776601683795}}},"df":0,"docs":{}}},"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":2.0},"277":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"54":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.4142135623730951}}}},"i":{"d":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":6.928203230275509},"101":{"tf":3.605551275463989},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":3.0},"105":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"t":{"df":7,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"273":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"272":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"74":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"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":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":33,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.7320508075688772},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":5.830951894845301},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"27":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":5.385164807134504},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"277":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"34":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"251":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"96":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}}},"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":{"27":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"277":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"277":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":2.0},"48":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"49":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"v":{"(":{"b":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"36":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":14,"docs":{"101":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":2,"docs":{"93":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"262":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":22,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":3.605551275463989},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"21":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":8.12403840463596},"102":{"tf":1.0},"179":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"100":{"tf":3.1622776601683795},"233":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"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":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"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":{},"f":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":1,"docs":{"100":{"tf":5.744562646538029}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"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":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":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":2.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"235":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"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":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"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":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"267":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":4,"docs":{"265":{"tf":2.0},"27":{"tf":1.0},"272":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}},"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":{"107":{"tf":1.4142135623730951}}}}}}},"df":19,"docs":{"0":{"tf":2.23606797749979},"107":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"i":{"d":{"df":14,"docs":{"101":{"tf":2.23606797749979},"12":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}},"u":{"b":{"df":14,"docs":{"12":{"tf":2.0},"13":{"tf":2.0},"277":{"tf":2.449489742783178},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":9,"docs":{"249":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":12,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"249":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"249":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"103":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"df":1,"docs":{"34":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"0":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"48":{"tf":1.0},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"19":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"64":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":45,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.8284271247461903},"18":{"tf":1.0},"23":{"tf":2.23606797749979},"251":{"tf":2.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.449489742783178},"263":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":4.795831523312719},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":3.7416573867739413},"77":{"tf":2.0},"78":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":3.0},"83":{"tf":2.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.8284271247461903},"94":{"tf":3.0},"95":{"tf":3.1622776601683795},"96":{"tf":3.605551275463989}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":20,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.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":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"75":{"tf":1.0},"80":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":13,"docs":{"122":{"tf":1.7320508075688772},"164":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"263":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"277":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":2.0},"101":{"tf":3.4641016151377544},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":4.242640687119285},"99":{"tf":3.872983346207417}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":2.449489742783178},"105":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.449489742783178}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"71":{"tf":2.0},"75":{"tf":1.0}}}},"i":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"64":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"42":{"tf":1.0},"70":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":22,"docs":{"12":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"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},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"(":{"d":{"df":2,"docs":{"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"80":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"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":1,"docs":{"263":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}},":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":24,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"t":{"df":1,"docs":{"220":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":4.58257569495584}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"75":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":2,"docs":{"263":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":2.0},"268":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"267":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"p":{"c":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"n":{"df":4,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"87":{"tf":1.0},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"272":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"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.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"82":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"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":{"77":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"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":121,"docs":{"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.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}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"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":31,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.7320508075688772},"34":{"tf":2.8284271247461903},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":16,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"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":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"265":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"259":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.0},"260":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"38":{"tf":1.0}}},"df":20,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":2.449489742783178},"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"277":{"tf":1.7320508075688772}}},"l":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"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":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"29":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}},"t":{"df":5,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"18":{"tf":1.0},"242":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":2.23606797749979},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"v":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":20,"docs":{"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":2.0},"37":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"137":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":2.6457513110645907},"40":{"tf":1.0},"54":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":16,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"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":4,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"18":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"11":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.7320508075688772},"29":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":2.449489742783178},"36":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"263":{"tf":1.0},"267":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"34":{"tf":1.0},"42":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"20":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":3.3166247903554}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"22":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":91,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.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},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}},"i":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"265":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"]":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"265":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"1":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"275":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":20,"docs":{"12":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"263":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"122":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"263":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"101":{"tf":1.0},"11":{"tf":3.1622776601683795},"122":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"101":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"101":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"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":{"142":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"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":1,"docs":{"97":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"21":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.0},"104":{"tf":3.7416573867739413},"109":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"277":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"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}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":3.1622776601683795},"36":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"m":{"(":{"[":{"(":{"1":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"16":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":9,"docs":{"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":1,"docs":{"265":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"272":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}},"2":{"df":1,"docs":{"34":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"100":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.23606797749979},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"271":{"tf":1.0}}}}}}},"b":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":7,"docs":{"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"27":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"83":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":2.8284271247461903},"97":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"i":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"105":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":4,"docs":{"261":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"50":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"a":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"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":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"273":{"tf":2.8284271247461903},"274":{"tf":2.0},"275":{"tf":3.0},"276":{"tf":3.605551275463989},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"p":{"df":7,"docs":{"27":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}}}},"df":17,"docs":{"11":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":2.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":3.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}},"y":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"263":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"276":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"37":{"tf":3.872983346207417},"38":{"tf":3.7416573867739413},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.8284271247461903},"42":{"tf":3.1622776601683795},"43":{"tf":7.211102550927978},"44":{"tf":2.8284271247461903},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":2.0},"73":{"tf":2.0},"75":{"tf":3.872983346207417},"76":{"tf":2.23606797749979},"77":{"tf":3.4641016151377544},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"50":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"154":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"259":{"tf":1.0},"268":{"tf":2.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":6,"docs":{"19":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":37,"docs":{"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.1622776601683795},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}},"p":{"df":1,"docs":{"80":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"18":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"x":{".":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"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":7,"docs":{"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}}}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"56":{"tf":1.0},"59":{"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":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":145,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"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},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"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.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"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},"275":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"97":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":8.426149773176359},"101":{"tf":3.0},"102":{"tf":2.0},"103":{"tf":3.1622776601683795},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"123":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":5.385164807134504}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":6,"docs":{"257":{"tf":1.0},"263":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"262":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":3,"docs":{"258":{"tf":2.0},"260":{"tf":1.0},"80":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"13":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"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":2,"docs":{"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"96":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"263":{"tf":1.0},"273":{"tf":1.0},"41":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"163":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.0}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":2.0},"137":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":2.8284271247461903}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"50":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"38":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"8":{"/":{"1":{"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"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":{"42":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"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":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":2.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":1,"docs":{"265":{"tf":2.0}}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.4142135623730951}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":2.8284271247461903},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"44":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772},"96":{"tf":2.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":4.358898943540674}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"260":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"e":{"c":{"<":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"s":{"df":0,"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":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"8":{"df":5,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"122":{"tf":1.0},"42":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"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":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"277":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}},"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":50,"docs":{"136":{"tf":1.0},"175":{"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.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}},"df":5,"docs":{"100":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"251":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}}}},"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":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"10":{"tf":1.0}}},"y":{"df":8,"docs":{"103":{"tf":1.0},"21":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"b":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"274":{"tf":2.23606797749979},"276":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"v":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"94":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"262":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":2.23606797749979},"12":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"276":{"tf":3.7416573867739413}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.0},"23":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":11,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":2.0},"98":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.605551275463989}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"\\":{"d":{"]":{"+":{"\\":{".":{")":{"*":{"(":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.0}}},"df":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":{"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"27":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"71":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"250":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"247":{"tf":1.0}},"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"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":{"95":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"36":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"189":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"244":{"tf":1.0},"275":{"tf":1.0},"71":{"tf":1.0},"79":{"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":{"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"75":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"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":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"240":{"tf":1.0},"255":{"tf":1.0},"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"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":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{"df":1,"docs":{"276":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"257":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"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":{"114":{"tf":1.0}}}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"273":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"168":{"tf":1.0},"262":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"279":{"tf":1.0}}}}}}},"g":{"a":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"273":{"tf":1.0},"277":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"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":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"232":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"268":{"tf":1.0}}}}},"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":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"24":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0},"88":{"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":{"120":{"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":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"2":{"5":{"6":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"92":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"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":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"243":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"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":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json new file mode 100644 index 000000000..087b7d8df --- /dev/null +++ b/docs/searchindex.json @@ -0,0 +1 @@ +{"doc_urls":["README.html#the-near-protocol-specification","README.html#standards","Terminology.html#terminology","Terminology.html#abstraction-definitions","Terminology.html#chain","DataStructures/README.html#primitives","DataStructures/Account.html#accounts","DataStructures/Account.html#account-id","DataStructures/Account.html#account-id-rules","DataStructures/Account.html#top-level-accounts","DataStructures/Account.html#examples","DataStructures/Account.html#account","DataStructures/AccessKey.html#access-keys","DataStructures/AccessKey.html#accesskeypermissionfunctioncall","DataStructures/AccessKey.html#account-without-access-keys","DataStructures/Transaction.html#transaction","Architecture.html#architecture","Architecture.html#transactions-and-receipts","Architecture.html#account-based-system","Architecture.html#assume-every-account-belongs-to-its-own-shard","Architecture.html#trie","Architecture.html#tokens-and-gas","Architecture.html#validators","Architecture.html#blockchain-layer-concepts","Architecture.html#runtime-layer-concepts","ChainSpec/README.html#chain-specification","ChainSpec/Consensus.html#consensus","ChainSpec/Consensus.html#definitions-and-notation","ChainSpec/Consensus.html#data-structures","ChainSpec/Consensus.html#approvals-requirements","ChainSpec/Consensus.html#messages","ChainSpec/Consensus.html#block-production","ChainSpec/Consensus.html#finality-condition","ChainSpec/Consensus.html#epoch-switches","ChainSpec/Consensus.html#safety","ChainSpec/Consensus.html#liveness","ChainSpec/Consensus.html#approval-condition","ChainSpec/Transactions.html#transactions-in-the-blockchain-layer","ChainSpec/Transactions.html#transaction-ordering","ChainSpec/Transactions.html#transaction-validation","ChainSpec/Transactions.html#before-adding-to-a-transaction-pool","ChainSpec/Transactions.html#before-adding-to-a-chunk","ChainSpec/Transactions.html#pool-iterator","ChainSpec/Transactions.html#transaction-ordering-example-using-pool-iterator","ChainSpec/Transactions.html#order-validation","RuntimeSpec/README.html#runtime-specification","RuntimeSpec/FunctionCall.html#function-call","RuntimeSpec/FunctionCall.html#input_data_ids-to-promiseresults","RuntimeSpec/FunctionCall.html#input","RuntimeSpec/FunctionCall.html#execution","RuntimeSpec/FunctionCall.html#output","RuntimeSpec/FunctionCall.html#value-result","RuntimeSpec/FunctionCall.html#receiptindex-result","RuntimeSpec/Transactions.html#transactions","RuntimeSpec/Transactions.html#signed-transaction","RuntimeSpec/Actions.html#actions","RuntimeSpec/Actions.html#createaccountaction","RuntimeSpec/Actions.html#deploycontractaction","RuntimeSpec/Actions.html#functioncallaction","RuntimeSpec/Actions.html#transferaction","RuntimeSpec/Actions.html#stakeaction","RuntimeSpec/Actions.html#addkeyaction","RuntimeSpec/Actions.html#deletekeyaction","RuntimeSpec/Actions.html#deleteaccountaction","RuntimeSpec/Receipts.html#receipt","RuntimeSpec/Receipts.html#actionreceipt","RuntimeSpec/Receipts.html#datareceipt","RuntimeSpec/Receipts.html#creating-receipt","RuntimeSpec/Receipts.html#receipt-matching","RuntimeSpec/Receipts.html#processing-actionreceipt","RuntimeSpec/Receipts.html#processing-datareceipt","RuntimeSpec/Receipts.html#case-1-call-to-multiple-contracts-and-await-responses","RuntimeSpec/Scenarios/Scenarios.html#scenarios","RuntimeSpec/Scenarios/FinancialTransaction.html#financial-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#pre-requisites","RuntimeSpec/Scenarios/FinancialTransaction.html#creating-a-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#sending-the-transaction","RuntimeSpec/Scenarios/FinancialTransaction.html#transaction-to-receipt","RuntimeSpec/Scenarios/FinancialTransaction.html#processing-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#cross-contract-call","RuntimeSpec/Scenarios/CrossContractCall.html#pre-requisites","RuntimeSpec/Scenarios/CrossContractCall.html#transaction-to-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-reserve_trip-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-reserve-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-hotel_reservation_complete-receipt","RuntimeSpec/Scenarios/CrossContractCall.html#processing-the-datareceipt","RuntimeSpec/Components/Components.html#components","RuntimeSpec/Components/RuntimeCrate.html#runtime-crate","RuntimeSpec/Components/RuntimeCrate.html#runtime-class","RuntimeSpec/Components/RuntimeCrate.html#apply-arguments","RuntimeSpec/Components/RuntimeCrate.html#apply-logic","RuntimeSpec/Components/RuntimeCrate.html#validator-accounts-update","RuntimeSpec/Components/RuntimeCrate.html#signed-transaction-conversion","RuntimeSpec/Components/RuntimeCrate.html#receipt-processing","RuntimeSpec/Components/RuntimeCrate.html#delayed-receipts","RuntimeSpec/Components/RuntimeCrate.html#receipt-processing-algorithm","RuntimeSpec/Components/RuntimeCrate.html#balance-checker","RuntimeSpec/Components/BindingsSpec/BindingsSpec.html#bindings-specification","RuntimeSpec/Components/BindingsSpec/RegistersAPI.html#registers-api","RuntimeSpec/Components/BindingsSpec/TrieAPI.html#trie-api","RuntimeSpec/Components/BindingsSpec/PromisesAPI.html#promises-api","RuntimeSpec/Components/BindingsSpec/ContextAPI.html#context-api","RuntimeSpec/Components/BindingsSpec/EconomicsAPI.html#economics-api","RuntimeSpec/Components/BindingsSpec/MathAPI.html#math-api","RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html#miscellaneous-api","RuntimeSpec/Components/BindingsSpec/MiscellaneousAPI.html#future-improvements","GenesisConfig/GenesisConfig.html#genesisconfig","GenesisConfig/GenesisConfig.html#protocol_version","GenesisConfig/GenesisConfig.html#genesis_time","GenesisConfig/GenesisConfig.html#chain_id","GenesisConfig/GenesisConfig.html#num_block_producers","GenesisConfig/GenesisConfig.html#block_producers_per_shard","GenesisConfig/GenesisConfig.html#avg_fisherman_per_shard","GenesisConfig/GenesisConfig.html#dynamic_resharding","GenesisConfig/GenesisConfig.html#epoch_length","GenesisConfig/GenesisConfig.html#gas_limit","GenesisConfig/GenesisConfig.html#gas_price","GenesisConfig/GenesisConfig.html#block_producer_kickout_threshold","GenesisConfig/GenesisConfig.html#chunk_producer_kickout_threshold","GenesisConfig/GenesisConfig.html#gas_price_adjustment_rate","GenesisConfig/GenesisConfig.html#runtime_config","GenesisConfig/GenesisConfig.html#validators","GenesisConfig/GenesisConfig.html#records","GenesisConfig/GenesisConfig.html#transaction_validity_period","GenesisConfig/GenesisConfig.html#developer_reward_percentage","GenesisConfig/GenesisConfig.html#protocol_reward_percentage","GenesisConfig/GenesisConfig.html#max_inflation_rate","GenesisConfig/GenesisConfig.html#total_supply","GenesisConfig/GenesisConfig.html#num_blocks_per_year","GenesisConfig/GenesisConfig.html#protocol_treasury_account","GenesisConfig/GenesisConfig.html#protocol-economics","GenesisConfig/RuntimeConfig.html#runtimeconfig","GenesisConfig/RuntimeConfig.html#storage_cost_byte_per_block","GenesisConfig/RuntimeConfig.html#storage_cost_byte_per_block","GenesisConfig/RuntimeConfig.html#poke_threshold","GenesisConfig/RuntimeConfig.html#transaction_costs","GenesisConfig/RuntimeConfig.html#wasm_config","GenesisConfig/RuntimeConfig.html#account_length_baseline_cost_per_block","GenesisConfig/RuntimeFeeConfig.html#runtimefeesconfig","GenesisConfig/RuntimeFeeConfig.html#action_receipt_creation_config","GenesisConfig/RuntimeFeeConfig.html#data_receipt_creation_config","GenesisConfig/RuntimeFeeConfig.html#action_creation_config","GenesisConfig/RuntimeFeeConfig.html#storage_usage_config","GenesisConfig/RuntimeFeeConfig.html#burnt_gas_reward","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#accesskeycreationconfig","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#full_access_cost","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#function_call_cost","GenesisConfig/RuntimeFeeConfig/AccessKeyCreationConfig.html#function_call_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#action_creation_config","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#create_account_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#deploy_contract_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#deploy_contract_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#function_call_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#function_call_cost_per_byte","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#transfer_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#stake_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#add_key_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#delete_key_cost","GenesisConfig/RuntimeFeeConfig/ActionCreationConfig.html#delete_account_cost","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#datareceiptcreationconfig","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#base_cost","GenesisConfig/RuntimeFeeConfig/DataReceiptCreationConfig.html#cost_per_byte","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#storageusageconfig","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#account_cost","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#data_record_cost","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#key_cost_per_byte","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#value_cost_per_byte-gas","GenesisConfig/RuntimeFeeConfig/StorageUsageConfig.html#code_cost_per_byte-gas","GenesisConfig/RuntimeFeeConfig/Fee.html#fee","GenesisConfig/RuntimeFeeConfig/Fee.html#send_sir","GenesisConfig/RuntimeFeeConfig/Fee.html#send_not_sir","GenesisConfig/RuntimeFeeConfig/Fee.html#execution","GenesisConfig/RuntimeFeeConfig/Fraction.html#fraction","GenesisConfig/RuntimeFeeConfig/Fraction.html#numerator","GenesisConfig/RuntimeFeeConfig/Fraction.html#denominator","GenesisConfig/VMConfig.html#vmconfig","GenesisConfig/VMConfig.html#ext_costs","GenesisConfig/VMConfig.html#grow_mem_cost","GenesisConfig/VMConfig.html#regular_op_cost","GenesisConfig/VMConfig.html#max_gas_burnt","GenesisConfig/VMConfig.html#max_stack_height","GenesisConfig/VMConfig.html#initial_memory_pages","GenesisConfig/VMConfig.html#max_memory_pages","GenesisConfig/VMConfig.html#registers_memory_limit","GenesisConfig/VMConfig.html#max_register_size","GenesisConfig/VMConfig.html#max_number_registers","GenesisConfig/VMConfig.html#max_number_logs","GenesisConfig/VMConfig.html#max_log_len","GenesisConfig/ExtCostsConfig.html#extcostsconfig","GenesisConfig/ExtCostsConfig.html#base","GenesisConfig/ExtCostsConfig.html#read_memory_base","GenesisConfig/ExtCostsConfig.html#read_memory_byte","GenesisConfig/ExtCostsConfig.html#write_memory_base","GenesisConfig/ExtCostsConfig.html#write_memory_byte","GenesisConfig/ExtCostsConfig.html#read_register_base","GenesisConfig/ExtCostsConfig.html#read_register_byte","GenesisConfig/ExtCostsConfig.html#write_register_base","GenesisConfig/ExtCostsConfig.html#write_register_byte","GenesisConfig/ExtCostsConfig.html#utf8_decoding_base","GenesisConfig/ExtCostsConfig.html#utf8_decoding_byte","GenesisConfig/ExtCostsConfig.html#utf16_decoding_base","GenesisConfig/ExtCostsConfig.html#utf16_decoding_byte","GenesisConfig/ExtCostsConfig.html#sha256_base","GenesisConfig/ExtCostsConfig.html#sha256_byte","GenesisConfig/ExtCostsConfig.html#keccak256_base","GenesisConfig/ExtCostsConfig.html#keccak256_byte","GenesisConfig/ExtCostsConfig.html#keccak512_base","GenesisConfig/ExtCostsConfig.html#keccak512_byte","GenesisConfig/ExtCostsConfig.html#log_base","GenesisConfig/ExtCostsConfig.html#log_byte","GenesisConfig/ExtCostsConfig.html#storage-api","GenesisConfig/ExtCostsConfig.html#storage_write_base","GenesisConfig/ExtCostsConfig.html#storage_write_key_byte","GenesisConfig/ExtCostsConfig.html#storage_write_value_byte","GenesisConfig/ExtCostsConfig.html#storage_write_evicted_byte","GenesisConfig/ExtCostsConfig.html#storage_read_base","GenesisConfig/ExtCostsConfig.html#storage_read_key_byte","GenesisConfig/ExtCostsConfig.html#storage_read_value_byte","GenesisConfig/ExtCostsConfig.html#storage_remove_base","GenesisConfig/ExtCostsConfig.html#storage_remove_key_byte","GenesisConfig/ExtCostsConfig.html#storage_remove_ret_value_byte","GenesisConfig/ExtCostsConfig.html#storage_has_key_base","GenesisConfig/ExtCostsConfig.html#storage_has_key_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_prefix_base","GenesisConfig/ExtCostsConfig.html#storage_iter_create_prefix_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_range_base","GenesisConfig/ExtCostsConfig.html#storage_iter_create_from_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_create_to_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_next_base","GenesisConfig/ExtCostsConfig.html#storage_iter_next_key_byte","GenesisConfig/ExtCostsConfig.html#storage_iter_next_value_byte","GenesisConfig/ExtCostsConfig.html#touching_trie_node","GenesisConfig/ExtCostsConfig.html#promise-api","GenesisConfig/ExtCostsConfig.html#promise_and_base","GenesisConfig/ExtCostsConfig.html#promise_and_per_promise","GenesisConfig/ExtCostsConfig.html#promise_return","GenesisConfig/StateRecord.html#staterecord","GenesisConfig/StateRecord.html#account","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#account","GenesisConfig/StateRecord.html#data","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#data_key","GenesisConfig/StateRecord.html#value","GenesisConfig/StateRecord.html#contract","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#code","GenesisConfig/StateRecord.html#accesskey","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#public_key","GenesisConfig/StateRecord.html#access_key","GenesisConfig/StateRecord.html#postponedreceipt","GenesisConfig/StateRecord.html#receiveddata","GenesisConfig/StateRecord.html#account_id","GenesisConfig/StateRecord.html#data_id","GenesisConfig/StateRecord.html#data","GenesisConfig/StateRecord.html#delayedreceipt","Economics/README.html#economics","Economics/README.html#units","Economics/README.html#general-parameters","Economics/README.html#general-variables","Economics/README.html#issuance","Economics/README.html#transaction-fees","Economics/README.html#state-stake","Economics/README.html#validators","Economics/README.html#validator-selection","Economics/README.html#rewards-calculation","Economics/README.html#slashing","Economics/README.html#protocol-treasury","Standards/README.html#standards","Standards/Tokens/FungibleToken.html#fungible-token","Standards/Tokens/FungibleToken.html#summary","Standards/Tokens/FungibleToken.html#motivation","Standards/Tokens/FungibleToken.html#guide-level-explanation","Standards/Tokens/FungibleToken.html#simple-transfer","Standards/Tokens/FungibleToken.html#token-deposit-to-a-contract","Standards/Tokens/FungibleToken.html#multi-token-swap-on-dex","Standards/Tokens/FungibleToken.html#reference-level-explanation","Standards/Tokens/FungibleToken.html#drawbacks","Standards/Tokens/FungibleToken.html#future-possibilities"],"index":{"documentStore":{"docInfo":{"0":{"body":22,"breadcrumbs":3,"title":3},"1":{"body":8,"breadcrumbs":1,"title":1},"10":{"body":68,"breadcrumbs":3,"title":1},"100":{"body":1000,"breadcrumbs":7,"title":2},"101":{"body":382,"breadcrumbs":7,"title":2},"102":{"body":112,"breadcrumbs":7,"title":2},"103":{"body":97,"breadcrumbs":7,"title":2},"104":{"body":181,"breadcrumbs":7,"title":2},"105":{"body":37,"breadcrumbs":7,"title":2},"106":{"body":0,"breadcrumbs":1,"title":1},"107":{"body":6,"breadcrumbs":1,"title":1},"108":{"body":6,"breadcrumbs":1,"title":1},"109":{"body":13,"breadcrumbs":1,"title":1},"11":{"body":206,"breadcrumbs":3,"title":1},"110":{"body":7,"breadcrumbs":1,"title":1},"111":{"body":11,"breadcrumbs":1,"title":1},"112":{"body":7,"breadcrumbs":1,"title":1},"113":{"body":6,"breadcrumbs":1,"title":1},"114":{"body":6,"breadcrumbs":1,"title":1},"115":{"body":6,"breadcrumbs":1,"title":1},"116":{"body":5,"breadcrumbs":1,"title":1},"117":{"body":11,"breadcrumbs":1,"title":1},"118":{"body":11,"breadcrumbs":1,"title":1},"119":{"body":6,"breadcrumbs":1,"title":1},"12":{"body":112,"breadcrumbs":4,"title":2},"120":{"body":7,"breadcrumbs":1,"title":1},"121":{"body":5,"breadcrumbs":1,"title":1},"122":{"body":10,"breadcrumbs":1,"title":1},"123":{"body":7,"breadcrumbs":1,"title":1},"124":{"body":5,"breadcrumbs":1,"title":1},"125":{"body":5,"breadcrumbs":1,"title":1},"126":{"body":7,"breadcrumbs":1,"title":1},"127":{"body":6,"breadcrumbs":1,"title":1},"128":{"body":7,"breadcrumbs":1,"title":1},"129":{"body":5,"breadcrumbs":1,"title":1},"13":{"body":93,"breadcrumbs":3,"title":1},"130":{"body":6,"breadcrumbs":2,"title":2},"131":{"body":6,"breadcrumbs":2,"title":1},"132":{"body":9,"breadcrumbs":2,"title":1},"133":{"body":11,"breadcrumbs":2,"title":1},"134":{"body":12,"breadcrumbs":2,"title":1},"135":{"body":11,"breadcrumbs":2,"title":1},"136":{"body":5,"breadcrumbs":2,"title":1},"137":{"body":28,"breadcrumbs":2,"title":1},"138":{"body":3,"breadcrumbs":3,"title":1},"139":{"body":12,"breadcrumbs":3,"title":1},"14":{"body":15,"breadcrumbs":6,"title":4},"140":{"body":8,"breadcrumbs":3,"title":1},"141":{"body":10,"breadcrumbs":3,"title":1},"142":{"body":6,"breadcrumbs":3,"title":1},"143":{"body":9,"breadcrumbs":3,"title":1},"144":{"body":5,"breadcrumbs":4,"title":1},"145":{"body":9,"breadcrumbs":4,"title":1},"146":{"body":10,"breadcrumbs":4,"title":1},"147":{"body":10,"breadcrumbs":4,"title":1},"148":{"body":8,"breadcrumbs":4,"title":1},"149":{"body":6,"breadcrumbs":4,"title":1},"15":{"body":0,"breadcrumbs":3,"title":1},"150":{"body":6,"breadcrumbs":4,"title":1},"151":{"body":7,"breadcrumbs":4,"title":1},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":10,"breadcrumbs":4,"title":1},"154":{"body":6,"breadcrumbs":4,"title":1},"155":{"body":5,"breadcrumbs":4,"title":1},"156":{"body":6,"breadcrumbs":4,"title":1},"157":{"body":6,"breadcrumbs":4,"title":1},"158":{"body":6,"breadcrumbs":4,"title":1},"159":{"body":6,"breadcrumbs":4,"title":1},"16":{"body":52,"breadcrumbs":1,"title":1},"160":{"body":7,"breadcrumbs":4,"title":1},"161":{"body":7,"breadcrumbs":4,"title":1},"162":{"body":5,"breadcrumbs":4,"title":1},"163":{"body":6,"breadcrumbs":4,"title":1},"164":{"body":6,"breadcrumbs":4,"title":1},"165":{"body":6,"breadcrumbs":4,"title":1},"166":{"body":6,"breadcrumbs":5,"title":2},"167":{"body":7,"breadcrumbs":5,"title":2},"168":{"body":8,"breadcrumbs":4,"title":1},"169":{"body":7,"breadcrumbs":4,"title":1},"17":{"body":62,"breadcrumbs":2,"title":2},"170":{"body":5,"breadcrumbs":4,"title":1},"171":{"body":3,"breadcrumbs":4,"title":1},"172":{"body":0,"breadcrumbs":4,"title":1},"173":{"body":2,"breadcrumbs":4,"title":1},"174":{"body":2,"breadcrumbs":4,"title":1},"175":{"body":3,"breadcrumbs":3,"title":1},"176":{"body":5,"breadcrumbs":3,"title":1},"177":{"body":8,"breadcrumbs":3,"title":1},"178":{"body":6,"breadcrumbs":3,"title":1},"179":{"body":10,"breadcrumbs":3,"title":1},"18":{"body":57,"breadcrumbs":3,"title":3},"180":{"body":6,"breadcrumbs":3,"title":1},"181":{"body":2,"breadcrumbs":3,"title":1},"182":{"body":12,"breadcrumbs":3,"title":1},"183":{"body":6,"breadcrumbs":3,"title":1},"184":{"body":8,"breadcrumbs":3,"title":1},"185":{"body":7,"breadcrumbs":3,"title":1},"186":{"body":6,"breadcrumbs":3,"title":1},"187":{"body":7,"breadcrumbs":3,"title":1},"188":{"body":0,"breadcrumbs":4,"title":1},"189":{"body":7,"breadcrumbs":4,"title":1},"19":{"body":51,"breadcrumbs":4,"title":4},"190":{"body":7,"breadcrumbs":4,"title":1},"191":{"body":6,"breadcrumbs":4,"title":1},"192":{"body":7,"breadcrumbs":4,"title":1},"193":{"body":8,"breadcrumbs":4,"title":1},"194":{"body":6,"breadcrumbs":4,"title":1},"195":{"body":6,"breadcrumbs":4,"title":1},"196":{"body":6,"breadcrumbs":4,"title":1},"197":{"body":6,"breadcrumbs":4,"title":1},"198":{"body":6,"breadcrumbs":4,"title":1},"199":{"body":7,"breadcrumbs":4,"title":1},"2":{"body":0,"breadcrumbs":1,"title":1},"20":{"body":87,"breadcrumbs":1,"title":1},"200":{"body":6,"breadcrumbs":4,"title":1},"201":{"body":7,"breadcrumbs":4,"title":1},"202":{"body":6,"breadcrumbs":4,"title":1},"203":{"body":7,"breadcrumbs":4,"title":1},"204":{"body":6,"breadcrumbs":4,"title":1},"205":{"body":7,"breadcrumbs":4,"title":1},"206":{"body":6,"breadcrumbs":4,"title":1},"207":{"body":7,"breadcrumbs":4,"title":1},"208":{"body":5,"breadcrumbs":4,"title":1},"209":{"body":6,"breadcrumbs":4,"title":1},"21":{"body":31,"breadcrumbs":2,"title":2},"210":{"body":0,"breadcrumbs":5,"title":2},"211":{"body":8,"breadcrumbs":4,"title":1},"212":{"body":9,"breadcrumbs":4,"title":1},"213":{"body":9,"breadcrumbs":4,"title":1},"214":{"body":10,"breadcrumbs":4,"title":1},"215":{"body":8,"breadcrumbs":4,"title":1},"216":{"body":9,"breadcrumbs":4,"title":1},"217":{"body":10,"breadcrumbs":4,"title":1},"218":{"body":7,"breadcrumbs":4,"title":1},"219":{"body":8,"breadcrumbs":4,"title":1},"22":{"body":31,"breadcrumbs":1,"title":1},"220":{"body":9,"breadcrumbs":4,"title":1},"221":{"body":9,"breadcrumbs":4,"title":1},"222":{"body":10,"breadcrumbs":4,"title":1},"223":{"body":8,"breadcrumbs":4,"title":1},"224":{"body":9,"breadcrumbs":4,"title":1},"225":{"body":8,"breadcrumbs":4,"title":1},"226":{"body":10,"breadcrumbs":4,"title":1},"227":{"body":10,"breadcrumbs":4,"title":1},"228":{"body":8,"breadcrumbs":4,"title":1},"229":{"body":8,"breadcrumbs":4,"title":1},"23":{"body":72,"breadcrumbs":3,"title":3},"230":{"body":8,"breadcrumbs":4,"title":1},"231":{"body":7,"breadcrumbs":4,"title":1},"232":{"body":0,"breadcrumbs":5,"title":2},"233":{"body":5,"breadcrumbs":4,"title":1},"234":{"body":7,"breadcrumbs":4,"title":1},"235":{"body":5,"breadcrumbs":4,"title":1},"236":{"body":8,"breadcrumbs":3,"title":1},"237":{"body":10,"breadcrumbs":3,"title":1},"238":{"body":5,"breadcrumbs":3,"title":1},"239":{"body":10,"breadcrumbs":3,"title":1},"24":{"body":19,"breadcrumbs":3,"title":3},"240":{"body":13,"breadcrumbs":3,"title":1},"241":{"body":8,"breadcrumbs":3,"title":1},"242":{"body":13,"breadcrumbs":3,"title":1},"243":{"body":6,"breadcrumbs":3,"title":1},"244":{"body":10,"breadcrumbs":3,"title":1},"245":{"body":5,"breadcrumbs":3,"title":1},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":10,"breadcrumbs":3,"title":1},"248":{"body":7,"breadcrumbs":3,"title":1},"249":{"body":12,"breadcrumbs":3,"title":1},"25":{"body":1,"breadcrumbs":2,"title":2},"250":{"body":7,"breadcrumbs":3,"title":1},"251":{"body":27,"breadcrumbs":3,"title":1},"252":{"body":23,"breadcrumbs":3,"title":1},"253":{"body":6,"breadcrumbs":3,"title":1},"254":{"body":7,"breadcrumbs":3,"title":1},"255":{"body":9,"breadcrumbs":3,"title":1},"256":{"body":31,"breadcrumbs":3,"title":1},"257":{"body":3,"breadcrumbs":1,"title":1},"258":{"body":22,"breadcrumbs":1,"title":1},"259":{"body":43,"breadcrumbs":2,"title":2},"26":{"body":0,"breadcrumbs":3,"title":1},"260":{"body":32,"breadcrumbs":2,"title":2},"261":{"body":55,"breadcrumbs":1,"title":1},"262":{"body":101,"breadcrumbs":2,"title":2},"263":{"body":135,"breadcrumbs":2,"title":2},"264":{"body":24,"breadcrumbs":1,"title":1},"265":{"body":92,"breadcrumbs":2,"title":2},"266":{"body":73,"breadcrumbs":2,"title":2},"267":{"body":65,"breadcrumbs":1,"title":1},"268":{"body":18,"breadcrumbs":2,"title":2},"269":{"body":3,"breadcrumbs":1,"title":1},"27":{"body":293,"breadcrumbs":4,"title":2},"270":{"body":0,"breadcrumbs":3,"title":2},"271":{"body":14,"breadcrumbs":2,"title":1},"272":{"body":111,"breadcrumbs":2,"title":1},"273":{"body":113,"breadcrumbs":4,"title":3},"274":{"body":51,"breadcrumbs":3,"title":2},"275":{"body":131,"breadcrumbs":4,"title":3},"276":{"body":243,"breadcrumbs":5,"title":4},"277":{"body":180,"breadcrumbs":4,"title":3},"278":{"body":47,"breadcrumbs":2,"title":1},"279":{"body":11,"breadcrumbs":3,"title":2},"28":{"body":84,"breadcrumbs":4,"title":2},"29":{"body":184,"breadcrumbs":4,"title":2},"3":{"body":0,"breadcrumbs":2,"title":2},"30":{"body":151,"breadcrumbs":3,"title":1},"31":{"body":48,"breadcrumbs":4,"title":2},"32":{"body":36,"breadcrumbs":4,"title":2},"33":{"body":99,"breadcrumbs":4,"title":2},"34":{"body":395,"breadcrumbs":3,"title":1},"35":{"body":36,"breadcrumbs":3,"title":1},"36":{"body":120,"breadcrumbs":4,"title":2},"37":{"body":56,"breadcrumbs":5,"title":3},"38":{"body":87,"breadcrumbs":4,"title":2},"39":{"body":13,"breadcrumbs":4,"title":2},"4":{"body":12,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":6,"title":4},"41":{"body":52,"breadcrumbs":5,"title":3},"42":{"body":87,"breadcrumbs":4,"title":2},"43":{"body":518,"breadcrumbs":8,"title":6},"44":{"body":127,"breadcrumbs":4,"title":2},"45":{"body":0,"breadcrumbs":2,"title":2},"46":{"body":38,"breadcrumbs":4,"title":2},"47":{"body":18,"breadcrumbs":4,"title":2},"48":{"body":46,"breadcrumbs":3,"title":1},"49":{"body":74,"breadcrumbs":3,"title":1},"5":{"body":7,"breadcrumbs":1,"title":1},"50":{"body":86,"breadcrumbs":3,"title":1},"51":{"body":19,"breadcrumbs":4,"title":2},"52":{"body":22,"breadcrumbs":4,"title":2},"53":{"body":59,"breadcrumbs":3,"title":1},"54":{"body":44,"breadcrumbs":4,"title":2},"55":{"body":45,"breadcrumbs":3,"title":1},"56":{"body":59,"breadcrumbs":3,"title":1},"57":{"body":20,"breadcrumbs":3,"title":1},"58":{"body":40,"breadcrumbs":3,"title":1},"59":{"body":22,"breadcrumbs":3,"title":1},"6":{"body":0,"breadcrumbs":3,"title":1},"60":{"body":29,"breadcrumbs":3,"title":1},"61":{"body":20,"breadcrumbs":3,"title":1},"62":{"body":13,"breadcrumbs":3,"title":1},"63":{"body":23,"breadcrumbs":3,"title":1},"64":{"body":182,"breadcrumbs":3,"title":1},"65":{"body":82,"breadcrumbs":3,"title":1},"66":{"body":23,"breadcrumbs":3,"title":1},"67":{"body":15,"breadcrumbs":4,"title":2},"68":{"body":19,"breadcrumbs":4,"title":2},"69":{"body":113,"breadcrumbs":4,"title":2},"7":{"body":13,"breadcrumbs":4,"title":2},"70":{"body":69,"breadcrumbs":4,"title":2},"71":{"body":160,"breadcrumbs":9,"title":7},"72":{"body":9,"breadcrumbs":3,"title":1},"73":{"body":45,"breadcrumbs":5,"title":2},"74":{"body":72,"breadcrumbs":5,"title":2},"75":{"body":180,"breadcrumbs":5,"title":2},"76":{"body":28,"breadcrumbs":5,"title":2},"77":{"body":193,"breadcrumbs":5,"title":2},"78":{"body":68,"breadcrumbs":5,"title":2},"79":{"body":34,"breadcrumbs":6,"title":3},"8":{"body":61,"breadcrumbs":5,"title":3},"80":{"body":251,"breadcrumbs":5,"title":2},"81":{"body":45,"breadcrumbs":5,"title":2},"82":{"body":153,"breadcrumbs":6,"title":3},"83":{"body":26,"breadcrumbs":6,"title":3},"84":{"body":27,"breadcrumbs":6,"title":3},"85":{"body":16,"breadcrumbs":5,"title":2},"86":{"body":11,"breadcrumbs":3,"title":1},"87":{"body":23,"breadcrumbs":5,"title":2},"88":{"body":63,"breadcrumbs":5,"title":2},"89":{"body":54,"breadcrumbs":5,"title":2},"9":{"body":97,"breadcrumbs":5,"title":3},"90":{"body":29,"breadcrumbs":5,"title":2},"91":{"body":38,"breadcrumbs":6,"title":3},"92":{"body":58,"breadcrumbs":6,"title":3},"93":{"body":41,"breadcrumbs":5,"title":2},"94":{"body":70,"breadcrumbs":5,"title":2},"95":{"body":94,"breadcrumbs":6,"title":3},"96":{"body":171,"breadcrumbs":5,"title":2},"97":{"body":173,"breadcrumbs":5,"title":2},"98":{"body":293,"breadcrumbs":7,"title":2},"99":{"body":502,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"Near Protocol is the scalable blockchain protocol. For the overview of the NEAR Protocol, read the following documents in numerical order. Terminology Data structures Architecture Chain specification Runtime specification Economics","breadcrumbs":"The NEAR Protocol Specification","id":"0","title":"The NEAR Protocol Specification"},"1":{"body":"Standards such as Fungible Token Standard can be found in Standards page.","breadcrumbs":"Standards","id":"1","title":"Standards"},"10":{"body":"Valid accounts: ok\nbowen\nek-2\nek.near\ncom\ngoogle.com\nbowen.google.com\nnear\nillia.cheap-accounts.near\nmax_99.near\n100\nnear2019\nover.9000\na.bro\n// Valid, but can't be created, because \"a\" is too short\nbro.a Invalid accounts: not ok // Whitespace characters are not allowed\na // Too short\n100- // Suffix separator\nbo__wen // Two separators in a row\n_illia // Prefix separator\n.near // Prefix dot separator\nnear. // Suffix dot separator\na..near // Two dot separators in a row\n$$$ // Non alphanumeric characters are not allowed\nWAT // Non lowercase characters are not allowed\nme@google.com // @ is not allowed (it was allowed in the past)\n// TOO LONG:\nabcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz.abcdefghijklmnopqrstuvwxyz","breadcrumbs":"Data Structures » Examples","id":"10","title":"Examples"},"100":{"body":"promise_create(account_id_len: u64, account_id_ptr: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) -> u64 Creates a promise that will execute a method on account with given arguments and attaches the given amount. amount_ptr point to slices of bytes representing u128. Panics If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) -> u64 Attaches the callback that is executed after promise pointed by promise_idx is complete. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_and(promise_idx_ptr: u64, promise_idx_count: u64) -> u64 Creates a new promise which completes when time all promises passed as arguments complete. Cannot be used with registers. promise_idx_ptr points to an array of u64 elements, with promise_idx_count denoting the number of elements. The array contains indices of promises that need to be waited on jointly. Panics If promise_ids_ptr + 8 * promise_idx_count extend outside the guest memory with MemoryAccessViolation; If any of the promises in the array do not correspond to existing promises panics with InvalidPromiseIndex. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_results_count() -> u64 If the current function is invoked by a callback we can access the execution results of the promises that caused the callback. This function returns the number of complete and incomplete callbacks. Note, we are only going to have incomplete callbacks once we have promise_or combinator. Normal execution If there is only one callback promise_results_count() returns 1; If there are multiple callbacks (e.g. created through promise_and) promise_results_count() returns their number. If the function was called not through the callback promise_results_count() returns 0. Panics If called in a view function panics with ProhibitedInView. promise_result(result_idx: u64, register_id: u64) -> u64 If the current function is invoked by a callback we can access the execution results of the promises that caused the callback. This function returns the result in blob format and places it into the register. Normal execution If promise result is complete and successful copies its blob into the register; If promise result is complete and failed or incomplete keeps register unused; Returns If promise result is not complete returns 0; If promise result is complete and successful returns 1; If promise result is complete and failed returns 2. Panics If result_idx does not correspond to an existing result panics with InvalidResultIndex. If copying the blob exhausts the memory limit it panics with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Current bugs We currently have two separate functions to check for result completion and copy it. promise_return(promise_idx: u64) When promise promise_idx finishes executing its result is considered to be the result of the current function. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. Current bugs The current name return_promise is inconsistent with the naming convention of Promise API. promise_batch_create(account_id_len: u64, account_id_ptr: u64) -> u64 Creates a new promise towards given account_id without any actions attached to it. Panics If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_batch_then(promise_idx: u64, account_id_len: u64, account_id_ptr: u64) -> u64 Attaches a new empty promise that is executed after promise pointed by promise_idx is complete. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If account_id_len + account_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. Returns Index of the new promise that uniquely identifies it within the current execution of the method. promise_batch_action_create_account(promise_idx: u64) Appends CreateAccount action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R48 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If called in a view function panics with ProhibitedInView. promise_batch_action_deploy_contract(promise_idx: u64, code_len: u64, code_ptr: u64) Appends DeployContract action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R49 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If code_len + code_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_function_call(promise_idx: u64, method_name_len: u64, method_name_ptr: u64, arguments_len: u64, arguments_ptr: u64, amount_ptr: u64, gas: u64) Appends FunctionCall action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R50 NOTE: Calling promise_batch_create and then promise_batch_action_function_call will produce the same promise as calling promise_create directly. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If account_id_len + account_id_ptr or method_name_len + method_name_ptr or arguments_len + arguments_ptr or amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_transfer(promise_idx: u64, amount_ptr: u64) Appends Transfer action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R51 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If amount_ptr + 16 points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_stake(promise_idx: u64, amount_ptr: u64, bls_public_key_len: u64, bls_public_key_ptr: u64) Appends Stake action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R52 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given BLS public key is not a valid BLS public key (e.g. wrong length) InvalidPublicKey. If amount_ptr + 16 or bls_public_key_len + bls_public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_add_key_with_full_access(promise_idx: u64, public_key_len: u64, public_key_ptr: u64, nonce: u64) Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R54 The access key will have FullAccess permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_add_key_with_function_call(promise_idx: u64, public_key_len: u64, public_key_ptr: u64, nonce: u64, allowance_ptr: u64, receiver_id_len: u64, receiver_id_ptr: u64, method_names_len: u64, method_names_ptr: u64) Appends AddKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-156752ec7d78e7b85b8c7de4a19cbd4R54 The access key will have FunctionCall permission, details: https://github.com/nearprotocol/NEPs/blob/master/text/0005-access-keys.md#guide-level-explanation If the allowance value (not the pointer) is 0, the allowance is set to None (which means unlimited allowance). And positive value represents a Some(...) allowance. Given method_names is a utf-8 string with , used as a separator. The vm will split the given string into a vector of strings. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. if method_names is not a valid utf-8 string, fails with BadUTF8. If public_key_len + public_key_ptr, allowance_ptr + 16, receiver_id_len + receiver_id_ptr or method_names_len + method_names_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_delete_key(promise_idx: u64, public_key_len: u64, public_key_ptr: u64) Appends DeleteKey action to the batch of actions for the given promise pointed by promise_idx. Details for the action: https://github.com/nearprotocol/NEPs/pull/8/files#diff-15b6752ec7d78e7b85b8c7de4a19cbd4R55 Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If the given public key is not a valid public key (e.g. wrong length) InvalidPublicKey. If public_key_len + public_key_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView. promise_batch_action_delete_account(promise_idx: u64, beneficiary_id_len: u64, beneficiary_id_ptr: u64) Appends DeleteAccount action to the batch of actions for the given promise pointed by promise_idx. Action is used to delete an account. It can be performed on a newly created account, on your own account or an account with insufficient funds to pay rent. Takes beneficiary_id to indicate where to send the remaining funds. Panics If promise_idx does not correspond to an existing promise panics with InvalidPromiseIndex. If the promise pointed by the promise_idx is an ephemeral promise created by promise_and. If beneficiary_id_len + beneficiary_id_ptr points outside the memory of the guest or host, with MemoryAccessViolation. If called in a view function panics with ProhibitedInView.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Promises API","id":"100","title":"Promises API"},"101":{"body":"Context API mostly provides read-only functions that access current information about the blockchain, the accounts (that originally initiated the chain of cross-contract calls, the immediate contract that called the current one, the account of the current contract), other important information like storage usage. Many of the below functions are currently implemented through data_read which allows to read generic context data. However, there is no reason to have data_read instead of the specific functions: data_read does not solve forward compatibility. If later we want to add another context function, e.g. executed_operations we can just declare it as a new function, instead of encoding it as DATA_TYPE_EXECUTED_OPERATIONS = 42 which is passed as the first argument to data_read; data_read does not help with renaming. If later we decide to rename signer_account_id to originator_id then one could argue that contracts that rely on data_read would not break, while contracts relying on signer_account_id() would. However the name change often means the change of the semantics, which means the contracts using this function are no longer safe to execute anyway. However there is one reason to not have data_read -- it makes API more human-like which is a general direction Wasm APIs, like WASI are moving towards to. current_account_id(register_id: u64) Saves the account id of the current contract that we execute into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; signer_account_id(register_id: u64) All contract calls are a result of some transaction that was signed by some account using some access key and submitted into a memory pool (either through the wallet using RPC or by a node itself). This function returns the id of that account. Normal operation Saves the bytes of the signer account id into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Currently we conflate originator_id and sender_id in our code base. signer_account_pk(register_id: u64) Saves the public key fo the access key that was used by the signer into the register. In rare situations smart contract might want to know the exact access key that was used to send the original transaction, e.g. to increase the allowance or manipulate with the public key. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Not implemented. predecessor_account_id(register_id: u64) All contract calls are a result of a receipt, this receipt might be created by a transaction that does function invocation on the contract or another contract as a result of cross-contract call. Normal operation Saves the bytes of the predecessor account id into the register. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Not implemented. input(register_id: u64) Reads input to the contract call into the register. Input is expected to be in JSON-format. Normal operation If input is provided saves the bytes (potentially zero) of input into register. If input is not provided does not modify the register. Returns If input was not provided returns 0; If input was provided returns 1; If input is zero bytes returns 1, too. Panics If the registers exceed the memory limit panics with MemoryAccessViolation; Current bugs Implemented as part of data_read. However there is no reason to have one unified function, like data_read that can be used to read all block_index() -> u64 Returns the current block height from genesis. block_timestamp() -> u64 Returns the current block timestamp (number of non-leap-nanoseconds since January 1, 1970 0:00:00 UTC). epoch_height() -> u64 Returns the current epoch height from genesis. storage_usage() -> u64 Returns the number of bytes used by the contract if it was saved to the trie as of the invocation. This includes: The data written with storage_* functions during current and previous execution; The bytes needed to store the account protobuf and the access keys of the given account.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Context API","id":"101","title":"Context API"},"102":{"body":"Accounts own certain balance; and each transaction and each receipt have certain amount of balance and prepaid gas attached to them. During the contract execution, the contract has access to the following u128 values: account_balance -- the balance attached to the given account. This includes the attached_deposit that was attached to the transaction; attached_deposit -- the balance that was attached to the call that will be immediately deposited before the contract execution starts; prepaid_gas -- the tokens attached to the call that can be used to pay for the gas; used_gas -- the gas that was already burnt during the contract execution and attached to promises (cannot exceed prepaid_gas); If contract execution fails prepaid_gas - used_gas is refunded back to signer_account_id and attached_deposit is refunded back to predecessor_account_id. The following spec is the same for all functions: account_balance(balance_ptr: u64)\nattached_deposit(balance_ptr: u64) -- writes the value into the u128 variable pointed by balance_ptr. Panics If balance_ptr + 16 points outside the memory of the guest with MemoryAccessViolation; If called in a view function panics with ProhibitedInView. Current bugs Use a different name; prepaid_gas() -> u64\nused_gas() -> u64 Panics If called in a view function panics with ProhibitedInView.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Economics API","id":"102","title":"Economics API"},"103":{"body":"random_seed(register_id: u64) Returns random seed that can be used for pseudo-random number generation in deterministic way. Panics If the size of the registers exceed the set limit MemoryAccessViolation; sha256(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using sha256 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation. keccak256(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using keccak256 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation. keccak512(value_len: u64, value_ptr: u64, register_id: u64) Hashes the random sequence of bytes using keccak512 and returns it into register_id. Panics If value_len + value_ptr points outside the memory or the registers use more memory than the limit with MemoryAccessViolation.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Math API","id":"103","title":"Math API"},"104":{"body":"value_return(value_len: u64, value_ptr: u64) Sets the blob of data as the return value of the contract. Panics If value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; panic() Terminates the execution of the program with panic GuestPanic(\"explicit guest panic\"). panic_utf8(len: u64, ptr: u64) Terminates the execution of the program with panic GuestPanic(s), where s is the given UTF-8 encoded string. Normal behavior If len == u64::MAX then treats the string as null-terminated with character '\\0'; Panics If string extends outside the memory of the guest with MemoryAccessViolation; If string is not UTF-8 returns BadUtf8. If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8. log_utf8(len: u64, ptr: u64) Logs the UTF-8 encoded string. Normal behavior If len == u64::MAX then treats the string as null-terminated with character '\\0'; Panics If string extends outside the memory of the guest with MemoryAccessViolation; If string is not UTF-8 returns BadUtf8. If string length without null-termination symbol is larger than config.max_log_len returns BadUtf8. log_utf16(len: u64, ptr: u64) Logs the UTF-16 encoded string. len is the number of bytes in the string. See https://stackoverflow.com/a/5923961 that explains that null termination is not defined through encoding. Normal behavior If len == u64::MAX then treats the string as null-terminated with two-byte sequence of 0x00 0x00. Panics If string extends outside the memory of the guest with MemoryAccessViolation; abort(msg_ptr: u32, filename_ptr: u32, line: u32, col: u32) Special import kept for compatibility with AssemblyScript contracts. Not called by smart contracts directly, but instead called by the code generated by AssemblyScript.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Miscellaneous API","id":"104","title":"Miscellaneous API"},"105":{"body":"In the future we can have some of the registers to be on the guest. For instance a guest can tell the host that it has some pre-allocated memory that it wants to be used for the register, e.g. set_guest_register(register_id: u64, register_ptr: u64, max_register_size: u64) will assign register_id to a span of memory on the guest. Host then would also know the size of that buffer on guest and can throw a panic if there is an attempted copying that exceeds the guest register size.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Future Improvements","id":"105","title":"Future Improvements"},"106":{"body":"","breadcrumbs":"GenesisConfig","id":"106","title":"GenesisConfig"},"107":{"body":"type: u32 Protocol version that this genesis works with.","breadcrumbs":"protocol_version","id":"107","title":"protocol_version"},"108":{"body":"type: DateTime Official time of blockchain start.","breadcrumbs":"genesis_time","id":"108","title":"genesis_time"},"109":{"body":"type: String ID of the blockchain. This must be unique for every blockchain. If your testnet blockchains do not have unique chain IDs, you will have a bad time.","breadcrumbs":"chain_id","id":"109","title":"chain_id"},"11":{"body":"Data for an single account is collocated in one shard. The account data consists of the following: Balance Locked balance (for staking) Code of the contract Key-value storage of the contract. Stored in a ordered trie Access Keys Postponed ActionReceipts Received DataReceipts Balances Total account balance consists of unlocked balance and locked balance. Unlocked balance is tokens that the account can use for transaction fees, transfers staking and other operations. Locked balance is the tokens that are currently in use for staking to be a validator or to become a validator. Locked balance may become unlocked at the beginning of an epoch. See [Staking] for details. Contracts A contract (AKA smart contract) is a program in WebAssembly that belongs to a specific account. When account is created, it doesn't have a contract. A contract has to be explicitly deployed, either by the account owner, or during the account creation. A contract can be executed by anyone who calls a method on your account. A contract has access to the storage on your account. Storage Every account has its own storage. It's a persistent key-value trie. Keys are ordered in lexicographical order. The storage can only be modified by the contract on the account. Current implementation on Runtime only allows your account's contract to read from the storage, but this might change in the future and other accounts's contracts will be able to read from your storage. NOTE: Accounts are charged recurrent rent for the total storage. This includes storage of the account itself, contract code, contract storage and all access keys. Access Keys An access key grants an access to a account. Each access key on the account is identified by a unique public key. This public key is used to validate signature of transactions. Each access key contains a unique nonce to differentiate or order transactions signed with this access key. An access keys have a permission associated with it. The permission can be one of two types: Full permission. It grants full access to the account. Function call permission. It grants access to only issue function call transactions. See [Access Keys] for more details.","breadcrumbs":"Data Structures » Account","id":"11","title":"Account"},"110":{"body":"type: u32 Number of block producer seats at genesis.","breadcrumbs":"num_block_producers","id":"110","title":"num_block_producers"},"111":{"body":"type: [ValidatorId] Defines number of shards and number of validators per each shard at genesis.","breadcrumbs":"block_producers_per_shard","id":"111","title":"block_producers_per_shard"},"112":{"body":"type: [ValidatorId] Expected number of fisherman per shard.","breadcrumbs":"avg_fisherman_per_shard","id":"112","title":"avg_fisherman_per_shard"},"113":{"body":"type: bool Enable dynamic re-sharding.","breadcrumbs":"dynamic_resharding","id":"113","title":"dynamic_resharding"},"114":{"body":"type: BlockIndex, Epoch length counted in blocks.","breadcrumbs":"epoch_length","id":"114","title":"epoch_length"},"115":{"body":"type: Gas, Initial gas limit for a block","breadcrumbs":"gas_limit","id":"115","title":"gas_limit"},"116":{"body":"type: Balance, Initial gas price","breadcrumbs":"gas_price","id":"116","title":"gas_price"},"117":{"body":"type: u8 Criterion for kicking out block producers (this is a number between 0 and 100)","breadcrumbs":"block_producer_kickout_threshold","id":"117","title":"block_producer_kickout_threshold"},"118":{"body":"type: u8 Criterion for kicking out chunk producers (this is a number between 0 and 100)","breadcrumbs":"chunk_producer_kickout_threshold","id":"118","title":"chunk_producer_kickout_threshold"},"119":{"body":"type: Fraction Gas price adjustment rate","breadcrumbs":"gas_price_adjustment_rate","id":"119","title":"gas_price_adjustment_rate"},"12":{"body":"Access key provides an access for a particular account. Each access key belongs to some account and is identified by a unique (within the account) public key. Access keys are stored as account_id,public_key in a trie state. Account can have from zero to multiple access keys. pub struct AccessKey { /// The nonce for this access key. /// NOTE: In some cases the access key needs to be recreated. If the new access key reuses the /// same public key, the nonce of the new access key should be equal to the nonce of the old /// access key. It's required to avoid replaying old transactions again. pub nonce: Nonce, /// Defines permissions for this access key. pub permission: AccessKeyPermission,\n} There are 2 types of AccessKeyPermission in Near currently: FullAccess and FunctionCall. FunctionCall grants a permission to issue any action on account like DeployContract , Transfer tokens to other account, call functions FunctionCall , Stake and even delete account DeleteAccountAction . FullAccess also allow to manage access keys. AccessKeyPermission::FunctionCall limits to do only contract calls. pub enum AccessKeyPermission { FunctionCall(FunctionCallPermission), FullAccess,\n}","breadcrumbs":"Data Structures » Access Keys","id":"12","title":"Access Keys"},"120":{"body":"type: RuntimeConfig Runtime configuration (mostly economics constants).","breadcrumbs":"runtime_config","id":"120","title":"runtime_config"},"121":{"body":"type: [AccountInfo] List of initial validators.","breadcrumbs":"validators","id":"121","title":"validators"},"122":{"body":"type: Vec< StateRecord > Records in storage at genesis (get split into shards at genesis creation).","breadcrumbs":"records","id":"122","title":"records"},"123":{"body":"type: u64 Number of blocks for which a given transaction is valid","breadcrumbs":"transaction_validity_period","id":"123","title":"transaction_validity_period"},"124":{"body":"type: Fraction Developer reward percentage.","breadcrumbs":"developer_reward_percentage","id":"124","title":"developer_reward_percentage"},"125":{"body":"type: Fraction Protocol treasury percentage.","breadcrumbs":"protocol_reward_percentage","id":"125","title":"protocol_reward_percentage"},"126":{"body":"type: Fraction Maximum inflation on the total supply every epoch.","breadcrumbs":"max_inflation_rate","id":"126","title":"max_inflation_rate"},"127":{"body":"type: Balance Total supply of tokens at genesis.","breadcrumbs":"total_supply","id":"127","title":"total_supply"},"128":{"body":"type: u64 Expected number of blocks per year","breadcrumbs":"num_blocks_per_year","id":"128","title":"num_blocks_per_year"},"129":{"body":"type: AccountId Protocol treasury account","breadcrumbs":"protocol_treasury_account","id":"129","title":"protocol_treasury_account"},"13":{"body":"Grants limited permission to make FunctionCall to a specified receiver_id and methods of a particular contract with a limit of allowed balance to spend. pub struct FunctionCallPermission { /// Allowance is a balance limit to use by this access key to pay for function call gas and /// transaction fees. When this access key is used, both account balance and the allowance is /// decreased by the same value. /// `None` means unlimited allowance. /// NOTE: To change or increase the allowance, the old access key needs to be deleted and a new /// access key should be created. pub allowance: Option, /// The access key only allows transactions with the given receiver's account id. pub receiver_id: AccountId, /// A list of method names that can be used. The access key only allows transactions with the /// function call of one of the given method names. /// Empty list means any method name can be used. pub method_names: Vec,\n}","breadcrumbs":"Data Structures » AccessKeyPermission::FunctionCall","id":"13","title":"AccessKeyPermission::FunctionCall"},"130":{"body":"For the specific economic specs, refer to Economics Section .","breadcrumbs":"protocol economics","id":"130","title":"protocol economics"},"131":{"body":"The structure that holds the parameters of the runtime, mostly economics.","breadcrumbs":"GenesisConfig » RuntimeConfig","id":"131","title":"RuntimeConfig"},"132":{"body":"type: Balance The cost to store one byte of storage per block.","breadcrumbs":"GenesisConfig » storage_cost_byte_per_block","id":"132","title":"storage_cost_byte_per_block"},"133":{"body":"type: Balance Costs of different actions that need to be performed when sending and processing transaction and receipts.","breadcrumbs":"GenesisConfig » storage_cost_byte_per_block","id":"133","title":"storage_cost_byte_per_block"},"134":{"body":"type: BlockIndex The minimum number of blocks of storage rent an account has to maintain to prevent forced deletion.","breadcrumbs":"GenesisConfig » poke_threshold","id":"134","title":"poke_threshold"},"135":{"body":"type: RuntimeFeesConfig Costs of different actions that need to be performed when sending and processing transaction and receipts.","breadcrumbs":"GenesisConfig » transaction_costs","id":"135","title":"transaction_costs"},"136":{"body":"type: VMConfig , Config of wasm operations.","breadcrumbs":"GenesisConfig » wasm_config","id":"136","title":"wasm_config"},"137":{"body":"type: Balance The baseline cost to store account_id of short length per block. The original formula in NEP#0006 is 1,000 / (3 ^ (account_id.length - 2)) for cost per year. This value represents 1,000 above adjusted to use per block","breadcrumbs":"GenesisConfig » account_length_baseline_cost_per_block","id":"137","title":"account_length_baseline_cost_per_block"},"138":{"body":"Economic parameters for runtime","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeesConfig","id":"138","title":"RuntimeFeesConfig"},"139":{"body":"type: Fee Describes the cost of creating an action receipt, ActionReceipt, excluding the actual cost of actions.","breadcrumbs":"GenesisConfig » RuntimeConfig » action_receipt_creation_config","id":"139","title":"action_receipt_creation_config"},"14":{"body":"If account has no access keys attached it means that it has no owner who can run transactions from its behalf. However, if such accounts has code it can be invoked by other accounts and contracts.","breadcrumbs":"Data Structures » Account without access keys","id":"14","title":"Account without access keys"},"140":{"body":"type: DataReceiptCreationConfig Describes the cost of creating a data receipt, DataReceipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_receipt_creation_config","id":"140","title":"data_receipt_creation_config"},"141":{"body":"type: ActionCreationConfig Describes the cost of creating a certain action, Action. Includes all variants.","breadcrumbs":"GenesisConfig » RuntimeConfig » action_creation_config","id":"141","title":"action_creation_config"},"142":{"body":"type: StorageUsageConfig Describes fees for storage rent","breadcrumbs":"GenesisConfig » RuntimeConfig » storage_usage_config","id":"142","title":"storage_usage_config"},"143":{"body":"type: Fraction Fraction of the burnt gas to reward to the contract account for execution.","breadcrumbs":"GenesisConfig » RuntimeConfig » burnt_gas_reward","id":"143","title":"burnt_gas_reward"},"144":{"body":"Describes the cost of creating an access key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » AccessKeyCreationConfig","id":"144","title":"AccessKeyCreationConfig"},"145":{"body":"type: Fee Base cost of creating a full access access-key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » full_access_cost","id":"145","title":"full_access_cost"},"146":{"body":"type: Fee Base cost of creating an access-key restricted to specific functions.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost","id":"146","title":"function_call_cost"},"147":{"body":"type: Fee Cost per byte of method_names of creating a restricted access-key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost_per_byte","id":"147","title":"function_call_cost_per_byte"},"148":{"body":"Describes the cost of creating a specific action, Action. Includes all variants.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » action_creation_config","id":"148","title":"action_creation_config"},"149":{"body":"type: Fee Base cost of creating an account.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » create_account_cost","id":"149","title":"create_account_cost"},"15":{"body":"","breadcrumbs":"Data Structures » Transaction","id":"15","title":"Transaction"},"150":{"body":"type: Fee Base cost of deploying a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » deploy_contract_cost","id":"150","title":"deploy_contract_cost"},"151":{"body":"type: Fee Cost per byte of deploying a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » deploy_contract_cost_per_byte","id":"151","title":"deploy_contract_cost_per_byte"},"152":{"body":"type: Fee Base cost of calling a function.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost","id":"152","title":"function_call_cost"},"153":{"body":"type: Fee Cost per byte of method name and arguments of calling a function.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » function_call_cost_per_byte","id":"153","title":"function_call_cost_per_byte"},"154":{"body":"type: Fee Base cost of making a transfer.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » transfer_cost","id":"154","title":"transfer_cost"},"155":{"body":"type: Fee Base cost of staking.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » stake_cost","id":"155","title":"stake_cost"},"156":{"body":"type: AccessKeyCreationConfig Base cost of adding a key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » add_key_cost:","id":"156","title":"add_key_cost:"},"157":{"body":"type: Fee Base cost of deleting a key.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » delete_key_cost","id":"157","title":"delete_key_cost"},"158":{"body":"type: Fee Base cost of deleting an account.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » delete_account_cost","id":"158","title":"delete_account_cost"},"159":{"body":"Describes the cost of creating a data receipt, DataReceipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » DataReceiptCreationConfig","id":"159","title":"DataReceiptCreationConfig"},"16":{"body":"Near node consists roughly of a blockchain layer and a runtime layer. These layers are designed to be independent from each other: the blockchain layer can in theory support runtime that processes transactions differently, has a different virtual machine (e.g. RISC-V), has different fees; on the other hand the runtime is oblivious to where the transactions are coming from. It is not aware whether the blockchain it runs on is sharded, what consensus it uses, and whether it runs as part of a blockchain at all. The blockchain layer and the runtime layer share the following components and invariants:","breadcrumbs":"Architecture","id":"16","title":"Architecture"},"160":{"body":"type: Fee Base cost of creating a data receipt.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » base_cost","id":"160","title":"base_cost"},"161":{"body":"type: Fee Additional cost per byte sent.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » cost_per_byte","id":"161","title":"cost_per_byte"},"162":{"body":"Describes cost of storage per block","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » StorageUsageConfig","id":"162","title":"StorageUsageConfig"},"163":{"body":"type: Gas Base storage usage for an account","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » account_cost","id":"163","title":"account_cost"},"164":{"body":"type: Gas Base cost for a k/v record","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » data_record_cost","id":"164","title":"data_record_cost"},"165":{"body":"type: Gas Cost per byte of key","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » key_cost_per_byte:","id":"165","title":"key_cost_per_byte:"},"166":{"body":"type: Gas Cost per byte of value","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » value_cost_per_byte: Gas","id":"166","title":"value_cost_per_byte: Gas"},"167":{"body":"type: Gas Cost per byte of contract code","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » code_cost_per_byte: Gas","id":"167","title":"code_cost_per_byte: Gas"},"168":{"body":"Costs associated with an object that can only be sent over the network (and executed by the receiver).","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » Fee","id":"168","title":"Fee"},"169":{"body":"Fee for sending an object from the sender to itself, guaranteeing that it does not leave","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » send_sir","id":"169","title":"send_sir"},"17":{"body":"Transactions and receipts are a fundamental concept in Near Protocol. Transactions represent actions requested by the blockchain user, e.g. send assets, create account, execute a method, etc. Receipts, on the other hand is an internal structure; think of a receipt as a message which is used inside a message-passing system. Transactions are created outside the Near Protocol node, by the user who sends them via RPC or network communication. Receipts are created by the runtime from transactions or as the result of processing other receipts. Blockchain layer cannot create or process transactions and receipts, it can only manipulate them by passing them around and feeding them to a runtime.","breadcrumbs":"Transactions and Receipts","id":"17","title":"Transactions and Receipts"},"170":{"body":"Fee for sending an object potentially across the shards.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » send_not_sir","id":"170","title":"send_not_sir"},"171":{"body":"Fee for executing the object.","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » execution","id":"171","title":"execution"},"172":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » Fraction","id":"172","title":"Fraction"},"173":{"body":"type: u64","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » numerator","id":"173","title":"numerator"},"174":{"body":"type: u64","breadcrumbs":"GenesisConfig » RuntimeConfig » RuntimeFeeConfig » denominator","id":"174","title":"denominator"},"175":{"body":"Config of wasm operations.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig","id":"175","title":"VMConfig"},"176":{"body":"type: ExtCostsConfig Costs for runtime externals","breadcrumbs":"GenesisConfig » RuntimeConfig » ext_costs:","id":"176","title":"ext_costs:"},"177":{"body":"type: u32 Gas cost of a growing memory by single page.","breadcrumbs":"GenesisConfig » RuntimeConfig » grow_mem_cost","id":"177","title":"grow_mem_cost"},"178":{"body":"type: u32 Gas cost of a regular operation.","breadcrumbs":"GenesisConfig » RuntimeConfig » regular_op_cost","id":"178","title":"regular_op_cost"},"179":{"body":"type: Gas Max amount of gas that can be used, excluding gas attached to promises.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_gas_burnt","id":"179","title":"max_gas_burnt"},"18":{"body":"Similar to Ethereum, Near Protocol is an account-based system. Which means that each blockchain user is roughly associated with one or several accounts (there are exceptions though, when users share an account and are separated through the access keys). The runtime is essentially a complex set of rules on what to do with accounts based on the information from the transactions and the receipts. It is therefore deeply aware of the concept of account. Blockchain layer however is mostly aware of the accounts through the trie (see below) and the validators (see below). Outside these two it does not operate on the accounts directly.","breadcrumbs":"Account-Based System","id":"18","title":"Account-Based System"},"180":{"body":"type: u32 How tall the stack is allowed to grow?","breadcrumbs":"GenesisConfig » RuntimeConfig » max_stack_height","id":"180","title":"max_stack_height"},"181":{"body":"type: u32","breadcrumbs":"GenesisConfig » RuntimeConfig » initial_memory_pages","id":"181","title":"initial_memory_pages"},"182":{"body":"type: u32 The initial number of memory pages. What is the maximal memory pages amount is allowed to have for a contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_memory_pages","id":"182","title":"max_memory_pages"},"183":{"body":"type: u64 Limit of memory used by registers.","breadcrumbs":"GenesisConfig » RuntimeConfig » registers_memory_limit","id":"183","title":"registers_memory_limit"},"184":{"body":"type: u64 Maximum number of bytes that can be stored in a single register.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_register_size","id":"184","title":"max_register_size"},"185":{"body":"type: u64 Maximum number of registers that can be used simultaneously.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_number_registers","id":"185","title":"max_number_registers"},"186":{"body":"type: u64 Maximum number of log entries.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_number_logs","id":"186","title":"max_number_logs"},"187":{"body":"type: u64 Maximum length of a single log, in bytes.","breadcrumbs":"GenesisConfig » RuntimeConfig » max_log_len","id":"187","title":"max_log_len"},"188":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » ExtCostsConfig","id":"188","title":"ExtCostsConfig"},"189":{"body":"type: Gas Base cost for calling a host function.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » base","id":"189","title":"base"},"19":{"body":"Every account at NEAR belongs to some shard. All the information related to this account also belongs to the same shard. The information includes: Balance Locked balance (for staking) Code of the contract Key-value storage of the contract All Access Keys Runtime assumes, it's the only information that is available for the contract execution. While other accounts may belong to the same shards, the Runtime never uses or provides them during contract execution. We can just assume that every account belongs to its own shard. So there is no reason to intentionally try to collocate accounts.","breadcrumbs":"Assume every account belongs to its own shard","id":"19","title":"Assume every account belongs to its own shard"},"190":{"body":"type: Gas Base cost for guest memory read","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_memory_base","id":"190","title":"read_memory_base"},"191":{"body":"type: Gas Cost for guest memory read","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_memory_byte","id":"191","title":"read_memory_byte"},"192":{"body":"type: Gas Base cost for guest memory write","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_memory_base","id":"192","title":"write_memory_base"},"193":{"body":"type: Gas Cost for guest memory write per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_memory_byte","id":"193","title":"write_memory_byte"},"194":{"body":"type: Gas Base cost for reading from register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_register_base","id":"194","title":"read_register_base"},"195":{"body":"type: Gas Cost for reading byte from register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » read_register_byte","id":"195","title":"read_register_byte"},"196":{"body":"type: Gas Base cost for writing into register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_register_base","id":"196","title":"write_register_base"},"197":{"body":"type: Gas Cost for writing byte into register","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » write_register_byte","id":"197","title":"write_register_byte"},"198":{"body":"type: Gas Base cost of decoding utf8.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf8_decoding_base","id":"198","title":"utf8_decoding_base"},"199":{"body":"type: Gas Cost per bye of decoding utf8.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf8_decoding_byte","id":"199","title":"utf8_decoding_byte"},"2":{"body":"","breadcrumbs":"Terminology","id":"2","title":"Terminology"},"20":{"body":"Near Protocol is a stateful blockchain -- there is a state associated with each account and the user actions performed through transactions mutate that state. The state then is stored as a trie, and both the blockchain layer and the runtime layer are aware of this technical detail. The blockchain layer manipulates the trie directly. It partitions the trie between the shards to distribute the load. It synchronizes the trie between the nodes, and eventually it is responsible for maintaining the consistency of the trie between the nodes through its consensus mechanism and other game-theoretic methods. The runtime layer is also aware that the storage that it uses to perform the operations on is a trie. In general it does not have to know this technical detail and in theory we could have abstracted out the trie as a generic key-value storage. However, we allow some trie-specific operations that we expose to the smart contract developers so that they utilize Near Protocol to its maximum efficiency.","breadcrumbs":"Trie","id":"20","title":"Trie"},"200":{"body":"type: Gas Base cost of decoding utf16.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf16_decoding_base","id":"200","title":"utf16_decoding_base"},"201":{"body":"type: Gas Cost per bye of decoding utf16.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » utf16_decoding_byte","id":"201","title":"utf16_decoding_byte"},"202":{"body":"type: Gas Cost of getting sha256 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » sha256_base","id":"202","title":"sha256_base"},"203":{"body":"type: Gas Cost of getting sha256 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » sha256_byte","id":"203","title":"sha256_byte"},"204":{"body":"type: Gas Cost of getting keccak256 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak256_base","id":"204","title":"keccak256_base"},"205":{"body":"type: Gas Cost of getting keccak256 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak256_byte","id":"205","title":"keccak256_byte"},"206":{"body":"type: Gas Cost of getting keccak512 base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak512_base","id":"206","title":"keccak512_base"},"207":{"body":"type: Gas Cost of getting keccak512 per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » keccak512_byte","id":"207","title":"keccak512_byte"},"208":{"body":"type: Gas Cost for calling logging.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » log_base","id":"208","title":"log_base"},"209":{"body":"type: Gas Cost for logging per byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » log_byte","id":"209","title":"log_byte"},"21":{"body":"Even though tokens is a fundamental concept of the blockchain, it is neatly encapsulated inside the runtime layer together with the gas, fees, and rewards. The only way the blockchain layer is aware of the tokens and the gas is through the computation of the exchange rate and the inflation which is based strictly on the block production mechanics.","breadcrumbs":"Tokens and gas","id":"21","title":"Tokens and gas"},"210":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » Storage API","id":"210","title":"Storage API"},"211":{"body":"type: Gas Storage trie write key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_base","id":"211","title":"storage_write_base"},"212":{"body":"type: Gas Storage trie write key per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_key_byte","id":"212","title":"storage_write_key_byte"},"213":{"body":"type: Gas Storage trie write value per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_value_byte","id":"213","title":"storage_write_value_byte"},"214":{"body":"type: Gas Storage trie write cost per byte of evicted value.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_write_evicted_byte","id":"214","title":"storage_write_evicted_byte"},"215":{"body":"type: Gas Storage trie read key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_base","id":"215","title":"storage_read_base"},"216":{"body":"type: Gas Storage trie read key per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_key_byte","id":"216","title":"storage_read_key_byte"},"217":{"body":"type: Gas Storage trie read value cost per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_read_value_byte","id":"217","title":"storage_read_value_byte"},"218":{"body":"type: Gas Remove key from trie base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_base","id":"218","title":"storage_remove_base"},"219":{"body":"type: Gas Remove key from trie per byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_key_byte","id":"219","title":"storage_remove_key_byte"},"22":{"body":"Both the blockchain layer and the runtime layer are aware of a special group of participants who are responsible for maintaining the integrity of the Near Protocol. These participants are associated with the accounts and are rewarded accordingly. The reward part is what the runtime layer is aware of, while everything around the orchestration of the validators is inside the blockchain layer.","breadcrumbs":"Validators","id":"22","title":"Validators"},"220":{"body":"type: Gas Remove key from trie ret value byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_remove_ret_value_byte","id":"220","title":"storage_remove_ret_value_byte"},"221":{"body":"type: Gas Storage trie check for key existence cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_has_key_base","id":"221","title":"storage_has_key_base"},"222":{"body":"type: Gas Storage trie check for key existence per key byte","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_has_key_byte","id":"222","title":"storage_has_key_byte"},"223":{"body":"type: Gas Create trie prefix iterator cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_prefix_base","id":"223","title":"storage_iter_create_prefix_base"},"224":{"body":"type: Gas Create trie prefix iterator cost per byte.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_prefix_byte","id":"224","title":"storage_iter_create_prefix_byte"},"225":{"body":"type: Gas Create trie range iterator cost base","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_range_base","id":"225","title":"storage_iter_create_range_base"},"226":{"body":"type: Gas Create trie range iterator cost per byte of from key.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_from_byte","id":"226","title":"storage_iter_create_from_byte"},"227":{"body":"type: Gas Create trie range iterator cost per byte of to key.","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_create_to_byte","id":"227","title":"storage_iter_create_to_byte"},"228":{"body":"type: Gas Trie iterator per key base cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_base","id":"228","title":"storage_iter_next_base"},"229":{"body":"type: Gas Trie iterator next key byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_key_byte","id":"229","title":"storage_iter_next_key_byte"},"23":{"body":"Interestingly, the following concepts are for the blockchain layer only and the runtime layer is not aware of them: Sharding -- the runtime layer does not know that it is being used in a sharded blockchain, e.g. it does not know that the trie it works on is only a part of the overall blockchain state; Blocks or chunks -- the runtime does not know that the receipts that it processes constitute a chunk and that the output receipts will be used in other chunks. From the runtime perspective it consumes and outputs batches of transactions and receipts; Consensus -- the runtime does not know how consistency of the state is maintained; Communication -- the runtime don't know anything about the current network topology. Receipt has only a receiver_id (a recipient account), but knows nothing about the destination shard, so it's a responsibility of a blockchain layer to route a particular receipt.","breadcrumbs":"Blockchain Layer Concepts","id":"23","title":"Blockchain Layer Concepts"},"230":{"body":"type: Gas Trie iterator next key byte cost","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » storage_iter_next_value_byte","id":"230","title":"storage_iter_next_value_byte"},"231":{"body":"type: Gas Cost per touched trie node","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » touching_trie_node","id":"231","title":"touching_trie_node"},"232":{"body":"","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » Promise API","id":"232","title":"Promise API"},"233":{"body":"type: Gas Cost for calling promise_and","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_and_base","id":"233","title":"promise_and_base"},"234":{"body":"type: Gas Cost for calling promise_and for each promise","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_and_per_promise","id":"234","title":"promise_and_per_promise"},"235":{"body":"type: Gas Cost for calling promise_return","breadcrumbs":"GenesisConfig » RuntimeConfig » VMConfig » promise_return","id":"235","title":"promise_return"},"236":{"body":"type: Enum Enum that describes one of the records in the state storage.","breadcrumbs":"GenesisConfig » RuntimeConfig » StateRecord","id":"236","title":"StateRecord"},"237":{"body":"type: Unnamed struct Record that contains account information for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Account","id":"237","title":"Account"},"238":{"body":"type: AccountId The account ID of the account.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"238","title":"account_id"},"239":{"body":"type: Account The account structure. Serialized to JSON. U128 types are serialized to strings.","breadcrumbs":"GenesisConfig » RuntimeConfig » account","id":"239","title":"account"},"24":{"body":"Fees and rewards -- fees and rewards are neatly encapsulated in the runtime layer. The blockchain layer, however has an indirect knowledge of them through the computation of the tokens-to-gas exchange rate and the inflation.","breadcrumbs":"Runtime Layer Concepts","id":"24","title":"Runtime Layer Concepts"},"240":{"body":"type: Unnamed struct Record that contains key-value data record for a contract at the given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Data","id":"240","title":"Data"},"241":{"body":"type: AccountId The account ID of the contract that contains this data record.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"241","title":"account_id"},"242":{"body":"type: Vec Data Key serialized in Base64 format. NOTE: Key doesn't contain the data separator.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_key","id":"242","title":"data_key"},"243":{"body":"type: Vec Value serialized in Base64 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » value","id":"243","title":"value"},"244":{"body":"type: Unnamed struct Record that contains a contract code for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » Contract","id":"244","title":"Contract"},"245":{"body":"type: AccountId The account ID of that has the contract.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"245","title":"account_id"},"246":{"body":"type: Vec WASM Binary contract code serialized in Base64 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » code","id":"246","title":"code"},"247":{"body":"type: Unnamed struct Record that contains an access key for a given account ID.","breadcrumbs":"GenesisConfig » RuntimeConfig » AccessKey","id":"247","title":"AccessKey"},"248":{"body":"type: AccountId The account ID of the access key owner.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"248","title":"account_id"},"249":{"body":"type: [PublicKey] The public key for the access key in JSON-friendly string format. E.g. ed25519:5JFfXMziKaotyFM1t4hfzuwh8GZMYCiKHfqw1gTEWMYT","breadcrumbs":"GenesisConfig » RuntimeConfig » public_key","id":"249","title":"public_key"},"25":{"body":"TBD","breadcrumbs":"Chain Specification","id":"25","title":"Chain Specification"},"250":{"body":"type: AccessKey The access key serialized in JSON format.","breadcrumbs":"GenesisConfig » RuntimeConfig » access_key","id":"250","title":"access_key"},"251":{"body":"type: Box< Receipt > Record that contains a receipt that was postponed on a shard (e.g. it's waiting for incoming data). The receipt is in JSON-friendly format. The receipt can only be an ActionReceipt. NOTE: Box is used to decrease fixed size of the entire enum.","breadcrumbs":"GenesisConfig » RuntimeConfig » PostponedReceipt","id":"251","title":"PostponedReceipt"},"252":{"body":"type: Unnamed struct Record that contains information about received data for some action receipt, that is not yet received or processed for a given account ID. The data is received using DataReceipt before. See Receipts for details.","breadcrumbs":"GenesisConfig » RuntimeConfig » ReceivedData","id":"252","title":"ReceivedData"},"253":{"body":"type: AccountId The account ID of the receiver of the data.","breadcrumbs":"GenesisConfig » RuntimeConfig » account_id","id":"253","title":"account_id"},"254":{"body":"type: [CryptoHash] Data ID of the data in base58 format.","breadcrumbs":"GenesisConfig » RuntimeConfig » data_id","id":"254","title":"data_id"},"255":{"body":"type: Option> Optional data encoded as base64 format or null in JSON.","breadcrumbs":"GenesisConfig » RuntimeConfig » data","id":"255","title":"data"},"256":{"body":"type: Box< Receipt > Record that contains a receipt that was delayed on a shard. It means the shard was overwhelmed with receipts and it processes receipts from backlog. The receipt is in JSON-friendly format. See Delayed Receipts for details. NOTE: Box is used to decrease fixed size of the entire enum.","breadcrumbs":"GenesisConfig » RuntimeConfig » DelayedReceipt","id":"256","title":"DelayedReceipt"},"257":{"body":"This is under heavy development","breadcrumbs":"Economics","id":"257","title":"Economics"},"258":{"body":"Name Value yoctoNEAR smallest undividable amount of native currency NEAR . NEAR 10**24 yoctoNEAR block smallest on-chain unit of time gas unit to measure usage of blockchain","breadcrumbs":"Units","id":"258","title":"Units"},"259":{"body":"Name Value INITIAL_SUPPLY 10**33 yoctoNEAR NEAR 10**24 yoctoNEAR MIN_GAS_PRICE 10**5 yoctoNEAR REWARD_PCT_PER_YEAR 0.05 BLOCK_TIME 1 second EPOCH_LENGTH 43,200 blocks EPOCHS_A_YEAR 730 epochs POKE_THRESHOLD 500 blocks INITIAL_MAX_STORAGE 10 * 2**40 bytes == 10 TB TREASURY_PCT 0.1 TREASURY_ACCOUNT_ID treasury CONTRACT_PCT 0.3 INVALID_STATE_SLASH_PCT 0.05 ADJ_FEE 0.001 TOTAL_SEATS 100","breadcrumbs":"General Parameters","id":"259","title":"General Parameters"},"26":{"body":"","breadcrumbs":"Chain specification » Consensus","id":"26","title":"Consensus"},"260":{"body":"Name Description Initial value totalSupply[t] Total supply of NEAR at given epoch[t] INITIAL_SUPPLY gasPrice[t] The cost of 1 unit of gas in NEAR tokens (see Transaction Fees section below) MIN_GAS_PRICE storageAmountPerByte[t] keeping constant, INITIAL_SUPPLY / INITIAL_MAX_STORAGE ~9.09 * 10**19 yoctoNEAR","breadcrumbs":"General Variables","id":"260","title":"General Variables"},"261":{"body":"The protocol sets a ceiling for the maximum issuance of tokens, and dynamically decreases this issuance depending on the amount of total fees in the system. Name Description reward[t] totalSupply[t] * ((1 - REWARD_PCT_PER_YEAR) ** (1/EPOCHS_A_YEAR) - 1) epochFee[t] sum([(1 - DEVELOPER_PCT_PER_YEAR) * block.txFee + block.stateFee for block in epoch[t]]) issuance[t] The amount of token issued at a certain epoch[t], issuance[t] = reward[t] - epochFee[t] Where totalSupply[t] is the total number of tokens in the system at a given time t . If epochFee[t] > reward[t] the issuance is negative, thus the totalSupply[t] decreases in given epoch.","breadcrumbs":"Issuance","id":"261","title":"Issuance"},"262":{"body":"Each transaction before inclusion must buy gas enough to cover the cost of bandwidth and execution. Gas unifies execution and bytes of bandwidth usage of blockchain. Each WASM instruction or pre-compiled function gets assigned an amount of gas based on measurements on common-denominator computer. Same goes for weighting the used bandwidth based on general unified costs. For specific gas mapping numbers see ??? . Gas is priced dynamically in NEAR tokens. At each block t, we update gasPrice[t] = gasPrice[t - 1] * (gasUsed[t - 1] / gasLimit[t - 1] - 0.5) * ADJ_FEE. Where gasUsed[t] = sum([sum([gas(tx) for tx in chunk]) for chunk in block[t]]). gasLimit[t] is defined as gasLimit[t] = gasLimit[t - 1] + validatorGasDiff[t - 1], where validatorGasDiff is parameter with which each chunk producer can either increase or decrease gas limit based on how long it to execute the previous chunk. validatorGasDiff[t] can be only within ±0.1% of gasLimit[t] and only if gasUsed[t - 1] > 0.9 * gasLimit[t - 1].","breadcrumbs":"Transaction Fees","id":"262","title":"Transaction Fees"},"263":{"body":"Amount of NEAR on the account represents right for this account to take portion of the blockchain's overall global state. Transactions fail if account doesn't have enough balance to cover the storage required for given account. def check_storage_cost(account): # Compute requiredAmount given size of the account. requiredAmount = sizeOf(account) * storageAmountPerByte return Ok() if account.amount + account.locked < requiredAmount else Error(requiredAmount) # Check when transaction is received to verify that it is valid.\ndef verify_transaction(tx, signer_account): # ... # Updates signer's account with the amount it will have after executing this tx. update_post_amount(signer_account, tx) result = check_storage_cost(signer_account) # If enough balance OR account is been deleted by the owner. if not result.ok() or DeleteAccount(tx.signer_id) in tx.actions: assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err()) # After account touched / changed, we check it still has enough balance to cover it's storage.\ndef on_account_change(block_height, account): # ... execute transaction / receipt changes ... # Validate post-condition and revert if it fails. result = check_storage_cost(sender_account) if not result.ok(): assert LackBalanceForState(signer_id: tx.signer_id, amount: result.err()) Where sizeOf(account) includes size of account_id, account structure and size of all the data stored under the account. Account can end up with not enough balance in case it gets slashed. Account will become unusable as all orginating transactions will fail (including deletion). The only way to recover it in this case is by sending extra funds from a different accounts.","breadcrumbs":"State Stake","id":"263","title":"State Stake"},"264":{"body":"NEAR validators provide their resources in exchange for a reward epochReward[t], where [t] represents the considered epoch Name Description epochReward[t] = coinbaseReward[t] + epochFee[t] coinbaseReward[t] The maximum inflation per epoch[t], as a function of REWARD_PCT_PER_YEAR / EPOCHS_A_YEAR","breadcrumbs":"Validators","id":"264","title":"Validators"},"265":{"body":"Name Description proposals The array of all existing validators, minus the ones which were online less than ONLINE_THRESHOLD, plus new validators INCLUSION_FEE The arbitrary transaction fee that new validators offer to be included in the proposals, to mitigate censorship risks by existing validators ONLINE_THRESHOLD 0.9 epoch[T] The epoch when validator[v] is selected from the proposals auction array seatPrice The minimum stake needed to become validator in epoch[T] stake[v] The amount in NEAR tokens staked by validator[v] during the auction at the end of epoch[T-2], minus INCLUSION_FEE shard[v] The shard is randomly assigned to validator[v] at epoch[T-1], such that its node can download and sync with its state numSeats Number of seats assigned to validator[v], calculated from stake[v]/seatPrice validatorAssignments The resulting ordered array of all proposals with a stake higher than seatPrice validatorAssignments is then split in two groups: block/chunk producers and hidden validators.","breadcrumbs":"Validator Selection","id":"265","title":"Validator Selection"},"266":{"body":"Name Value epochFee[t] sum([(1 - DEVELOPER_PCT_PER_YEAR) * txFee[i] + stateFee[i] for i in epoch[t]]), where [i] represents any considered block within the epoch[t] Total reward every epoch t is equal to: reward[t] = totalSupply * ((1 + REWARD_PCT_PER_YEAR) ** (1 / EPOCHS_A_YEAR) - 1) Uptime of a specific validator is computed: pct_online[t][j] = (num_produced_blocks[t][j] / expected_produced_blocks[t][j] + num_produced_chunks[t][j] / expected_produced_chunks[t][j]) / 2\nif pct_online > ONLINE_THRESHOLD: uptime[t][j] = (pct_online[t][j] - ONLINE_THRESHOLD) / (1 - ONLINE_THRESHOLD)\nelse: uptime[t][j] = 0 Where expected_produced_blocks and expected_produced_chunks is the number of blocks and chunks respectively that is expected to be produced by given validator j in the epoch t. The specific validator[t][j] reward for epoch t is then proportional to the fraction of stake of this validator from total stake: validator[t][j] = (uptime[t][j] * stake[t][j] * reward[t]) / total_stake[t]","breadcrumbs":"Rewards Calculation","id":"266","title":"Rewards Calculation"},"267":{"body":"ChunkProofs # Check that chunk is invalid, because the proofs in header don't match the body.\ndef chunk_proofs_condition(chunk): # TODO # At the end of the epoch, run update validators and\n# determine how much to slash validators.\ndef end_of_epoch_update_validators(validators): # ... for validator in validators: if validator.is_slashed: validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake ChunkState # Check that chunk header post state root is invalid, # because the execution of previous chunk doesn't lead to it.\ndef chunk_state_condition(prev_chunk, prev_state, chunk_header): # TODO # At the end of the epoch, run update validators and\n# determine how much to slash validators.\ndef end_of_epoch(..., validators): # ... for validator in validators: if validator.is_slashed: validator.stake -= INVALID_STATE_SLASH_PCT * validator.stake","breadcrumbs":"Slashing","id":"267","title":"Slashing"},"268":{"body":"Treasury account TREASURY_ACCOUNT_ID receives fraction of reward every epoch t: # At the end of the epoch, update treasury\ndef end_of_epoch(..., reward): # ... accounts[TREASURY_ACCOUNT_ID].amount = TREASURY_PCT * reward","breadcrumbs":"Protocol Treasury","id":"268","title":"Protocol Treasury"},"269":{"body":"Fungible Token Standard","breadcrumbs":"Standards","id":"269","title":"Standards"},"27":{"body":"For the purpose of maintaining consensus, transactions are grouped into blocks . There is a single preconfigured block \\(G\\) called genesis block . Every block except \\(G\\) has a link pointing to the previous block \\(prev(B)\\), where \\(B\\) is the block, and \\(G\\) is reachable from every block by following those links (that is, there are no cycles). The links between blocks give rise to a partial order: for blocks \\(A\\) and \\(B\\), \\(A < B\\) means that \\(A \\ne B\\) and \\(A\\) is reachable from \\(B\\) by following links to previous blocks, and \\(A \\le B\\) means that \\(A < B\\) or \\(A = B\\). The relations \\(>\\) and \\(\\ge\\) are defined as the reflected versions of \\(<\\) and \\(\\le\\), respectively. Finally, \\(A \\sim B\\) means that either \\(A < B\\), \\(A = B\\) or \\(A > B\\), and \\(A \\nsim B\\) means the opposite. A chain \\(chain(T)\\) is a set of blocks reachable from block \\(T\\), which is called its tip . That is, \\(chain(T) = \\{B | B \\le T\\}\\). For any blocks \\(A\\) and \\(B\\), there is a chain that both \\(A\\) and \\(B\\) belong to iff \\(A \\sim B\\). In this case, \\(A\\) and \\(B\\) are said to be on the same chain . Each block has an integer height \\(h(B)\\). It is guaranteed that block heights are monotonic (that is, for any block \\(B \\ne G\\), \\(h(B) > h(prev(B))\\)), but they need not be consecutive. Also, \\(h(G)\\) may not be zero. Each node keeps track of a valid block with the largest height it knows about, which is called its head . Blocks are grouped into epochs . In a chain, the set of blocks that belongs to some epoch forms a contiguous range: if blocks \\(A\\) and \\(B\\) such that \\(A < B\\) belong to the same epoch, then every block \\(X\\) such that \\(A < X < B\\) also belongs to that epoch. Epochs can be identified by sequential indices: \\(G\\) belongs to an epoch with index \\(0\\), and for every other block \\(B\\), the index of its epoch is either the same as that of \\(prev(B)\\), or one greater. Each epoch is associated with a set of block producers that are validating blocks in that epoch, as well as an assignment of block heights to block producers that are responsible for producing a block at that height. A block producer responsible for producing a block at height \\(h\\) is called block proposer at \\(h\\) . This information (the set and the assignment) for an epoch with index \\(i \\ge 2\\) is determined by the last block of the epoch with index \\(i-2\\). For epochs with indices \\(0\\) and \\(1\\), this information is preconfigured. Therefore, if two chains share the last block of some epoch, they will have the same set and the same assignment for the next two epochs, but not necessarily for any epoch after that. The consensus protocol defines a notion of finality . Informally, if a block \\(B\\) is final, any future final blocks may only be built on top of \\(B\\). Therefore, transactions in \\(B\\) and preceding blocks are never going to be reversed. Finality is not a function of a block itself, rather, a block may be final or not final in some chain it is a member of. Specifically, \\(final(B, T)\\), where \\(B \\le T\\), means that \\(B\\) is final in \\(chain(T)\\). A block that is final in a chain is final in all of its extensions: specifically, if \\(final(B, T)\\) is true, then \\(final(B, T')\\) is also true for all \\(T' \\ge T\\).","breadcrumbs":"Chain specification » Definitions and notation","id":"27","title":"Definitions and notation"},"270":{"body":"","breadcrumbs":"Standards » Fungible Token","id":"270","title":"Fungible Token"},"271":{"body":"A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.","breadcrumbs":"Standards » Summary","id":"271","title":"Summary"},"272":{"body":"NEAR Protocol uses an asynchronous sharded Runtime. This means the following: Storage for different contracts and accounts can be located on the different shards. Two contracts can be executed at the same time in different shards. While this increases the transaction throughput linearly with the number of shards, it also creates some challenges for cross-contract development. For example, if one contract wants to query some information from the state of another contract (e.g. current balance), by the time the first contract receive the balance the real balance can change. It means in the async system, a contract can't rely on the state of other contract and assume it's not going to change. Instead the contract can rely on temporary partial lock of the state with a callback to act or unlock, but it requires careful engineering to avoid dead locks. In this standard we're trying to avoid enforcing locks, since most actions can still be completed without locks by transferring ownership to an escrow account. Prior art: ERC-20 standard NEP#4 NEAR NFT standard: nearprotocol/neps#4 For latest lock proposals see Safes (#26)","breadcrumbs":"Standards » Motivation","id":"272","title":"Motivation"},"273":{"body":"We should be able to do the following: Initialize contract once. The given total supply will be owned by the given account ID. Get the total supply. Transfer tokens to a new user. Set a given allowance for an escrow account ID. Escrow will be able to transfer up this allowance from your account. Get current balance for a given account ID. Transfer tokens from one user to another. Get the current allowance for an escrow account on behalf of the balance owner. This should only be used in the UI, since a contract shouldn't rely on this temporary information. There are a few concepts in the scenarios above: Total supply . It's the total number of tokens in circulation. Balance owner . An account ID that owns some amount of tokens. Balance . Some amount of tokens. Transfer . Action that moves some amount from one account to another account. Escrow . A different account from the balance owner who has permission to use some amount of tokens. Allowance . The amount of tokens an escrow account can use on behalf of the account owner. Note, that the precision is not part of the default standard, since it's not required to perform actions. The minimum value is always 1 token.","breadcrumbs":"Standards » Guide-level explanation","id":"273","title":"Guide-level explanation"},"274":{"body":"Alice wants to send 5 wBTC tokens to Bob. Assumptions The wBTC token contract is wbtc. Alice's account is alice. Bob's account is bob. The precision on wBTC contract is 10^8. The 5 tokens is 5 * 10^8 or as a number is 500000000. High-level explanation Alice needs to issue one transaction to wBTC contract to transfer 5 tokens (multiplied by precision) to Bob. Technical calls alice calls wbtc::transfer({\"new_owner_id\": \"bob\", \"amount\": \"500000000\"}).","breadcrumbs":"Standards » Simple transfer","id":"274","title":"Simple transfer"},"275":{"body":"Alice wants to deposit 1000 DAI tokens to a compound interest contract to earn extra tokens. Assumptions The DAI token contract is dai. Alice's account is alice. The compound interest contract is compound. The precision on DAI contract is 10^18. The 1000 tokens is 1000 * 10^18 or as a number is 1000000000000000000000. The compound contract can work with multiple token types. High-level explanation Alice needs to issue 2 transactions. The first one to dai to set an allowance for compound to be able to withdraw tokens from alice. The second transaction is to the compound to start the deposit process. Compound will check that the DAI tokens are supported and will try to withdraw the desired amount of DAI from alice. If transfer succeeded, compound can increase local ownership for alice to 1000 DAI If transfer fails, compound doesn't need to do anything in current example, but maybe can notify alice of unsuccessful transfer. Technical calls alice calls dai::set_allowance({\"escrow_account_id\": \"compound\", \"allowance\": \"1000000000000000000000\"}). alice calls compound::deposit({\"token_contract\": \"dai\", \"amount\": \"1000000000000000000000\"}). During the deposit call, compound does the following: makes async call dai::transfer_from({\"owner_id\": \"alice\", \"new_owner_id\": \"compound\", \"amount\": \"1000000000000000000000\"}). attaches a callback compound::on_transfer({\"owner_id\": \"alice\", \"token_contract\": \"dai\", \"amount\": \"1000000000000000000000\"}).","breadcrumbs":"Standards » Token deposit to a contract","id":"275","title":"Token deposit to a contract"},"276":{"body":"Charlie wants to exchange his wLTC to wBTC on decentralized exchange contract. Alex wants to buy wLTC and has 80 wBTC. Assumptions The wLTC token contract is wltc. The wBTC token contract is wbtc. The DEX contract is dex. Charlie's account is charlie. Alex's account is alex. The precision on both tokens contract is 10^8. The amount of 9001 wLTC tokens is Alex wants is 9001 * 10^8 or as a number is 900100000000. The 80 wBTC tokens is 80 * 10^8 or as a number is 8000000000. Charlie has 1000000 wLTC tokens which is 1000000 * 10^8 or as a number is 100000000000000 Dex contract already has an open order to sell 80 wBTC tokens by alex towards 9001 wLTC. Without Safes implementation, DEX has to act as an escrow and hold funds of both users before it can do an exchange. High-level explanation Let's first setup open order by Alex on DEX. It's similar to Token deposit to a contract example above. Alex sets an allowance on wBTC to DEX Alex calls deposit on Dex for wBTC. Alex calls DEX to make an new sell order. Then Charlie comes and decides to fulfill the order by selling his wLTC to Alex on DEX. Charlie calls the DEX Charlie sets the allowance on wLTC to DEX Alex calls deposit on Dex for wLTC. Then calls DEX to take the order from Alex. When called, DEX makes 2 async transfers calls to exchange corresponding tokens. DEX calls wLTC to transfer tokens DEX to Alex. DEX calls wBTC to transfer tokens DEX to Charlie. Technical calls alex calls wbtc::set_allowance({\"escrow_account_id\": \"dex\", \"allowance\": \"8000000000\"}). alex calls dex::deposit({\"token\": \"wbtc\", \"amount\": \"8000000000\"}). dex calls wbtc::transfer_from({\"owner_id\": \"alex\", \"new_owner_id\": \"dex\", \"amount\": \"8000000000\"}) alex calls dex::trade({\"have\": \"wbtc\", \"have_amount\": \"8000000000\", \"want\": \"wltc\", \"want_amount\": \"900100000000\"}). charlie calls wltc::set_allowance({\"escrow_account_id\": \"dex\", \"allowance\": \"100000000000000\"}). charlie calls dex::deposit({\"token\": \"wltc\", \"amount\": \"100000000000000\"}). dex calls wltc::transfer_from({\"owner_id\": \"charlie\", \"new_owner_id\": \"dex\", \"amount\": \"100000000000000\"}) charlie calls dex::trade({\"have\": \"wltc\", \"have_amount\": \"900100000000\", \"want\": \"wbtc\", \"want_amount\": \"8000000000\"}). dex calls wbtc::transfer({\"new_owner_id\": \"charlie\", \"amount\": \"8000000000\"}) dex calls wltc::transfer({\"new_owner_id\": \"alex\", \"amount\": \"900100000000\"})","breadcrumbs":"Standards » Multi-token swap on DEX","id":"276","title":"Multi-token swap on DEX"},"277":{"body":"The full implementation in Rust can be found there: https://github.com/nearprotocol/near-sdk-rs/blob/master/examples/fungible-token/src/lib.rs NOTES: All amounts, balances and allowance are limited by U128 (max value 2**128 - 1). Token standard uses JSON for serialization of arguments and results. Amounts in arguments and results have are serialized as Base-10 strings, e.g. \"100\". This is done to avoid JSON limitation of max integer value of 2**53. Interface: /******************/\n/* CHANGE METHODS */\n/******************/ /// Sets the `allowance` for `escrow_account_id` on the account of the caller of this contract\n/// (`predecessor_id`) who is the balance owner.\npub fn set_allowance(&mut self, escrow_account_id: AccountId, allowance: U128); /// Transfers the `amount` of tokens from `owner_id` to the `new_owner_id`.\n/// Requirements:\n/// * `amount` should be a positive integer.\n/// * `owner_id` should have balance on the account greater or equal than the transfer `amount`.\n/// * If this function is called by an escrow account (`owner_id != predecessor_account_id`),\n/// then the allowance of the caller of the function (`predecessor_account_id`) on\n/// the account of `owner_id` should be greater or equal than the transfer `amount`.\npub fn transfer_from(&mut self, owner_id: AccountId, new_owner_id: AccountId, amount: U128); /// Transfer `amount` of tokens from the caller of the contract (`predecessor_id`) to\n/// `new_owner_id`.\n/// Act the same was as `transfer_from` with `owner_id` equal to the caller of the contract\n/// (`predecessor_id`).\npub fn transfer(&mut self, new_owner_id: AccountId, amount: U128); /****************/\n/* VIEW METHODS */\n/****************/ /// Returns total supply of tokens.\npub fn get_total_supply(&self) -> U128; /// Returns balance of the `owner_id` account.\npub fn get_balance(&self, owner_id: AccountId) -> U128; /// Returns current allowance of `escrow_account_id` for the account of `owner_id`.\n///\n/// NOTE: Other contracts should not rely on this information, because by the moment a contract\n/// receives this information, the allowance may already be changed by the owner.\n/// So this method should only be used on the front-end to see the current allowance.\npub fn get_allowance(&self, owner_id: AccountId, escrow_account_id: AccountId) -> U128;","breadcrumbs":"Standards » Reference-level explanation","id":"277","title":"Reference-level explanation"},"278":{"body":"Current interface doesn't have minting, precision (decimals), naming. But it should be done as extensions, e.g. a Precision extension. It's not possible to exchange tokens without transferring them to escrow first. It's not possible to transfer tokens to a contract with a single transaction without setting the allowance first. It should be possible if we introduce transfer_with function that transfers tokens and calls escrow contract. It needs to handle result of the execution and contracts have to be aware of this API.","breadcrumbs":"Standards » Drawbacks","id":"278","title":"Drawbacks"},"279":{"body":"Support for multiple token types Minting and burning Precision, naming and short token name.","breadcrumbs":"Standards » Future possibilities","id":"279","title":"Future possibilities"},"28":{"body":"The fields in the Block header relevant to the consensus process are: struct BlockHeader { ... prev_hash: BlockHash, height: BlockHeight, epoch_id: EpochId, last_final_block_hash: BlockHash, approvals: Vec> ...\n} Block producers in the particular epoch exchange many kinds of messages. The two kinds that are relevant to the consensus are Blocks and Approvals . The approval contains the following fields: enum ApprovalInner { Endorsement(BlockHash), Skip(BlockHeight),\n} struct Approval { inner: ApprovalInner, target_height: BlockHeight, signature: Signature, account_id: AccountId\n} Where the parameter of the Endorsement is the hash of the approved block, the parameter of the Skip is the height of the approved block, target_height is the specific height at which the approval can be used (an approval with a particular target_height can be only included in the approvals of a block that has height = target_height), account_id is the account of the block producer who created the approval, and signature is their signature on the tuple (inner, target_height).","breadcrumbs":"Chain specification » Data structures","id":"28","title":"Data structures"},"29":{"body":"Every block \\(B\\) except the genesis block must logically contain approvals of a form described in the next paragraph from block producers whose cumulative stake exceeds \\(^2\\!/_3\\) of the total stake in the current epoch, and in specific conditions described in section epoch switches also the approvals of the same form from block producers whose cumulative stake exceeds \\(^2\\!/_3\\) of the total stake in the next epoch. The approvals logically included in the block must be an Endorsement with the hash of \\(prev(B)\\) if and only if \\(h(B) = h(prev(B))+1\\), otherwise it must be a Skip with the height of \\(prev(B)\\). See this section below for details on why the endorsements must contain the hash of the previous block, and skips must contain the height. Note that since each approval that is logically stored in the block is the same for each block producer (except for the account_id of the sender and the signature), it is redundant to store the full approvals. Instead physically we only store the signatures of the approvals. The specific way they are stored is the following: we first fetch the ordered set of block producers from the current epoch. If the block is on the epoch boundary and also needs to include approvals from the next epoch (see epoch switches ), we add new accounts from the new epoch def get_accounts_for_block_ordered(h, prev_block): cur_epoch = get_next_block_epoch(prev_block) next_epoch = get_next_block_next_epoch(prev_block) account_ids = get_epoch_block_producers_ordered(cur_epoch) if next_block_needs_approvals_from_next_epoch(prev_block): for account_id in get_epoch_block_producers_ordered(next_epoch): if account_id not in account_ids: account_ids.append(account_id) return account_ids The block then contains a vector of optional signatures of the same or smaller size than the resulting set of account_ids, with each element being None if the approval for such account is absent, or the signature on the approval message if it is present. It's easy to show that the actual approvals that were signed by the block producers can easily be reconstructed from the information available in the block, and thus the signatures can be verified. If the vector of signatures is shorter than the length of account_ids, the remaining signatures are assumed to be None.","breadcrumbs":"Chain specification » Approvals Requirements","id":"29","title":"Approvals Requirements"},"3":{"body":"","breadcrumbs":"Abstraction definitions","id":"3","title":"Abstraction definitions"},"30":{"body":"On receipt of the approval message the participant just stores it in the collection of approval messages. def on_approval(self, approval): self.approvals.append(approval) Whenever a participant receives a block, the operations relevant to the consensus include updating the head and initiating a timer to start sending the approvals on the block to the block producers at the consecutive target_heights. The timer delays depend on the height of the last final block, so that information is also persisted. def on_block(self, block): header = block.header if header.height <= self.head_height: return last_final_block = store.get_block(header.last_final_block_hash) self.head_height = header.height self.head_hash = block.hash() self.largest_final_height = last_final_block.height self.timer_height = self.head_height + 1 self.timer_started = time.time() self.endorsement_pending = True The timer needs to be checked periodically, and contain the following logic: def get_delay(n): min(MAX_DELAY, MIN_DELAY + DELAY_STEP * (n-2)) def process_timer(self): now = time.time() skip_delay = get_delay(self.timer_height - self.largest_final_height) if self.endorsement_pending and now > self.timer_started + ENDORSEMENT_DELAY: if self.head_height >= self.largest_target_height: self.largest_target_height = self.head_height + 1 self.send_approval(head_height + 1) self.endorsement_pending = False if now > self.timer_started + skip_delay: assert not self.endorsement_pending self.largest_target_height = max(self.largest_target_height, self.timer_height + 1) self.send_approval(self.timer_height + 1) self.timer_started = now self.timer_height += 1 def send_approval(self, target_height): if target_height == self.head_height + 1: inner = Endorsement(self.head_hash) else: inner = Skip(self.head_height) approval = Approval(inner, target_height) send(approval, to_whom = get_block_proposer(self.head_hash, target_height)) Where get_block_proposer returns the next block proposer given the previous block and the height of the next block. It is also necessary that ENDORSEMENT_DELAY < MIN_DELAY. Moreover, while not necessary for correctness, we require that ENDORSEMENT_DELAY * 2 <= MIN_DELAY.","breadcrumbs":"Chain specification » Messages","id":"30","title":"Messages"},"31":{"body":"We first define a convenience function to fetch approvals that can be included in a block at particular height: def get_approvals(self, target_height): return [approval for approval in self.approvals if approval.target_height == target_height and (isinstance(approval.inner, Skip) and approval.prev_height == self.head_height or isinstance(approval.inner, Endorsement) and approval.prev_hash == self.head_hash)] A block producer assigned for a particular height produces a block at that height whenever they have get_approvals return approvals from block producers whose stake collectively exceeds 2/3 of the total stake.","breadcrumbs":"Chain specification » Block Production","id":"31","title":"Block Production"},"32":{"body":"A block \\(B\\) is final in \\(chain(T)\\), where \\(T \\ge B\\), when either \\(B = G\\) or there is a block \\(X \\le T\\) such that \\(B = prev(prev(X))\\) and \\(h(X) = h(prev(X))+1 = h(B)+2\\). That is, either \\(B\\) is the genesis block, or \\(chain(T)\\) includes at least two blocks on top of \\(B\\), and these three blocks (\\(B\\) and the two following blocks) have consecutive heights.","breadcrumbs":"Chain specification » Finality condition","id":"32","title":"Finality condition"},"33":{"body":"There's a parameter \\(epoch\\_length \\ge 3\\) that defines the minimum length of an epoch. Suppose that a particular epoch \\(e\\_cur\\) started at height \\(h\\), and say the next epoch will be \\(e\\_next\\). Say \\(BP(e)\\) is a set of block producers in epoch \\(e\\). Say \\(last\\_final(T)\\) is the highest final block in \\(chain(T)\\). The following are the rules of what blocks contain approvals from what block producers, and belong to what epoch. Any block \\(B\\) with \\(h(prev(B)) < h+epoch\\_length-3\\) is in the epoch \\(e\\_cur\\) and must have approvals from more than \\(^2\\!/_3\\) of \\(BP(e\\_cur)\\) (stake-weighted). Any block \\(B\\) with \\(h(prev(B)) \\ge h+epoch\\_length-3\\) for which \\(h(last\\_final(prev(B))) < h+epoch\\_length-3\\) is in the epoch \\(e\\_cur\\) and must logically include approvals from both more than \\(^2\\!/_3\\) of \\(BP(e\\_cur)\\) and more than \\(^2\\!/_3\\) of \\(BP(e\\_next)\\) (both stake-weighted). The first block \\(B\\) with \\(h(last\\_final(prev(B))) >= h+epoch\\_length-3\\) is in the epoch \\(e\\_next\\) and must logically include approvals from more than \\(^2\\!/_3\\) of \\(BP(e\\_next)\\) (stake-weighted). (see the definition of logically including approvals in approval requirements )","breadcrumbs":"Chain specification » Epoch switches","id":"33","title":"Epoch switches"},"34":{"body":"Note that with the implementation above a honest block producer can never produce two endorsements with the same prev_height (call this condition conflicting endorsements ), neither can they produce a skip message s and an endorsement e such that s.prev_height < e.prev_height and s.target_height >= e.target_height (call this condition conflicting skip and endorsement ). Theorem Suppose that there are blocks \\(B_1\\), \\(B_2\\), \\(T_1\\) and \\(T_2\\) such that \\(B_1 \\nsim B_2\\), \\(final(B_1, T_1)\\) and \\(final(B_2, T_2)\\). Then, more than \\(^1\\!/_3\\) of the block producer in some epoch must have signed either conflicting endorsements or conflicting skip and endorsement. Proof Without loss of generality, we can assume that these blocks are chosen such that their heights are smallest possible. Specifically, we can assume that \\(h(T_1) = h(B_1)+2\\) and \\(h(T_2) = h(B_2)+2\\). Also, letting \\(B_c\\) be the highest block that is an ancestor of both \\(B_1\\) and \\(B_2\\), we can assume that there is no block \\(X\\) such that \\(final(X, T_1)\\) and \\(B_c < X < B_1\\) or \\(final(X, T_2)\\) and \\(B_c < X < B_2\\). Lemma There is such an epoch \\(E\\) that all blocks \\(X\\) such that \\(B_c < X \\le T_1\\) or \\(B_c < X \\le T_2\\) include approvals from more than \\(^2\\!/_3\\) of the block producers in \\(E\\). Proof There are two cases. Case 1: Blocks \\(B_c\\), \\(T_1\\) and \\(T_2\\) are all in the same epoch. Because the set of blocks in a given epoch in a given chain is a contiguous range, all blocks between them (specifically, all blocks \\(X\\) such that \\(B_c < X < T_1\\) or \\(B_c < X < T_2\\)) are also in the same epoch, so all those blocks include approvals from more than \\(^2\\!/_3\\) of the block producers in that epoch. Case 2: Blocks \\(B_c\\), \\(T_1\\) and \\(T_2\\) are not all in the same epoch. Suppose that \\(B_c\\) and \\(T_1\\) are in different epochs. Let \\(E\\) be the epoch of \\(T_1\\) and \\(E_p\\) be the preceding epoch (\\(T_1\\) cannot be in the same epoch as the genesis block). Let \\(R\\) and \\(S\\) be the first and the last block of \\(E_p\\) in \\(chain(T_1)\\). Then, there must exist a block \\(F\\) in epoch \\(E_p\\) such that \\(h(F)+2 = h(S) < h(T_1)\\). Because \\(h(F) < h(T_1)-2\\), we have \\(F < B_1\\), and since there are no final blocks \\(X\\) such that \\(B_c < X < B_1\\), we conclude that \\(F \\le B_c\\). Because there are no epochs between \\(E\\) and \\(E_p\\), we conclude that \\(B_c\\) is in epoch \\(E_p\\). Also, \\(h(B_c) \\ge h(F) \\ge h(R)+epoch\\_length-3\\). Thus, any block after \\(B_c\\) and until the end of \\(E\\) must include approvals from more than \\(^2\\!/_3\\) of the block producers in \\(E\\). Applying the same argument to \\(chain(T_2)\\), we can determine that \\(T_2\\) is either in \\(E\\) or \\(E_p\\), and in both cases all blocks \\(X\\) such that \\(B_c < X \\le T_2\\) include approvals from more than \\(^2\\!/_3\\) of block producers in \\(E\\) (the set of block producers in \\(E\\) is the same in \\(chain(T_1)\\) and \\(chain(T_2)\\) because the last block of the epoch preceding \\(E_p\\), if any, is before \\(B_c\\) and thus is shared by both chains). The case where \\(B_c\\) and \\(T_1\\) are in the same epoch, but \\(B_c\\) and \\(T_2\\) are in different epochs is handled similarly. Thus, the lemma is proven. Now back to the theorem. Without loss of generality, assume that \\(h(B_1) \\le h(B_2)\\). On the one hand, if \\(chain(T_2)\\) doesn't include a block at height \\(h(B_1)\\), then the first block at height greater than \\(h(B_1)\\) must include skips from more than \\(^2\\!/_3\\) of the block producers in \\(E\\) which conflict with endorsements in \\(prev(T_1)\\), therefore, more than \\(^1\\!/_3\\) of the block producers in \\(E\\) must have signed conflicting skip and endorsement. Similarly, if \\(chain(T_2)\\) doesn't include a block at height \\(h(B_1)+1\\), more than \\(^1\\!/_3\\) of the block producers in \\(E\\) signed both an endorsement in \\(T_1\\) and a skip in the first block in \\(chain(T_2)\\) at height greater than \\(h(T_1)\\). On the other hand, if \\(chain(T_2)\\) includes both a block at height \\(h(B_1)\\) and a block at height \\(h(B_1)+1\\), the latter must include endorsements for the former, which conflict with endorsements for \\(B_1\\). Therefore, more than \\(^1\\!/_3\\) of the block producers in \\(E\\) must have signed conflicting endorsements. Thus, the theorem is proven.","breadcrumbs":"Chain specification » Safety","id":"34","title":"Safety"},"35":{"body":"See the proof of liveness in near.ai/doomslug . The consensus in this section differs in that it requires two consecutive blocks with endorsements. The proof in the linked paper trivially extends, by observing that once the delay is sufficiently long for a honest block producer to collect enough endorsements, the next block producer ought to have enough time to collect all the endorsements too.","breadcrumbs":"Chain specification » Liveness","id":"35","title":"Liveness"},"36":{"body":"The approval condition above Any valid block must logically include approvals from block producers whose cumulative stake exceeds 2/3 of the total stake in the epoch. For a block B and its previous block B' each approval in B must be an Endorsement with the hash of B' if and only if B.height == B'.height + 1, otherwise it must be a Skip with the height of B' Is more complex that desired, and it is tempting to unify the two conditions. Unfortunately, they cannot be unified. It is critical that for endorsements each approval has the prev_hash equal to the hash of the previous block, because otherwise the safety proof above doesn't work, in the second case the endorsements in B1 and Bx can be the very same approvals. It is critical that for the skip messages we do not require the hashes in the approvals to match the hash of the previous block, because otherwise a malicious actor can create two blocks at the same height, and distribute them such that half of the block producers have one as their head, and the other half has the other. The two halves of the block producers will be sending skip messages with different prev_hash but the same prev_height to the future block producers, and if there's a requirement that the prev_hash in the skip matches exactly the prev_hash of the block, no block producer will be able to create their blocks.","breadcrumbs":"Chain specification » Approval condition","id":"36","title":"Approval condition"},"37":{"body":"A client creates a transaction, computes the transaction hash and signs this hash to get a signed transaction. Now this signed transaction can be sent to a node. When a node receives a new signed transaction, it validates the transaction (if the node tracks the shard) and gossips it to the peers. Eventually, the valid transaction is added to a transaction pool. Every validating node has its own transaction pool. The transaction pool maintains transactions that were not yet discarded and not yet included into the chain. Before producing a chunk transactions are ordered and validated again. This is done to produce chunks with only valid transactions.","breadcrumbs":"Chain specification » Transactions in the Blockchain Layer","id":"37","title":"Transactions in the Blockchain Layer"},"38":{"body":"The transaction pool groups transactions by a pair of (signer_id, signer_public_key). The signer_id is the account ID of the user who signed the transaction, the signer_public_key is the public key of the account's access key that was used to sign the transactions. Transactions within a group are not ordered. The valid order of the transactions in a chunk is the following: transactions are ordered in batches. within a batch all transactions keys should have different. a set of transaction keys in each subsequent batch should be a sub-set of keys from the previous batch. transactions with the same key should be ordered in strictly increasing order of their corresponding nonces. Note: the order within a batch is undefined. Each node should use a unique secret seed for that ordering to users from finding the lowest keys to get advantage of every node. Transaction pool provides a draining structure that allows to pull transactions in a proper order.","breadcrumbs":"Chain specification » Transaction ordering","id":"38","title":"Transaction ordering"},"39":{"body":"The transaction validation happens twice, once before adding to the transaction pool, next before adding to a chunk.","breadcrumbs":"Chain specification » Transaction validation","id":"39","title":"Transaction validation"},"4":{"body":"A chain is a replication machinery, that provides for any type of state a way to replicate across the network and reach consensus on the state.","breadcrumbs":"Chain","id":"4","title":"Chain"},"40":{"body":"This is done to quickly filter out transactions that have an invalid signature or are invalid on the latest state.","breadcrumbs":"Chain specification » Before adding to a transaction pool","id":"40","title":"Before adding to a transaction pool"},"41":{"body":"A chunk producer has to create a chunk with valid and ordered transactions up to some limits. One limit is the maximum number of transactions, another is the total gas burnt for transactions. To order and filter transactions, chunk producer gets a pool iterator and passes it to the runtime adapter. The runtime adapter pulls transactions one by one. The valid transactions are added to the result, invalid transactions are discarded. Once the limit is reached, all the remaining transactions from the iterator are returned back to the pool.","breadcrumbs":"Chain specification » Before adding to a chunk","id":"41","title":"Before adding to a chunk"},"42":{"body":"Pool Iterator is a trait that iterates over transaction groups until all transaction group are empty. Pool Iterator returns a mutable reference to a transaction group that implements a draining iterator. The draining iterator is like a normal iterator, but it removes the returned entity from the group. It pulls transactions from the group in order from the smallest nonce to largest. The pool iterator and draining iterators for transaction groups allow the runtime adapter to create proper order. For every transaction group, the runtime adapter keeps pulling transactions until the valid transaction is found. If the transaction group becomes empty, then it's skipped. The runtime adapter may implement the following code to pull all valid transactions: let mut valid_transactions = vec![];\nlet mut pool_iter = pool.pool_iterator();\nwhile let Some(group_iter) = pool_iter.next() { while let Some(tx) = group_iter.next() { if is_valid(tx) { valid_transactions.push(tx); break; } }\n}\nvalid_transactions","breadcrumbs":"Chain specification » Pool iterator","id":"42","title":"Pool iterator"},"43":{"body":"Let's say: account IDs as uppercase letters (\"A\", \"B\", \"C\" ...) public keys are lowercase letters (\"a\", \"b\", \"c\" ...) nonces are numbers (1, 2, 3 ...) A pool might have group of transactions in the hashmap: transactions: { (\"A\", \"a\") -> [1, 3, 2, 1, 2] (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3]\n} There are 3 accounts (\"A\", \"B\", \"C\"). Account \"A\" used 2 public keys (\"a\", \"c\"). Other accounts used 1 public key each. Transactions within each group may have repeated nonces while in the pool. That's because the pool doesn't filter transactions with the same nonce, only transactions with the same hash. For this example, let's say that transactions are valid if the nonce is even and strictly greater than the previous nonce for the same key. Initialization When .pool_iterator() is called, a new PoolIteratorWrapper is created and it holds the mutuable reference to the pool, so the pool can't be modified outside of this iterator. The wrapper looks like this: pool: { transactions: { (\"A\", \"a\") -> [1, 3, 2, 1, 2] (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [], sorted_groups is a queue of sorted transaction groups that were already sorted and pulled from the pool. Transaction #1 The first group to be selected is for key (\"A\", \"a\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [1, 1, 2, 2, 3]. Runtime adapter pulls 1, then 1, and then 2. Both transactions with nonce 1 are invalid because of odd nonce. Transaction with nonce 2 is added to the list of valid transactions. The transaction group is dropped and the pool iterator wrapper becomes the following: pool: { transactions: { (\"B\", \"b\") -> [13, 14] (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], Transaction #2 The next group is for key (\"B\", \"b\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [13, 14]. Runtime adapter pulls 13, then 14. The transaction with nonce 13 is invalid because of odd nonce. Transaction with nonce 14 is added to the list of valid transactions. The transaction group is dropped, but it's empty, so the pool iterator drops it completely: pool: { transactions: { (\"C\", \"d\") -> [7] (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], Transaction #3 The next group is for key (\"C\", \"d\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [7]. Runtime adapter pulls 7. The transaction with nonce 7 is invalid because of odd nonce. No valid transactions is added for this group. The transaction group is dropped, it's empty, so the pool iterator drops it completely: pool: { transactions: { (\"A\", \"c\") -> [5, 2, 3] }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3]\n], The next group is for key (\"A\", \"c\"), the pool iterator sorts transactions by nonces and returns the mutable references to the group. Sorted nonces are: [2, 3, 5]. Runtime adapter pulls 2. It's a valid transaction, so it's added to the list of valid transactions. The transaction group is dropped, so the pool iterator drops it completely: pool: { transactions: { }\n}\nsorted_groups: [ (\"A\", \"a\") -> [2, 3] (\"A\", \"c\") -> [3, 5]\n], Transaction #4 The next group is pulled not from the pool, but from the sorted_groups. The key is (\"A\", \"a\"). It's already sorted, so the iterator returns the mutable reference. Nonces are: [2, 3]. Runtime adapter pulls 2, then pulls 3. The transaction with nonce 2 is invalid, because we've already pulled a transaction #1 from this group and it had nonce 2. The new nonce has to be larger than the previous nonce, so this transaction is invalid. The transaction with nonce 3 is invalid because of odd nonce. No valid transactions is added for this group. The transaction group is dropped, it's empty, so the pool iterator drops it completely: pool: { transactions: { }\n}\nsorted_groups: [ (\"A\", \"c\") -> [3, 5]\n], The next group is for key (\"A\", \"c\"), with nonces [3, 5]. Runtime adapter pulls 3, then pulls 5. Both transactions are invalid, because the nonce is odd. No transactions are added. The transaction group is dropped, the pool iterator wrapper becomes empty: pool: { transactions: { }\n}\nsorted_groups: [ ], When runtime adapter tries to pull the next group, the pool iterator returns None, so the runtime adapter drops the iterator. Dropping iterator If the iterator was not fully drained, but some transactions still remained. They would be reinserted back into the pool. Chunk Transactions Transactions that were pulled from the pool: // First batch\n(\"A\", \"a\", 1),\n(\"A\", \"a\", 1),\n(\"A\", \"a\", 2),\n(\"B\", \"b\", 13),\n(\"B\", \"b\", 14),\n(\"C\", \"d\", 7),\n(\"A\", \"c\", 2), // Next batch\n(\"A\", \"a\", 2),\n(\"A\", \"a\", 3),\n(\"A\", \"c\", 3),\n(\"A\", \"c\", 5), The valid transactions are: (\"A\", \"a\", 2),\n(\"B\", \"b\", 14),\n(\"A\", \"c\", 2), In total there were only 3 valid transactions, that resulted in one batch.","breadcrumbs":"Chain specification » Transaction ordering example using pool iterator.","id":"43","title":"Transaction ordering example using pool iterator."},"44":{"body":"Other validators need to check the order of transactions in the produced chunk. It can be done in linear time, using a greedy algorithm. To select a first batch we need to iterate over transactions one by one until we see a transaction with the key that we've already included in the first batch. This transaction belongs to the next batch. Now all transactions in the N+1 batch should have a corresponding transaction with the same key in the N batch. If there are no transaction with the same key in the N batch, then the order is invalid. We also enforce the order of the sequence of transactions for the same key, the nonces of them should be in strictly increasing order. Here is the algorithm that validates the order: fn validate_order(txs: &Vec) -> bool { let mut nonces: HashMap = HashMap::new(); let mut batches: HashMap = HashMap::new(); let mut current_batch = 1; for tx in txs { let key = tx.key(); // Verifying nonce let nonce = tx.nonce(); if let Some(last_nonce) = nonces.get(key) { if nonce <= last_nonce { // Nonces should increase. return false; } } nonces.insert(key, nonce); // Verifying batch if let Some(last_batch) = batches.get(key) { if last_batch == current_batch { current_batch += 1; } else if last_batch < current_batch - 1 { // Was skipped this key in the previous batch return false; } } else { if current_batch > 1 { // Not in first batch return false; } } batches.insert(key, batch); } true\n}","breadcrumbs":"Chain specification » Order validation","id":"44","title":"Order validation"},"45":{"body":"","breadcrumbs":"Runtime Specification","id":"45","title":"Runtime Specification"},"46":{"body":"In this section we provide an explanation how the FunctionCall action execution works, what are the inputs and what are the outputs. Suppose runtime received the following ActionReceipt: ActionReceipt { id: \"A1\", signer_id: \"alice\", signer_public_key: \"6934...e248\", receiver_id: \"dex\", predecessor_id: \"alice\", input_data_ids: [], output_data_receivers: [], actions: [FunctionCall { gas: 100000, deposit: 100000u128, method_name: \"exchange\", args: \"{arg1, arg2, ...}\", ... }], }","breadcrumbs":"Runtime specification » Function Call","id":"46","title":"Function Call"},"47":{"body":"ActionReceipt.input_data_ids must be satisfied before execution (see Receipt Matching ). Each of ActionReceipt.input_data_ids will be converted to the PromiseResult::Successful(Vec) if data_id.data is Some(Vec) otherwise if data_id.data is None promise will be PromiseResult::Failed.","breadcrumbs":"Runtime specification » input_data_ids to PromiseResult's","id":"47","title":"input_data_ids to PromiseResult's"},"48":{"body":"The FunctionCall executes in the receiver_id account environment. a vector of Promise Results which can be accessed by a promise_result import PromisesAPI promise_result) the original Transaction signer_id, signer_public_key data from the ActionReceipt (e.g. method_name, args, predecessor_id, deposit, prepaid_gas (which is gas in FunctionCall)) a general blockchain data (e.g. block_index, block_timestamp) read data from the account storage A full list of the data available for the contract can be found in Context API and Trie","breadcrumbs":"Runtime specification » Input","id":"48","title":"Input"},"49":{"body":"First of all, runtime does prepare the Wasm binary to be executed: loads the contract code from the receiver_id account storage deserializes and validates the code Wasm binary (see prepare::prepare_contract) injects the gas counting function gas which will charge gas on the beginning of the each code block instantiates Bindings Spec with binary and calls the FunctionCall.method_name exported function During execution, VM does the following: counts burnt gas on execution counts used gas (which is burnt gas + gas attached to the new created receipts) counts how accounts storage usage increased by the call collects logs produced by the contract sets the return data creates new receipts through PromisesAPI","breadcrumbs":"Runtime specification » Execution","id":"49","title":"Execution"},"5":{"body":"Account Account ID Account Access Keys Transaction","breadcrumbs":"Primitives","id":"5","title":"Primitives"},"50":{"body":"The output of the FunctionCall: storage updates - changes to the account trie storage which will be applied on a successful call burnt_gas - irreversible amount of gas witch was spent on computations used_gas - includes burnt_gas and gas attached to the new ActionReceipts created during the method execution. In case of failure, created ActionReceipts not going to be sent thus account will pay only for burnt_gas balance - unspent account balance (account balance could be spent on deposits of newly created FunctionCalls or TransferActions to other contracts) storage_usage - storage_usage after ActionReceipt application logs - during contract execution, utf8/16 string log records could be created. Logs are not persistent currently. new_receipts - new ActionReceipts created during the execution. These receipts are going to be sent to the respective receiver_ids (see Receipt Matching explanation ) result could be either ReturnData::Value(Vec) or ReturnData::ReceiptIndex(u64) `","breadcrumbs":"Runtime specification » Output","id":"50","title":"Output"},"51":{"body":"If applied ActionReceipt contains output_data_receivers , runtime will create DataReceipt for each of data_id and receiver_id and data equals returned value. Eventually, these DataReceipt will be delivered to the corresponding receivers.","breadcrumbs":"Runtime specification » Value Result","id":"51","title":"Value Result"},"52":{"body":"Successful result could not return any Value, but generates a bunch of new ActionReceipts instead. One example could be a callback. In this case, we assume the the new Receipt will send its Value Result to the output_data_receivers of the current ActionReceipt.","breadcrumbs":"Runtime specification » ReceiptIndex Result","id":"52","title":"ReceiptIndex Result"},"53":{"body":"A transaction in Near is a list of actions and additional information: pub struct Transaction { /// An account on which behalf transaction is signed pub signer_id: AccountId, /// An access key which was used to sign a transaction pub public_key: PublicKey, /// Nonce is used to determine order of transaction in the pool. /// It increments for a combination of `signer_id` and `public_key` pub nonce: Nonce, /// Receiver account for this transaction. If pub receiver_id: AccountId, /// The hash of the block in the blockchain on top of which the given transaction is valid pub block_hash: CryptoHash, /// A list of actions to be applied pub actions: Vec,\n}","breadcrumbs":"Runtime specification » Transactions","id":"53","title":"Transactions"},"54":{"body":"SignedTransaction is what the node receives from a wallet through JSON-RPC endpoint and then routed to the shard where receiver_id account lives. Signature proves an ownership of the corresponding public_key (which is an AccessKey for a particular account) as well as authenticity of the transaction itself. pub struct SignedTransaction { pub transaction: Transaction, /// A signature of a hash of the Borsh-serialized Transaction pub signature: Signature, Take a look some scenarios how transaction can be applied.","breadcrumbs":"Runtime specification » Signed Transaction","id":"54","title":"Signed Transaction"},"55":{"body":"There are a several action types in Near: pub enum Action { CreateAccount(CreateAccountAction), DeployContract(DeployContractAction), FunctionCall(FunctionCallAction), Transfer(TransferAction), Stake(StakeAction), AddKey(AddKeyAction), DeleteKey(DeleteKeyAction), DeleteAccount(DeleteAccountAction),\n} Each transaction consists a list of actions to be performed on the receiver_id side. Sometimes the singer_id equals to receiver_id. There is a set of action types when signer_id and receiver_id are required to be equal. Actions requires arguments and use data from the Transaction itself. // TODO: how to introduce the concept of sender_id","breadcrumbs":"Runtime specification » Actions","id":"55","title":"Actions"},"56":{"body":"Requirements: unique tx.receiver_id public_key to be AccessKeyPermission::FullAccess for the singer_id CreateAccountAction doesn't take any additional arguments, it uses receiver_id from Transaction. receiver_id is an ID for an account to be created. Account ID should be valid and unique throughout the system. Outcome : creates an account with id = receiver_id sets Account storage_usage to account_cost (genesis config) sets Account storage_paid_at to the current block height NOTE: for the all subsequent actions in the transaction the signer_id becomes receiver_id until DeleteAccountAction . It allows to execute actions on behalf of the just created account. pub struct CreateAccountAction {}","breadcrumbs":"Runtime specification » CreateAccountAction","id":"56","title":"CreateAccountAction"},"57":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Outcome : sets a code for account pub struct DeployContractAction { pub code: Vec, // a valid WebAssembly code\n}","breadcrumbs":"Runtime specification » DeployContractAction","id":"57","title":"DeployContractAction"},"58":{"body":"Requirements: tx.public_key to be AccessKeyPermission::FullAccess or AccessKeyPermission::FunctionCall Calls a method of a particular contract. See details . pub struct FunctionCallAction { /// Name of exported Wasm function pub method_name: String, /// Serialized arguments pub args: Vec, /// Prepaid gas (gas_limit) for a function call pub gas: Gas, /// Amount of tokens to transfer to a receiver_id pub deposit: Balance,\n}","breadcrumbs":"Runtime specification » FunctionCallAction","id":"58","title":"FunctionCallAction"},"59":{"body":"Requirements: tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Outcome : transfers amount specified in deposit from tx.signer to a tx.receiver_id account pub struct TransferAction { /// Amount of tokens to transfer to a receiver_id pub deposit: Balance,\n}","breadcrumbs":"Runtime specification » TransferAction","id":"59","title":"TransferAction"},"6":{"body":"","breadcrumbs":"Data Structures » Accounts","id":"6","title":"Accounts"},"60":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id pub struct StakeAction { // Amount of tokens to stake pub stake: Balance, // This public key is a public key of the validator node pub public_key: PublicKey,\n} Outcome : // TODO: cover staking","breadcrumbs":"Runtime specification » StakeAction","id":"60","title":"StakeAction"},"61":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id Associates an AccessKey with a public_key provided. pub struct AddKeyAction { pub public_key: PublicKey, pub access_key: AccessKey,\n}","breadcrumbs":"Runtime specification » AddKeyAction","id":"61","title":"AddKeyAction"},"62":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id pub struct DeleteKeyAction { pub public_key: PublicKey,\n}","breadcrumbs":"Runtime specification » DeleteKeyAction","id":"62","title":"DeleteKeyAction"},"63":{"body":"Requirements: tx.signer_id to be equal to receiver_id tx.public_key to be AccessKeyPermission::FullAccess for the singer_id tx.account shouldn't have any locked balance pub struct DeleteAccountAction { /// The remaining account balance will be transferred to the AccountId below pub beneficiary_id: AccountId,\n}","breadcrumbs":"Runtime specification » DeleteAccountAction","id":"63","title":"DeleteAccountAction"},"64":{"body":"All cross-contract (we assume that each account lives in it's own shard) communication in Near happens trough Receipts. Receipts are stateful in a sense that they serve not only as messages between accounts but also can be stored in the account storage to await DataReceipts. Each receipt has a predecessor_id (who sent it) and receiver_id the current account. Receipts are one of 2 types: action receipts or data receipts. Data Receipts are receipts that contains some data for some ActionReceipt with the same receiver_id. Data Receipts has 2 fields: the unique data identifier data_id and data the received result. data is an Option field and it indicates whether the result was a success or a failure. If it's Some, then it means the remote execution was successful and it contains the vector of bytes of the result. Each ActionReceipt also contains fields related to data: input_data_ids - a vector of input data with the data_ids required for the execution of this receipt. output_data_receivers - a vector of output data receivers. It indicates where to send outgoing data. Each DataReceiver consists of data_id and receiver_id for routing. Before any action receipt is executed, all input data dependencies need to be satisfied. Which means all corresponding data receipts has to be received. If any of the data dependencies is missing, the action receipt is postponed until all missing data dependency arrives. Because Chain and Runtime guarantees that no receipts are missing, we can rely that every action receipt will be executed eventually ( Receipt Matching explanation ). Each Receipt has the following fields: predecessor_id type : AccountId The account_id which issued a receipt. receiver_id type : AccountId The destination account_id. receipt_id type : AccountId An unique id for the receipt. receipt type : ActionReceipt | DataReceipt There is a 2 types of Receipts in Near: ActionReceipt and DataReceipt . ActionReceipt is a request to apply Actions , while DataReceipt is a result of application of these actions.","breadcrumbs":"Runtime specification » Receipt","id":"64","title":"Receipt"},"65":{"body":"ActionReceipt represents a request to apply actions on the receiver_id side. It could be a derived as a result of a Transaction execution or a another ActionReceipt processing. ActionReceipt consists the following fields: signer_id type : AccountId An account_id which signed the original transaction . signer_public_key type : PublicKey An AccessKey which was used to sign the original transaction. gas_price type : u128 Gas price is a gas price which was set in a block where original transaction has been applied. output_data_receivers type : [DataReceiver{ data_id: CryptoHash, receiver_id: AccountId }] If smart contract finishes its execution with some value (not Promise), runtime creates a [DataReceipt]s for each of the output_data_receivers. input_data_ids type : [CryptoHash]_ input_data_ids are the receipt data dependencies. input_data_ids correspond to DataReceipt.data_id. actions type : FunctionCall | TransferAction | StakeAction | AddKeyAction | DeleteKeyAction | CreateAccountAction | DeleteAccountAction","breadcrumbs":"Runtime specification » ActionReceipt","id":"65","title":"ActionReceipt"},"66":{"body":"DataReceipt represents a final result of some contract execution. data_id type : CryptoHash An a unique DataReceipt identifier. data type : Option([u8]) An an associated data in bytes. None indicates an error during execution.","breadcrumbs":"Runtime specification » DataReceipt","id":"66","title":"DataReceipt"},"67":{"body":"Receipts can be generated during the execution of the SignedTransaction (see example ) or during application of some ActionReceipt which contains FunctionCall action. The result of the FunctionCall could either","breadcrumbs":"Runtime specification » Creating Receipt","id":"67","title":"Creating Receipt"},"68":{"body":"Runtime doesn't expect that Receipts are coming in a particular order. Each Receipt is processed individually. The goal of the Receipt Matching process is to match all ActionReceipts to the corresponding DataReceipts .","breadcrumbs":"Runtime specification » Receipt Matching","id":"68","title":"Receipt Matching"},"69":{"body":"For each incoming ActionReceipt runtime checks whether we have all the DataReceipts (defined as ActionsReceipt.input_data_ids ) required for execution. If all the required DataReceipts are already in the storage , runtime can apply this ActionReceipt immediately. Otherwise we save this receipt as a Postponed ActionReceipt . Also we save Pending DataReceipts Count and a link from pending DataReceipt to the Postponed ActionReceipt . Now runtime will wait all the missing DataReceipts to apply the Postponed ActionReceipt. Postponed ActionReceipt A Receipt which runtime stores until all the designated DataReceipts arrive. key = account_id,receipt_id value = [u8] Where account_id is Receipt.receiver_id , receipt_id is Receipt.receiver_id and value is a serialized Receipt (which type must be ActionReceipt ). Pending DataReceipt Count A counter which counts pending DataReceipts for a Postponed Receipt initially set to the length of missing input_data_ids of the incoming ActionReceipt. It's decrementing with every new received DataReceipt : key = account_id,receipt_id value = u32 Where account_id is AccountId, receipt_id is CryptoHash and value is an integer. Pending DataReceipt for Postponed ActionReceipt We index each pending DataReceipt so when a new DataReceipt arrives we can find to which Postponed Receipt it belongs. key = account_id,data_id value = receipt_id","breadcrumbs":"Runtime specification » Processing ActionReceipt","id":"69","title":"Processing ActionReceipt"},"7":{"body":"NEAR Protocol has an account names system. Account ID is similar to a username. Account IDs have to follow the rules.","breadcrumbs":"Data Structures » Account ID","id":"7","title":"Account ID"},"70":{"body":"Received DataReceipt First of all, runtime saves the incoming DataReceipt to the storage as: key = account_id,data_id value = [u8] Where account_id is Receipt.receiver_id , data_id is DataReceipt.data_id and value is a DataReceipt.data (which is typically a serialized result of the call to a particular contract). Next, runtime checks if there is any Postponed ActionReceipt awaits for this DataReceipt by querying Pending DataReceipt to the Postponed Receipt . If there is no postponed receipt_id yet, we do nothing else. If there is a postponed receipt_id, we do the following: decrement Pending Data Count for the postponed receipt_id remove found Pending DataReceipt to the Postponed ActionReceipt If Pending DataReceipt Count is now 0 that means all the Receipt.input_data_ids are in storage and runtime can safely apply the Postponed Receipt and remove it from the store.","breadcrumbs":"Runtime specification » Processing DataReceipt","id":"70","title":"Processing DataReceipt"},"71":{"body":"Suppose runtime got the following ActionReceipt: # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt_id: \"693406\" receipt: ActionReceipt { input_data_ids: [] }\n} If execution return Result::Value Suppose runtime got the following ActionReceipt (we use a python-like pseudo code): # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt_id: \"5e73d4\" receipt: ActionReceipt { input_data_ids: [\"e5fa44\", \"7448d8\"] }\n} We can't apply this receipt right away: there are missing DataReceipt'a with IDs: [\"e5fa44\", \"7448d8\"]. Runtime does the following: postponed_receipts[\"alice,5e73d4\"] = borsh_serialize( Receipt{ receiver_id: \"alice\", receipt_id: \"5e73d4\" receipt: ActionReceipt { input_data_ids: [\"e5fa44\", \"7448d8\"] } }\n)\npending_data_receipt_store[\"alice,e5fa44\"] = \"5e73d4\"\npending_data_receipt_store[\"alice,7448d8\"] = \"5e73d4\"\npending_data_receipt_count = 2 Note: the subsequent Receipts could arrived in the current block or next, that's why we save Postponed ActionReceipt in the storage Then the first pending Pending DataReceipt arrives: # Non-relevant fields are omitted.\nReceipt { receiver_id: \"alice\", receipt: DataReceipt { data_id: \"e5fa44\", data: \"some data for alice\", }\n} data_receipts[\"alice,e5fa44\"] = borsh_serialize(Receipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"e5fa44\", data: \"some data for alice\", }\n};\npending_data_receipt_count[\"alice,5e73d4\"] = 1`\ndel pending_data_receipt_store[\"alice,e5fa44\"] And finally the last Pending DataReceipt arrives: # Non-relevant fields are omitted.\nReceipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"7448d8\", data: \"some more data for alice\", }\n} data_receipts[\"alice,7448d8\"] = borsh_serialize(Receipt{ receiver_id: \"alice\", receipt: DataReceipt { data_id: \"7448d8\", data: \"some more data for alice\", }\n};\npostponed_receipt_id = pending_data_receipt_store[\"alice,5e73d4\"]\npostponed_receipt = postponed_receipts[postponed_receipt_id]\ndel postponed_receipts[postponed_receipt_id]\ndel pending_data_receipt_count[\"alice,5e73d4\"]\ndel pending_data_receipt_store[\"alice,7448d8\"]\napply_receipt(postponed_receipt)","breadcrumbs":"Runtime specification » Case 1: Call to multiple contracts and await responses","id":"71","title":"Case 1: Call to multiple contracts and await responses"},"72":{"body":"In the following sections we go over the common scenarios that runtime takes care of.","breadcrumbs":"Runtime specification » Scenarios","id":"72","title":"Scenarios"},"73":{"body":"Suppose Alice wants to transfer 100 tokens to Bob. In this case we are talking about native Near Protocol tokens, oppose to user-defined tokens implemented through a smart contract. There are several way this can be done: Direct transfer through a transaction containing transfer action; Alice calling a smart contract that in turn creates a financial transaction towards Bob. In this section we are talking about the former simpler scenario.","breadcrumbs":"Runtime specification » Scenarios » Financial Transaction","id":"73","title":"Financial Transaction"},"74":{"body":"For this to work both Alice and Bob need to have accounts and an access to them through the full access keys . Suppose Alice has account alice_near and Bob has account bob_near. Also, some time in the past, each of them has created a public-secret key-pair, saved the secret key somewhere (e.g. in a wallet application) and created a full access key with the public key for the account. We also need to assume that both Alice and Bob has some number of tokens on their accounts. Alice needs >100 tokens on the account so that she could transfer 100 tokens to Bob, but also Alice and Bob need to have some tokens to pay for the rent of their account -- which is essentially the cost of the storage occupied by the account in the Near Protocol network.","breadcrumbs":"Runtime specification » Scenarios » Pre-requisites","id":"74","title":"Pre-requisites"},"75":{"body":"To send the transaction neither Alice nor Bob need to run a node. However, Alice needs a way to create and sign a transaction structure. Suppose Alice uses near-shell or any other third-party tool for that. The tool then creates the following structure: Transaction { signer_id: \"alice_near\", public_key: \"ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy\", nonce: 57, receiver_id: \"bob_near\", block_hash: \"CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf\", actions: vec![ Action::Transfer(TransferAction {deposit: 100} ) ],\n} Which contains one token transfer action, the id of the account that signs this transaction (alice_near) the account towards which this transaction is addressed (bob_near). Alice also uses the public key associated with one of the full access keys of alice_near account. Additionally, Alice uses the nonce which is unique value that allows Near Protocol to differentiate the transactions (in case there are several transfers coming in rapid succession) which should be strictly increasing with each transaction. Unlike in Ethereum, nonces are associated with access keys, oppose to the entire accounts, so several users using the same account through different access keys need not to worry about accidentally reusing each other's nonces. The block hash is used to calculate the transaction \"freshness\". It is used to make sure the transaction does not get lost (let's say somewhere in the network) and then arrive hours, days, or years later when it is not longer relevant or would be undesirable to execute. The transaction does not need to arrive at the specific block, instead it is required to arrive within certain number of blocks from the bock identified by the block_hash (as of 2019-10-27 the constant is 10 blocks). Any transaction arriving outside this threshold is considered to be invalid. near-shell or other tool that Alice uses then signs this transaction, by: computing the hash of the transaction and signing it with the secret key, resulting in a SignedTransaction object.","breadcrumbs":"Runtime specification » Scenarios » Creating a transaction","id":"75","title":"Creating a transaction"},"76":{"body":"To send the transaction, near-shell connects through the RPC to any Near Protocol node and submits it. If users wants to wait until the transaction is processed they can use send_tx_commit JSONRPC method which waits for the transaction to appear in a block. Otherwise the user can use send_tx_async.","breadcrumbs":"Runtime specification » Scenarios » Sending the transaction","id":"76","title":"Sending the transaction"},"77":{"body":"We skip the details on how the transaction arrives to be processed by the runtime, since it is a part of the blockchain layer discussion. We consider the moment where SignedTransaction is getting passed to Runtime::apply of the runtime crate. Runtime::apply immediately passes transaction to Runtime::process_transaction which in turn does the following: Verifies that transaction is valid; Applies initial reversible and irreversible charges to alice_near account; Creates a receipt with the same set of actions directed towards bob_near. The first two items are performed inside Runtime::verify_and_charge_transaction method. Specifically it does the following checks: Verifies that alice_near and bob_near are syntactically valid account ids; Verifies that the signature of the transaction is correct based on the transaction hash and the attached public key; Retrieves the latest state of the alice_near account, and simultaneously checks that it exists; Retrieves the state of the access key of that alice_near used to sign the transaction; Checks that transaction nonce is greater than the nonce of the latest transaction executed with that access key; Checks whether the account that signed the transaction is the same as the account that receives it. In our case the sender (alice_near) and the receiver (bob_near) are not the same. We apply different fees if receiver and sender is the same account; Applies the storage rent to the alice_near account; Computes how much gas we need to spend to convert this transaction to a receipt; Computes how much balance we need to subtract from alice_near, in this case it is 100 tokens; Deducts the tokens and the gas from alice_near balance, using the current gas price; Checks whether after all these operations account has enough balance to passively pay for the rent for the next several blocks (an economical constant defined by Near Protocol). Otherwise account will be open for an immediate deletion, which we do not want; Updates the alice_near account with the new balance and the used access key with the new nonce; Computes how much reward should be paid to the validators from the burnt gas. If any of the above operations fail all of the changes will be reverted.","breadcrumbs":"Runtime specification » Scenarios » Transaction to receipt","id":"77","title":"Transaction to receipt"},"78":{"body":"The receipt created in the previous section will eventually arrive to a runtime on the shard that hosts bob_near account. Again, it will be processed by Runtime::apply which will immediately call Runtime::process_receipt. It will check that this receipt does not have data dependencies (which is only the case of function calls) and will then call Runtime::apply_action_receipt on TransferAction. Runtime::apply_action_receipt will perform the following checks: Retrieves the state of bob_near account, if it still exists (it is possible that Bob has deleted his account concurrently with the transfer transaction); Applies the rent to Bob's account; Computes the cost of processing a receipt and a transfer action; Checks if bob_near still exists and if it is deposits the transferred tokens; Computes how much reward should be paid to the validators from the burnt gas.","breadcrumbs":"Runtime specification » Scenarios » Processing receipt","id":"78","title":"Processing receipt"},"79":{"body":"This guide assumes that you have read the Financial Transaction section. Suppose Alice is a calling a function reserve_trip(city: String, date: u64) on a smart contract deployed to a travel_agency account which in turn calls reserve(date: u64) on a smart contract deployed to a hotel_near account and attaches a callback to method hotel_reservation_complete(date: u64) on travel_agency.","breadcrumbs":"Runtime specification » Scenarios » Cross-Contract Call","id":"79","title":"Cross-Contract Call"},"8":{"body":"minimum length is 2 maximum length is 64 Account ID consists of Account ID parts separated by . Account ID part consists of lowercase alphanumeric symbols separated by either _ or -. Account names are similar to a domain names. Anyone can create a top level account (TLA) without separators, e.g. near. Only near can create alice.near. And only alice.near can create app.alice.near and so on. Note, near can NOT create app.alice.near directly. Regex for a full account ID, without checking for length: ^(([a-z\\d]+[\\-_])*[a-z\\d]+\\.)*([a-z\\d]+[\\-_])*[a-z\\d]+$","breadcrumbs":"Data Structures » Account ID Rules","id":"8","title":"Account ID Rules"},"80":{"body":"It possible for Alice to call the travel_agency in several different ways. In the simplest scenario Alice has an account alice_near and she has a full access key. She then composes the following transaction that calls the travel_agency: Transaction { signer_id: \"alice_near\", public_key: \"ed25519:32zVgoqtuyRuDvSMZjWQ774kK36UTwuGRZMmPsS6xpMy\", nonce: 57, receiver_id: \"travel_agency\", block_hash: \"CjNSmWXTWhC3EhRVtqLhRmWMTkRbU96wUACqxMtV1uGf\", actions: vec![ Action::FunctionCall(FunctionCallAction { method_name: \"reserve_trip\", args: \"{\\\"city\\\": \\\"Venice\\\", \\\"date\\\": 20191201}\", gas: 1000000, tokens: 100, }) ],\n} Here the public key corresponds to the full access key of alice_near account. All other fields in Transaction were discussed in the Financial Transaction section. The FunctionCallAction action describes how the contract should be called. The receiver_id field in Transaction already establishes what contract should be executed, FunctionCallAction merely describes how it should be executed. Interestingly, the arguments is just a blob of bytes, it is up to the contract developer what serialization format they choose for their arguments. In this example, the contract developer has chosen to use JSON and so the tool that Alice uses to compose this transaction is expected to use JSON too to pass the arguments. gas declares how much gas alice_near has prepaid for dynamically calculated fees of the smart contract executions and other actions that this transaction may spawn. The tokens is the amount of alice_near attaches to be deposited to whatever smart contract that it is calling to. Notice, gas and tokens are in different units of measurement. Now, consider a slightly more complex scenario. In this scenario Alice uses a restricted access key to call the function. That is the permission of the access key is not AccessKeyPermission::FullAccess but is instead: AccessKeyPermission::FunctionCall(FunctionCallPermission) where FunctionCallPermission { allowance: Some(3000), receiver_id: \"travel_agency\", method_names: [ \"reserve_trip\", \"cancel_trip\" ]\n} This scenario might arise when someone Alice's parent has given them a restricted access to alice_near account by creating an access key that can be used strictly for trip management. This access key allows up to 3000 tokens to be spent (which includes token transfers and payments for gas), it can be only used to call travel_agency and it can be only used with the reserve_trip and cancel_trip methods. The way runtime treats this case is almost exactly the same as the previous one, with the only difference on how it verifies the signature of on the signed transaction, and that it also checks for allowance to not be exceeded. Finally, in the last scenario, Alice does not have an account (or the existence of alice_near is irrelevant). However, alice has full or restricted access key directly on travel_agency account. In that case signer_id == receiver_id in the Transaction object and runtime will convert transaction to the first receipt and apply that receipt in the same block. This section will focus on the first scenario, since the other two are the same with some minor differences.","breadcrumbs":"Runtime specification » Scenarios » Pre-requisites","id":"80","title":"Pre-requisites"},"81":{"body":"The process of converting transaction to receipt is very similar to the Financial Transaction with several key points to note: Since Alice attaches 100 tokens to the function call, we subtract them from alice_near upon converting transaction to receipt, similar to the regular financial transaction; Since we are attaching 1000000 prepaid gas, we will not only subtract the gas costs of processing the receipt from alice_near, but will also purchase 1000000 gas using the current gas price.","breadcrumbs":"Runtime specification » Scenarios » Transaction to receipt","id":"81","title":"Transaction to receipt"},"82":{"body":"The receipt created on the shard that hosts alice_near will eventually arrive to the shard hosting travel_agency account. It will be processed in Runtime::apply which will check that receipt does not have data dependencies (which is the case because this function call is not a callback) and will call Runtime::apply_action_receipt. At this point receipt processing is similar to receipt processing from the Financial Transaction section, with one difference that we will also call action_function_call which will do the following: Retrieve the Wasm code of the smart contract (either from the database or from the cache); Initialize runtime context through VMContext and create RuntimeExt which provides access to the trie when the smart contract call the storage API. Specifically \"{\\\"city\\\": \\\"Venice\\\", \\\"date\\\": 20191201}\" arguments will be set in VMContext. Calls near_vm_runner::run which does the following: Inject gas, stack, and other kinds of metering; Verify that Wasm code does not use floats; Checks that bindings API functions that the smart contract is trying to call are actually those provided by near_vm_logic; Compiles Wasm code into the native binary; Calls reserve_trip on the smart contract. During the execution of the smart contract it will at some point call promise_create and promise_then, which will call method on RuntimeExt that will record that two promises were created and that the second one should wait on the first one. Specifically, promise_create will call RuntimeExt::create_receipt(vec![], \"hotel_near\") returning 0 and then RuntimeExt::create_receipt(vec![0], \"travel_agency\"); action_function_call then collects receipts from VMContext along with the execution result, logs, and information about used gas; apply_action_receipt then goes over the collected receipts from each action and returns them at the end of Runtime::apply together with other receipts.","breadcrumbs":"Runtime specification » Scenarios » Processing the reserve_trip receipt","id":"82","title":"Processing the reserve_trip receipt"},"83":{"body":"This receipt will have output_data_receivers with one element corresponding to the receipt that calls hotel_reservation_complete, which will tell the runtime that it should create DataReceipt and send it towards travel_agency once the execution of reserve(date: u64) is complete. The rest of the smart contract execution is similar to the above.","breadcrumbs":"Runtime specification » Scenarios » Processing the reserve receipt","id":"83","title":"Processing the reserve receipt"},"84":{"body":"Upon receiving the hotel_reservation_complete receipt the runtime will notice that its input_data_ids is not empty which means that it cannot be executed until reserve receipt is complete. It will store the receipt in the trie together with the counter of how many DataReceipt it is waiting on. It will not call the Wasm smart contract at this point.","breadcrumbs":"Runtime specification » Scenarios » Processing the hotel_reservation_complete receipt","id":"84","title":"Processing the hotel_reservation_complete receipt"},"85":{"body":"Once the runtime receives the DataReceipt it takes the receipt with hotel_reservation_complete function call and executes it following the same execution steps as with the reserve_trip receipt.","breadcrumbs":"Runtime specification » Scenarios » Processing the DataReceipt","id":"85","title":"Processing the DataReceipt"},"86":{"body":"Here is the high-level diagram of various runtime components, including some blockchain layer components.","breadcrumbs":"Runtime specification » Components","id":"86","title":"Components"},"87":{"body":"Runtime crate encapsulates the logic of how transactions and receipts should be handled. If it encounters a smart contract call within a transaction or a receipt it calls near-vm-runner, for all other actions, like account creation, it processes them in-place.","breadcrumbs":"Runtime specification » Components » Runtime crate","id":"87","title":"Runtime crate"},"88":{"body":"The main entry point of the Runtime is method apply. It applies new singed transactions and incoming receipts for some chunk/shard on top of given trie and the given state root. If the validator accounts update is provided, updates validators accounts. All new signed transactions should be valid and already verified by the chunk producer. If any transaction is invalid, the method returns an InvalidTxError. In case of success, the method returns ApplyResult that contains the new state root, trie changes, new outgoing receipts, stats for validators (e.g. total rent paid by all the affected accounts), execution outcomes.","breadcrumbs":"Runtime specification » Components » Runtime class","id":"88","title":"Runtime class"},"89":{"body":"It takes the following arguments: trie: Arc - the trie that contains the latest state. root: CryptoHash - the hash of the state root in the trie. validator_accounts_update: &Option - optional field that contains updates for validator accounts. It's provided at the beginning of the epoch or when someone is slashed. apply_state: &ApplyState - contains block index and timestamp, epoch length, gas price and gas limit. prev_receipts: &[Receipt] - the list of incoming receipts, from the previous block. transactions: &[SignedTransaction] - the list of new signed transactions.","breadcrumbs":"Runtime specification » Components » Apply arguments","id":"89","title":"Apply arguments"},"9":{"body":"Name Value REGISTRAR_ACCOUNT_ID registrar MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH 32 Top level account names (TLAs) are very valuable as they provide root of trust and discoverability for companies, applications and users. To allow for fair access to them, the top level account names that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters going to be auctioned off. Specifically, only REGISTRAR_ACCOUNT_ID account can create new top level accounts that are shorter than MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH characters. REGISTRAR_ACCOUNT_ID implements standard Account Naming (link TODO) interface to allow create new accounts. def action_create_account(predecessor_id, account_id): \"\"\"Called on CreateAccount action in receipt.\"\"\" if len(account_id) < MIN_ALLOWED_TOP_LEVEL_ACCOUNT_LENGTH and predecessor_id != REGISTRAR_ACCOUNT_ID: raise CreateAccountOnlyByRegistrar(account_id, REGISTRAR_ACCOUNT_ID, predecessor_id) # Otherwise, create account with given `account_id`. Note: we are not going to deploy registrar auction at launch, instead allow to deploy it by Foundation after initial launch. The link to details of the auction will be added here in the next spec release post MainNet.","breadcrumbs":"Data Structures » Top Level Accounts","id":"9","title":"Top Level Accounts"},"90":{"body":"The execution consists of the following stages: Snapshot the initial state. Apply validator accounts update, if available. Convert new signed transactions into the receipts. Process receipts. Check that incoming and outgoing balances match. Finalize trie update. Return ApplyResult.","breadcrumbs":"Runtime specification » Components » Apply logic","id":"90","title":"Apply logic"},"91":{"body":"Validator accounts are accounts that staked some tokens to become a validator. The validator accounts update usually happens when the current chunk is the first chunk of the epoch. It also happens when there is a challenge in the current block with one of the participants belong to the current shard. This update distributes validator rewards, return locked tokens and maybe slashes some accounts out of their stake.","breadcrumbs":"Runtime specification » Components » Validator accounts update","id":"91","title":"Validator accounts update"},"92":{"body":"New signed transaction transactions are provided by the chunk producer in the chunk. These transactions should be ordered and already validated. Runtime does validation again for the following reasons: to charge accounts for transactions fees, transfer balances, prepaid gas and account rents; to create new receipts; to compute burnt gas; to validate transactions again, in case the chunk producer was malicious. If the transaction has the the same signer_id and receiver_id, then the new receipt is added to the list of new local receipts, otherwise it's added to the list of new outgoing receipts.","breadcrumbs":"Runtime specification » Components » Signed Transaction conversion","id":"92","title":"Signed Transaction conversion"},"93":{"body":"Receipts are processed one by one in the following order: Previously delayed receipts from the state. New local receipts. New incoming receipts. After each processed receipt, we compare total gas burnt (so far) with the gas limit. When the total gas burnt reaches or exceeds the gas limit, the processing stops. The remaining receipts are considered delayed and stored into the state.","breadcrumbs":"Runtime specification » Components » Receipt processing","id":"93","title":"Receipt processing"},"94":{"body":"Delayed receipts are stored as a persistent queue in the state. Initially, the first unprocessed index and the next available index are initialized to 0. When a new delayed receipt is added, it's written under the next available index in to the state and the next available index is incremented by 1. When a delayed receipt is processed, it's read from the state using the first unprocessed index and the first unprocessed index is incremented. At the end of the receipt processing, the all remaining local and incoming receipts are considered to be delayed and stored to the state in their respective order. If during receipt processing, we've changed indices, then the delayed receipt indices are stored to the state as well.","breadcrumbs":"Runtime specification » Components » Delayed receipts","id":"94","title":"Delayed receipts"},"95":{"body":"The receipt processing algorithm is the following: Read indices from the state or initialize with zeros. While the first unprocessed index is less than the next available index do the following If the total burnt gas is at least the gas limit, break. Read the receipt from the first unprocessed index. Remove the receipt from the state. Increment the first unprocessed index. Process the receipt. Add the new burnt gas to the total burnt gas. Remember that the delayed queue indices has changed. Process the new local receipts and then the new incoming receipts If the total burnt gas is less then the gas limit: Process the receipt. Add the new burnt gas to the total burnt gas. Else: Store the receipt under the next available index. Increment the next available index. Remember that the delayed queue indices has changed. If the delayed queue indices has changed, store the new indices to the state.","breadcrumbs":"Runtime specification » Components » Receipt processing algorithm","id":"95","title":"Receipt processing algorithm"},"96":{"body":"Balance checker computes the total incoming balance and the total outgoing balance. The total incoming balance consists of the following: Incoming validator rewards from validator accounts update. Sum of the initial accounts balances for all affected accounts. We compute it using the snapshot of the initial state. Incoming receipts balances. The prepaid fees and gas multiplied their gas prices with the attached balances from transfers and function calls. Refunds are considered to be free of charge for fees, but still has attached deposits. Balances for the processed delayed receipts. Initial balances for the postponed receipts. Postponed receipts are receipts from the previous blocks that were processed, but were not executed. They are action receipts with some expected incoming data. Usually for a callback on top of awaited promise. When the expected data arrives later than the action receipt, then the action receipt is postponed. Note, the data receipts are 0 cost, because they are completely prepaid when issued. The total outgoing balance consists of the following: Sum of the final accounts balance for all affected accounts. Outgoing receipts balances. New delayed receipts. Local and incoming receipts that were not processed this time. Final balances for the postponed receipts. Total rent paid by all affected accounts. Total new validator rewards. It's computed from total gas burnt rewards. Total balance burnt. In case the balance is burnt for some reason (e.g. account was deleted during the refund), it's accounted there. Total balance slashed. In case a validator is slashed for some reason, the balance is account here. When you sum up incoming balances and outgoing balances, they should match. If they don't match, we throw an error.","breadcrumbs":"Runtime specification » Components » Balance checker","id":"96","title":"Balance checker"},"97":{"body":"This is the low-level interface available to the smart contracts, it consists of the functions that the host (represented by Wasmer inside near-vm-runner) exposes to the guest (the smart contract compiled to Wasm). Due to Wasm restrictions the methods operate only with primitive types, like u64. Also for all functions in the bindings specification the following is true: Method execution could result in MemoryAccessViolation error if one of the following happens: The method causes host to read a piece of memory from the guest but it points outside the guest's memory; The guest causes host to read from the register, but register id is invalid. Execution of a bindings function call result in an error being generated. This error causes execution of the smart contract to be terminated and the error message written into the logs of the transaction that caused the execution. Many bindings functions can throw specialized error messages, but there is also a list of error messages that can be thrown by almost any function: IntegerOverflow -- happens when guest passes some data to the host but when host tries to apply arithmetic operation on it it causes overflow or underflow; GasExceeded -- happens when operation performed by the guest causes more gas than the remaining prepaid gas; GasLimitExceeded -- happens when the execution uses more gas than allowed by the global limit imposed in the economics config; StorageError -- happens when method fails to do some operation on the trie. The following binding methods cannot be invoked in a view call: signer_account_id signer_account_pk predecessor_account_id attached_deposit prepaid_gas used_gas promise_create promise_then promise_and promise_batch_create promise_batch_then promise_batch_action_create_account promise_batch_action_deploy_account promise_batch_action_function_call promise_batch_action_transfer promise_batch_action_stake promise_batch_action_add_key_with_full_access promise_batch_action_add_key_with_function_call promise_batch_action_delete_key promise_batch_action_delete_account promise_results_count promise_result promise_return If they are invoked the smart contract execution will panic with ProhibitedInView().","breadcrumbs":"Runtime specification » Components » Bindings Specification","id":"97","title":"Bindings Specification"},"98":{"body":"Registers allow the host function to return the data into a buffer located inside the host oppose to the buffer located on the client. A special operation can be used to copy the content of the buffer into the host. Memory pointers can then be used to point either to the memory on the guest or the memory on the host, see below. Benefits: We can have functions that return values that are not necessarily used, e.g. inserting key-value into a trie can also return the preempted old value, which might not be necessarily used. Previously, if we returned something we would have to pass the blob from host into the guest, even if it is not used; We can pass blobs of data between host functions without going through the guest, e.g. we can remove the value from the storage and insert it into under a different key; It makes API cleaner, because we don't need to pass buffer_len and buffer_ptr as arguments to other functions; It allows merging certain functions together, see storage_iter_next; This is consistent with other APIs that were created for high performance, e.g. allegedly Ewasm have implemented SNARK-like computations in Wasm by exposing a bignum library through stack-like interface to the guest. The guest can manipulate then with the stack of 256-bit numbers that is located on the host. Host → host blob passing The registers can be used to pass the blobs between host functions. For any function that takes a pair of arguments *_len: u64, *_ptr: u64 this pair is pointing to a region of memory either on the guest or the host: If *_len != u64::MAX it points to the memory on the guest; If *_len == u64::MAX it points to the memory under the register *_ptr on the host. For example: storage_write(u64::MAX, 0, u64::MAX, 1, 2) -- insert key-value into storage, where key is read from register 0, value is read from register 1, and result is saved to register 2. Note, if some function takes register_id then it means this function can copy some data into this register. If register_id == u64::MAX then the copying does not happen. This allows some micro-optimizations in the future. Note, we allow multiple registers on the host, identified with u64 number. The guest does not have to use them in order and can for instance save some blob in register 5000 and another value in register 1. Specification read_register(register_id: u64, ptr: u64) Writes the entire content from the register register_id into the memory of the guest starting with ptr. Panics If the content extends outside the memory allocated to the guest. In Wasmer, it returns MemoryAccessViolation error message; If register_id is pointing to unused register returns InvalidRegisterId error message. Undefined Behavior If the content of register extends outside the preallocated memory on the host side, or the pointer points to a wrong location this function will overwrite memory that it is not supposed to overwrite causing an undefined behavior. register_len(register_id: u64) -> u64 Returns the size of the blob stored in the given register. Normal operation If register is used, then returns the size, which can potentially be zero; If register is not used, returns u64::MAX","breadcrumbs":"Runtime specification » Components » Bindings Specification » Registers API","id":"98","title":"Registers API"},"99":{"body":"Here we provide a specification of trie API. After this NEP is merged, the cases where our current implementation does not follow the specification are considered to be bugs that need to be fixed. storage_write(key_len: u64, key_ptr: u64, value_len: u64, value_ptr: u64, register_id: u64) -> u64 Writes key-value into storage. Normal operation If key is not in use it inserts the key-value pair and does not modify the register; If key is in use it inserts the key-value and copies the old value into the register_id. Returns If key was not used returns 0; If key was used returns 1. Panics If key_len + key_ptr or value_len + value_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation. (When we say that something panics with the given error we mean that we use Wasmer API to create this error and terminate the execution of VM. For mocks of the host that would only cause a non-name panic.) If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs External::storage_set trait can return an error which is then converted to a generic non-descriptive StorageUpdateError, here however the actual implementation does not return error at all, see ; Does not return into the registers. storage_read(key_len: u64, key_ptr: u64, register_id: u64) -> u64 Reads the value stored under the given key. Normal operation If key is used copies the content of the value into the register_id, even if the content is zero bytes; If key is not present then does not modify the register. Returns If key was not present returns 0; If key was present returns 1. Panics If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs This function currently does not exist. storage_remove(key_len: u64, key_ptr: u64, register_id: u64) -> u64 Removes the value stored under the given key. Normal operation Very similar to storage_read: If key is used, removes the key-value from the trie and copies the content of the value into the register_id, even if the content is zero bytes. If key is not present then does not modify the register. Returns If key was not present returns 0; If key was present returns 1. Panics If key_len + key_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; If the registers exceed the memory limit panics with MemoryAccessViolation; If returning the preempted value into the registers exceed the memory container it panics with MemoryAccessViolation; Current bugs Does not return into the registers. storage_has_key(key_len: u64, key_ptr: u64) -> u64 Checks if there is a key-value pair. Normal operation If key is used returns 1, even if the value is zero bytes; Otherwise returns 0. Panics If key_len + key_ptr exceeds the memory container it panics with MemoryAccessViolation; storage_iter_prefix(prefix_len: u64, prefix_ptr: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Creates an iterator object inside the host. Returns the identifier that uniquely differentiates the given iterator from other iterators that can be simultaneously created. Normal operation It iterates over the keys that have the provided prefix. The order of iteration is defined by the lexicographic order of the bytes in the keys. If there are no keys, it creates an empty iterator, see below on empty iterators; Panics If prefix_len + prefix_ptr exceeds the memory container it panics with MemoryAccessViolation; storage_iter_range(start_len: u64, start_ptr: u64, end_len: u64, end_ptr: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Similarly to storage_iter_prefix creates an iterator object inside the host. Normal operation Unless lexicographically start < end, it creates an empty iterator. Iterates over all key-values such that keys are between start and end, where start is inclusive and end is exclusive. Note, this definition allows for start or end keys to not actually exist on the given trie. Panics: If start_len + start_ptr or end_len + end_ptr exceeds the memory container or points to an unused register it panics with MemoryAccessViolation; storage_iter_next(iterator_id: u64, key_register_id: u64, value_register_id: u64) -> u64 DEPRECATED, calling it will result result in HostError::Deprecated error. Advances iterator and saves the next key and value in the register. Normal operation If iterator is not empty (after calling next it points to a key-value), copies the key into key_register_id and value into value_register_id and returns 1; If iterator is empty returns 0. This allows us to iterate over the keys that have zero bytes stored in values. Panics If key_register_id == value_register_id panics with MemoryAccessViolation; If the registers exceed the memory limit panics with MemoryAccessViolation; If iterator_id does not correspond to an existing iterator panics with InvalidIteratorId If between the creation of the iterator and calling storage_iter_next any modification to storage was done through storage_write or storage_remove the iterator is invalidated and the error message is IteratorWasInvalidated. Current bugs Not implemented, currently we have storage_iter_next and data_read + DATA_TYPE_STORAGE_ITER that together fulfill the purpose, but have unspecified behavior.","breadcrumbs":"Runtime specification » Components » Bindings Specification » Trie API","id":"99","title":"Trie API"}},"length":280,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}},"3":{"df":1,"docs":{"259":{"tf":1.0}}},"5":{"df":1,"docs":{"262":{"tf":1.0}}},"9":{"df":2,"docs":{"262":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"70":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"x":{"0":{"0":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"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":{}}}}},"0":{"*":{"*":{"1":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"258":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"275":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"276":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"46":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"275":{"tf":2.0}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"^":{"1":{"8":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":2.0}}},"df":0,"docs":{}},"df":3,"docs":{"259":{"tf":1.4142135623730951},"277":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"43":{"tf":2.6457513110645907}}},"4":{"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"5":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"5":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"4":{"8":{"df":1,"docs":{"100":{"tf":1.0}}},"9":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":3,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.0},"104":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"!":{"/":{"_":{"3":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":3.872983346207417},"44":{"tf":2.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.23606797749979}}},"2":{"*":{"*":{"1":{"2":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"3":{"df":2,"docs":{"31":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"9":{"1":{"2":{"0":{"1":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"75":{"tf":1.0}}},"\\":{"!":{"/":{"_":{"3":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":5.5677643628300215},"64":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"df":4,"docs":{"137":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":5.0990195135927845}}},"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{",":{"2":{"0":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"98":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}},"df":2,"docs":{"274":{"tf":2.0},"43":{"tf":3.3166247903554}},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"9":{"3":{"4":{".":{".":{".":{"df":0,"docs":{},"e":{"2":{"4":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":2.0}}},"9":{".":{"0":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.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":{"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"]":{")":{"*":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}},"a":{".":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":7,"docs":{"137":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"250":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"11":{"tf":3.605551275463989},"12":{"tf":3.605551275463989},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"82":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"12":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0}},"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":{"12":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"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},"80":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"58":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"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":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"11":{"tf":1.0},"38":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":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":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{",":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"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":{"12":{"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":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.8284271247461903},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":3.0},"102":{"tf":1.4142135623730951},"11":{"tf":4.242640687119285},"12":{"tf":2.6457513110645907},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.8284271247461903},"19":{"tf":2.449489742783178},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":3.7416573867739413},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":3.3166247903554},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.23606797749979},"77":{"tf":3.1622776601683795},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"96":{"tf":3.0}},"i":{"d":{"df":14,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":2.6457513110645907},"28":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"s":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":3,"docs":{"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":5.291502622129181},"12":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":15,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"65":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.1622776601683795},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903}}}}},"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"29":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"161":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":9,"docs":{"156":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"j":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"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":2,"docs":{"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"k":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":1,"docs":{"276":{"tf":4.123105625617661}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":10,"docs":{"274":{"tf":2.0},"275":{"tf":3.3166247903554},"46":{"tf":1.4142135623730951},"71":{"tf":3.3166247903554},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":3.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"180":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.3166247903554}}}}}},"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":2.6457513110645907},"277":{"tf":3.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"275":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}},"p":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":3.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"50":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":17,"docs":{"34":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"df":7,"docs":{"28":{"tf":3.1622776601683795},"29":{"tf":3.3166247903554},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":2.6457513110645907}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"0":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"2":{"df":1,"docs":{"46":{"tf":1.0}}},"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":1,"docs":{"101":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"153":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"89":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"19":{"tf":1.7320508075688772},"272":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"52":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":2.449489742783178},"14":{"tf":1.0},"179":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}}},"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":1,"docs":{"105":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"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":{},"i":{"d":{"df":3,"docs":{"12":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"278":{"tf":1.0}}},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"'":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"1":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"1":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}},"2":{"df":1,"docs":{"34":{"tf":2.0}}},"c":{"df":1,"docs":{"34":{"tf":4.242640687119285}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"100":{"tf":1.0},"104":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":22,"docs":{"102":{"tf":2.0},"11":{"tf":3.0},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"263":{"tf":2.0},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"277":{"tf":2.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"77":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":4.47213595499958}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":36,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"18":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"262":{"tf":1.7320508075688772},"277":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":3.0},"23":{"tf":1.0},"38":{"tf":2.23606797749979},"43":{"tf":1.7320508075688772},"44":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":6,"docs":{"27":{"tf":5.385164807134504},"29":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"43":{"tf":4.123105625617661}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"14":{"tf":1.0},"273":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":2.23606797749979},"27":{"tf":2.23606797749979},"33":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}}}},"w":{"df":7,"docs":{"101":{"tf":1.0},"18":{"tf":1.4142135623730951},"260":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"100":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.7320508075688772},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"246":{"tf":1.0},"49":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"d":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"o":{"b":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"53":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"df":19,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":6.164414002968976},"28":{"tf":2.6457513110645907},"29":{"tf":3.605551275463989},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":5.916079783099616},"35":{"tf":1.7320508075688772},"36":{"tf":3.605551275463989},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"'":{"df":2,"docs":{"274":{"tf":1.0},"78":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}}},"x":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"e":{"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"101":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{".":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"g":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"99":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}},"y":{"df":2,"docs":{"262":{"tf":1.0},"276":{"tf":1.0}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"100":{"tf":3.1622776601683795},"272":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":42,"docs":{"100":{"tf":4.358898943540674},"101":{"tf":3.0},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"27":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":4.47213595499958},"277":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":2.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"272":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"12":{"tf":1.0},"263":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":1,"docs":{"43":{"tf":4.795831523312719}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"261":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":2.6457513110645907},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"272":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":3.4641016151377544}},"e":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"263":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"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":{},"e":{"df":0,"docs":{},"v":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":14,"docs":{"118":{"tf":1.0},"23":{"tf":1.7320508075688772},"262":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"9":{"6":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"42":{"tf":1.0},"49":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"71":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"53":{"tf":1.0}}}}},"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":4,"docs":{"16":{"tf":1.0},"276":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"262":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"262":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":3.3166247903554},"272":{"tf":1.0},"43":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":3,"docs":{"18":{"tf":1.0},"36":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"86":{"tf":1.7320508075688772}}},"s":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"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":{"275":{"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":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"273":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"260":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"99":{"tf":3.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":2.0},"99":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}}},"df":43,"docs":{"101":{"tf":3.872983346207417},"102":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"11":{"tf":3.7416573867739413},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":3.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":2.449489742783178},"276":{"tf":2.6457513110645907},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":2.449489742783178},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.0}}},"t":{"df":6,"docs":{"47":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"105":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"100":{"tf":3.7416573867739413},"276":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":84,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"49":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"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":{},"r":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{"_":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"254":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"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":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":3.7416573867739413},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.1622776601683795}}},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"254":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"101":{"tf":3.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":3.872983346207417},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"'":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"df":1,"docs":{"65":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"140":{"tf":1.0},"159":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"11":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"252":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":3.4641016151377544},"70":{"tf":2.6457513110645907},"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"278":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"13":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":7,"docs":{"263":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":7,"docs":{"256":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"71":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"263":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{},"x":{".":{"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":{"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"262":{"tf":1.0}}}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"261":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"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":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"79":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":11,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":2,"docs":{"275":{"tf":1.0},"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"124":{"tf":1.0},"20":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"276":{"tf":5.196152422706632},"46":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.7320508075688772},"263":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"77":{"tf":1.0},"80":{"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":3,"docs":{"20":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"267":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.4641016151377544}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"113":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"262":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"257":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{":":{"3":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"7":{"7":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"3":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"1":{"df":0,"docs":{},"t":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"1":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"33":{"tf":1.0},"34":{"tf":3.7416573867739413}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"10":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"29":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.0},"84":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":2.0},"255":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"267":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"263":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":3.4641016151377544},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"272":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"262":{"tf":1.0},"263":{"tf":2.0},"35":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"236":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"[":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951}}}},"\\":{"_":{"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":{"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":{"114":{"tf":1.0},"259":{"tf":1.0}}}}}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":3.872983346207417},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"33":{"tf":3.0},"34":{"tf":4.123105625617661},"36":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":3,"docs":{"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.7320508075688772},"36":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"66":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":2.8284271247461903}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"74":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"20":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":3.3166247903554}},"e":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":39,"docs":{"100":{"tf":3.605551275463989},"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":3.7416573867739413},"221":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":3,"docs":{"20":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"176":{"tf":1.0},"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"35":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"278":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"176":{"tf":1.0}}}}},"r":{"a":{"df":2,"docs":{"263":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"34":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"28":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"71":{"tf":2.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"df":10,"docs":{"27":{"tf":3.1622776601683795},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"n":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"277":{"tf":2.449489742783178},"44":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":39,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"80":{"tf":1.0}}}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"172":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.4142135623730951},"145":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"12":{"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":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":2,"docs":{"13":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"100":{"tf":4.795831523312719},"101":{"tf":3.605551275463989},"102":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"263":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}},"g":{"a":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":2.449489742783178},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"58":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":2.449489742783178}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"27":{"tf":2.23606797749979},"32":{"tf":1.0}},"e":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"20":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"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":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":10,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"n":{"df":24,"docs":{"100":{"tf":4.242640687119285},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"273":{"tf":2.0},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":7,"docs":{"100":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.4142135623730951},"72":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":2,"docs":{"262":{"tf":1.0},"82":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"22":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"42":{"tf":2.8284271247461903},"43":{"tf":4.795831523312719}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"177":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"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":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":2,"docs":{"273":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"(":{"b":{")":{"+":{"2":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{")":{"+":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":2.0}}},"2":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"f":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"27":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{")":{")":{"+":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{")":{")":{"+":{"1":{"df":1,"docs":{"32":{"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":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":2.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"+":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"33":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"36":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.4142135623730951}},"l":{"df":3,"docs":{"278":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":3,"docs":{"267":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"44":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":3.4641016151377544},"105":{"tf":1.4142135623730951},"189":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"79":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"(":{"d":{"df":1,"docs":{"79":{"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":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"0":{"0":{"0":{"5":{"df":1,"docs":{"100":{"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"8":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"/":{"5":{"9":{"2":{"3":{"9":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":27,"docs":{"101":{"tf":2.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":2.0},"11":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"262":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"251":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"53":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"100":{"tf":2.23606797749979},"27":{"tf":2.0},"69":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178}}}},"i":{"c":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"237":{"tf":1.0},"252":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"101":{"tf":2.8284271247461903},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}},"r":{"df":2,"docs":{"22":{"tf":1.0},"271":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}},"f":{"a":{"c":{"df":6,"docs":{"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"278":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"267":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":3.605551275463989}}}}},"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":{"100":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"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":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":2.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"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":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.0},"43":{"tf":4.123105625617661},"44":{"tf":1.0},"99":{"tf":4.123105625617661}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"169":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"266":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"k":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"206":{"tf":1.0},"207":{"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":{},"p":{"df":4,"docs":{"100":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":51,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"11":{"tf":3.7416573867739413},"12":{"tf":3.7416573867739413},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"38":{"tf":2.6457513110645907},"43":{"tf":3.1622776601683795},"44":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":2.23606797749979},"77":{"tf":2.0},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":5.477225575051661}},"s":{".":{"df":0,"docs":{},"m":{"d":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.449489742783178},"27":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"263":{"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":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"71":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"272":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}},"v":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":3,"docs":{"27":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"104":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":2.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"265":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"t":{"'":{"df":3,"docs":{"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":2.0},"97":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"183":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"k":{"df":4,"docs":{"27":{"tf":2.0},"35":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"275":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":2,"docs":{"272":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"272":{"tf":2.23606797749979},"63":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"1":{"6":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"104":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"82":{"tf":1.0},"97":{"tf":1.0}},"i":{"c":{"df":6,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"262":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"w":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"75":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"98":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"262":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"267":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"9":{"9":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"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":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"179":{"tf":1.0},"277":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"275":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.449489742783178},"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795},"99":{"tf":3.3166247903554}}},"y":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.4641016151377544}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"g":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"64":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":2.449489742783178},"11":{"tf":1.0},"13":{"tf":2.0},"153":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":2.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":2,"docs":{"278":{"tf":1.0},"279":{"tf":1.0}}},"u":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"64":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"df":4,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"277":{"tf":1.0},"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"11":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":3.0},"36":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"273":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":2,"docs":{"274":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.23606797749979}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"+":{"1":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"153":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"258":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"0":{"1":{"9":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"#":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"d":{"df":20,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"261":{"tf":1.0}}},"p":{"#":{"0":{"0":{"0":{"6":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"168":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"_":{"a":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":17,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"231":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":5.477225575051661},"44":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"71":{"tf":2.0},"99":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"42":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"h":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"275":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"30":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"255":{"tf":1.0}}}},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"43":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":2.0}}}}},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":{},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"100":{"tf":1.0},"273":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":1.0},"18":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"255":{"tf":1.0},"29":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":2.23606797749979},"29":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"53":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"29":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}}}}},"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":5,"docs":{"64":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":2.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"9":{"0":{"0":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"23":{"tf":1.0},"263":{"tf":1.0}}}},"df":6,"docs":{"168":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":3.1622776601683795}}},"df":0,"docs":{}}},"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":2.0},"277":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"54":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.4142135623730951}}}},"i":{"d":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":6.928203230275509},"101":{"tf":3.605551275463989},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":3.0},"105":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"t":{"df":7,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"273":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"272":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"74":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"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":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":33,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.7320508075688772},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":5.830951894845301},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"27":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":5.291502622129181},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"277":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"251":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"96":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}}},"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":{"27":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"277":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"277":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":2.0},"48":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"49":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"v":{"(":{"b":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"36":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":14,"docs":{"101":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":2,"docs":{"93":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"262":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.7320508075688772},"95":{"tf":2.23606797749979},"96":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":22,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":3.605551275463989},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"21":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":8.06225774829855},"102":{"tf":1.0},"179":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"100":{"tf":3.1622776601683795},"233":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"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":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"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":{},"f":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":1,"docs":{"100":{"tf":5.744562646538029}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"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":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":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":2.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"235":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"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":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"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":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"267":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":4,"docs":{"265":{"tf":2.0},"27":{"tf":1.0},"272":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":19,"docs":{"0":{"tf":2.0},"107":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"i":{"d":{"df":14,"docs":{"101":{"tf":2.23606797749979},"12":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}},"u":{"b":{"df":14,"docs":{"12":{"tf":2.0},"13":{"tf":2.0},"277":{"tf":2.449489742783178},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":9,"docs":{"249":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":12,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"249":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"249":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"103":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"df":1,"docs":{"34":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"0":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"48":{"tf":1.0},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"19":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"64":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":45,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"23":{"tf":2.23606797749979},"251":{"tf":2.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.449489742783178},"263":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":4.69041575982343},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":3.7416573867739413},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.8284271247461903},"95":{"tf":3.0},"96":{"tf":3.605551275463989}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":20,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.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":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"75":{"tf":1.0},"80":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":13,"docs":{"122":{"tf":1.4142135623730951},"164":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"263":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":2.0},"101":{"tf":3.4641016151377544},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":4.123105625617661},"99":{"tf":3.872983346207417}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":2.449489742783178},"105":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.449489742783178}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"71":{"tf":2.0},"75":{"tf":1.0}}}},"i":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"64":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"42":{"tf":1.0},"70":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":22,"docs":{"12":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"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},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"d":{"df":2,"docs":{"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"80":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"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":1,"docs":{"263":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}},":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":24,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"t":{"df":1,"docs":{"220":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":4.58257569495584}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"75":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":2,"docs":{"263":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"267":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"p":{"c":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":4,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"87":{"tf":1.0},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":41,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.4142135623730951},"272":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"82":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"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":{"77":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":1,"docs":{"120":{"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":2,"docs":{"120":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.7320508075688772},"34":{"tf":2.8284271247461903},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":5,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"265":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"259":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.0},"260":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"38":{"tf":1.0}}},"df":20,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":2.449489742783178},"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"277":{"tf":1.7320508075688772}}},"l":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"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":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"29":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}},"t":{"df":5,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"18":{"tf":1.0},"242":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":2.23606797749979},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"v":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":20,"docs":{"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":2.0},"37":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"137":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":2.6457513110645907},"40":{"tf":1.0},"54":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":16,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"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":4,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"18":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"11":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.7320508075688772},"29":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":2.449489742783178},"36":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"263":{"tf":1.0},"267":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"34":{"tf":1.0},"42":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"20":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":3.3166247903554}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"22":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":23,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"11":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"9":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"265":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"]":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"265":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1":{"tf":2.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"275":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":20,"docs":{"12":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"122":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"263":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"101":{"tf":1.0},"11":{"tf":3.1622776601683795},"122":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"101":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"101":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"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":{"142":{"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":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"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":1,"docs":{"97":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"21":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.0},"104":{"tf":3.7416573867739413},"109":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"277":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"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}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":3.1622776601683795},"36":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"m":{"(":{"[":{"(":{"1":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"16":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":9,"docs":{"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":1,"docs":{"265":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"272":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}},"2":{"df":1,"docs":{"34":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"100":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.23606797749979},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"271":{"tf":1.0}}}}}}},"b":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":7,"docs":{"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"27":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"83":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":2.8284271247461903},"97":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"i":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"105":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":4,"docs":{"261":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"50":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"a":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"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":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.8284271247461903},"274":{"tf":2.0},"275":{"tf":2.8284271247461903},"276":{"tf":3.4641016151377544},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"p":{"df":7,"docs":{"27":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":17,"docs":{"11":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":2.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":3.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}},"y":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"263":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"276":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"37":{"tf":3.7416573867739413},"38":{"tf":3.605551275463989},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.8284271247461903},"42":{"tf":3.1622776601683795},"43":{"tf":7.14142842854285},"44":{"tf":2.8284271247461903},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":2.0},"73":{"tf":1.7320508075688772},"75":{"tf":3.7416573867739413},"76":{"tf":2.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"154":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"259":{"tf":1.0},"268":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":6,"docs":{"19":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":37,"docs":{"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}},"p":{"df":1,"docs":{"80":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"18":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"x":{".":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"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":7,"docs":{"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}}}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"56":{"tf":1.0},"59":{"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":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":145,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"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},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"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.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"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},"275":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"97":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":8.426149773176359},"101":{"tf":3.0},"102":{"tf":2.0},"103":{"tf":3.1622776601683795},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"123":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":5.385164807134504}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":6,"docs":{"257":{"tf":1.0},"263":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"262":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":3,"docs":{"258":{"tf":1.7320508075688772},"260":{"tf":1.0},"80":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"13":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"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":2,"docs":{"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"263":{"tf":1.0},"273":{"tf":1.0},"41":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"163":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.0}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":2.0},"137":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":2.8284271247461903}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"50":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"38":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"8":{"/":{"1":{"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"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":{"42":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"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":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":2.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":1,"docs":{"265":{"tf":2.0}}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.4142135623730951}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"96":{"tf":2.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":4.358898943540674}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"e":{"c":{"<":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"s":{"df":0,"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":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"8":{"df":5,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"122":{"tf":1.0},"42":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"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":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"277":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}},"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":2,"docs":{"136":{"tf":1.0},"175":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}},"df":5,"docs":{"100":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"251":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}}}},"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":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"10":{"tf":1.0}}},"y":{"df":8,"docs":{"103":{"tf":1.0},"21":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"b":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"274":{"tf":2.23606797749979},"276":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"v":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"94":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"262":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":2.23606797749979},"12":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"14":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"276":{"tf":3.7416573867739413}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.0},"23":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":11,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":2.0},"98":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.605551275463989}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"\\":{"d":{"]":{"+":{"\\":{".":{")":{"*":{"(":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.0}}},"df":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":{"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"27":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}},"3":{"df":1,"docs":{"259":{"tf":1.0}}},"5":{"df":1,"docs":{"262":{"tf":1.0}}},"9":{"df":2,"docs":{"262":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"70":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"x":{"0":{"0":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"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":{}}}}},"0":{"*":{"*":{"1":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"258":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"275":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"276":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"46":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"275":{"tf":2.0}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}},"^":{"1":{"8":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"276":{"tf":2.0}}},"df":0,"docs":{}},"df":3,"docs":{"259":{"tf":1.4142135623730951},"277":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"43":{"tf":2.6457513110645907}}},"4":{"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"5":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"5":{"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"6":{"7":{"5":{"2":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"7":{"8":{"df":0,"docs":{},"e":{"7":{"b":{"8":{"5":{"b":{"8":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"4":{"a":{"1":{"9":{"c":{"b":{"d":{"4":{"df":0,"docs":{},"r":{"4":{"8":{"df":1,"docs":{"100":{"tf":1.0}}},"9":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":3,"docs":{"100":{"tf":2.449489742783178},"102":{"tf":1.0},"104":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"!":{"/":{"_":{"3":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":3.872983346207417},"44":{"tf":2.0},"71":{"tf":1.7320508075688772},"94":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.23606797749979}}},"2":{"*":{"*":{"1":{"2":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"3":{"df":2,"docs":{"31":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"9":{"1":{"2":{"0":{"1":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"75":{"tf":1.0}}},"\\":{"!":{"/":{"_":{"3":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":2.0},"34":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":5.5677643628300215},"64":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"9":{"tf":1.0}}},"df":4,"docs":{"137":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":5.0990195135927845}}},"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{",":{"2":{"0":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"98":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}},"df":2,"docs":{"274":{"tf":2.0},"43":{"tf":3.3166247903554}},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"9":{"3":{"4":{".":{".":{".":{"df":0,"docs":{},"e":{"2":{"4":{"8":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":2.8284271247461903}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":2.0}}},"df":2,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":2.0}}},"9":{".":{"0":{"9":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"276":{"tf":2.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":{"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"]":{")":{"*":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}},"a":{".":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{".":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":7,"docs":{"137":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"250":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"11":{"tf":3.605551275463989},"12":{"tf":3.7416573867739413},"13":{"tf":2.449489742783178},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"82":{"tf":1.0},"9":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"12":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0}},"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":{"12":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"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},"80":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"58":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"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":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"11":{"tf":1.0},"38":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":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":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{",":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}},"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":{"12":{"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":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}},"df":15,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.8284271247461903},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"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":72,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"101":{"tf":3.0},"102":{"tf":1.4142135623730951},"11":{"tf":4.358898943540674},"12":{"tf":2.6457513110645907},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.23606797749979},"143":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":3.0},"19":{"tf":2.6457513110645907},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":3.7416573867739413},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":3.3166247903554},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"38":{"tf":1.0},"43":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"7":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":2.23606797749979},"77":{"tf":3.1622776601683795},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":2.8284271247461903},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":3.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"96":{"tf":3.0}},"i":{"d":{"df":14,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":2.6457513110645907},"28":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"s":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":3,"docs":{"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}}},"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":{},"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":1,"docs":{"141":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":5.291502622129181},"12":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":15,"docs":{"11":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903}}}}},"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"29":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"161":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":9,"docs":{"156":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":2.449489742783178},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"j":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"259":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"137":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"38":{"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":2,"docs":{"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"37":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"k":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":1,"docs":{"276":{"tf":4.123105625617661}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"44":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}}}}}}}}},"i":{"c":{"df":10,"docs":{"274":{"tf":2.0},"275":{"tf":3.3166247903554},"46":{"tf":1.4142135623730951},"71":{"tf":3.3166247903554},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":3.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":24,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.8284271247461903},"180":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"102":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.3166247903554}}}}}},"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.0},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":2.6457513110645907},"277":{"tf":3.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"275":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"278":{"tf":1.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}}},"p":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":3.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"50":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":17,"docs":{"34":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}},"df":7,"docs":{"28":{"tf":3.1622776601683795},"29":{"tf":3.4641016151377544},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"33":{"tf":2.449489742783178},"34":{"tf":2.0},"36":{"tf":2.8284271247461903}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"2":{"df":1,"docs":{"46":{"tf":1.0}}},"df":4,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":1,"docs":{"101":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"153":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"89":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"19":{"tf":2.0},"272":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"52":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":2.449489742783178},"14":{"tf":1.0},"179":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}}},"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":1,"docs":{"105":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"12":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"r":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"278":{"tf":1.0}}},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"'":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"1":{"df":1,"docs":{"36":{"tf":1.0}}},"_":{"1":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}},"2":{"df":1,"docs":{"34":{"tf":2.0}}},"c":{"df":1,"docs":{"34":{"tf":4.242640687119285}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"109":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":2,"docs":{"100":{"tf":1.0},"104":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":22,"docs":{"102":{"tf":2.0},"11":{"tf":3.0},"116":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"263":{"tf":2.0},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"277":{"tf":2.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"77":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":36,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"18":{"tf":2.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"262":{"tf":1.7320508075688772},"277":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":3.0},"23":{"tf":1.0},"38":{"tf":2.23606797749979},"43":{"tf":1.7320508075688772},"44":{"tf":3.3166247903554}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":6,"docs":{"27":{"tf":5.385164807134504},"29":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"43":{"tf":4.123105625617661}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"23":{"tf":1.0},"29":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"14":{"tf":1.0},"273":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":2.449489742783178},"27":{"tf":2.23606797749979},"33":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0}}}},"w":{"df":7,"docs":{"101":{"tf":1.0},"18":{"tf":1.4142135623730951},"260":{"tf":1.0},"29":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"100":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.7320508075688772},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"64":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"246":{"tf":1.0},"49":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"d":{"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}},"o":{"b":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"53":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"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":{},"m":{"df":1,"docs":{"259":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"df":19,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":6.164414002968976},"28":{"tf":2.6457513110645907},"29":{"tf":3.605551275463989},"30":{"tf":2.8284271247461903},"31":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"33":{"tf":2.6457513110645907},"34":{"tf":5.916079783099616},"35":{"tf":1.7320508075688772},"36":{"tf":3.605551275463989},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"_":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"'":{"df":2,"docs":{"274":{"tf":1.0},"78":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":1,"docs":{"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"10":{"tf":1.0}}}}},"x":{"df":2,"docs":{"251":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"p":{"(":{"df":0,"docs":{},"e":{"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"101":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{".":{"a":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"g":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"102":{"tf":1.0},"99":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"50":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}},"y":{"df":2,"docs":{"262":{"tf":1.0},"276":{"tf":1.0}}}},"x":{"df":1,"docs":{"36":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"100":{"tf":3.1622776601683795},"272":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":42,"docs":{"100":{"tf":4.358898943540674},"101":{"tf":3.0},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"27":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":4.47213595499958},"277":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"81":{"tf":1.0},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":2.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"272":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":18,"docs":{"12":{"tf":1.0},"263":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":1,"docs":{"43":{"tf":4.795831523312719}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"261":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":26,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"64":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"272":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":3.4641016151377544}},"e":{"'":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"263":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"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":{},"e":{"df":0,"docs":{},"v":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":14,"docs":{"118":{"tf":1.0},"23":{"tf":1.7320508075688772},"262":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"9":{"6":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"a":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"42":{"tf":1.0},"49":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"71":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"53":{"tf":1.0}}}}},"df":1,"docs":{"10":{"tf":1.0}},"e":{"df":4,"docs":{"16":{"tf":1.0},"276":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"262":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"17":{"tf":1.0},"23":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"262":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":3.3166247903554},"272":{"tf":1.0},"43":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":3,"docs":{"18":{"tf":1.0},"36":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"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":{"275":{"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":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.4641016151377544}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"260":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"99":{"tf":3.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":2.0},"99":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":2.23606797749979},"48":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}}},"df":43,"docs":{"101":{"tf":3.872983346207417},"102":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"11":{"tf":3.7416573867739413},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"272":{"tf":3.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":2.6457513110645907},"276":{"tf":2.6457513110645907},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"t":{"df":6,"docs":{"47":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"105":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"100":{"tf":3.7416573867739413},"276":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":84,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"49":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":2.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"9":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"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":{},"r":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{"_":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"254":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"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":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":21,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":3.7416573867739413},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"275":{"tf":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":{"275":{"tf":3.1622776601683795}}},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"254":{"tf":1.4142135623730951},"51":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"101":{"tf":3.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":3.872983346207417},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.8284271247461903},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"'":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"df":1,"docs":{"65":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"140":{"tf":1.0},"159":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"11":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"252":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":2.0},"66":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":3.4641016151377544},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":2.449489742783178}},"e":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"278":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"13":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":7,"docs":{"263":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":7,"docs":{"256":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"71":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"263":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"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":{},"x":{".":{"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":{"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"262":{"tf":1.0}}}}},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"261":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"tf":1.4142135623730951}}}}}},"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":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"79":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":11,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"236":{"tf":1.0},"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":2,"docs":{"275":{"tf":1.0},"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":3.1622776601683795},"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"124":{"tf":1.0},"20":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"276":{"tf":5.291502622129181},"46":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.7320508075688772},"263":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":2.0},"82":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"77":{"tf":1.0},"80":{"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":3,"docs":{"20":{"tf":1.0},"36":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"267":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.4641016151377544}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"113":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"48":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"\\":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":2.6457513110645907}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"262":{"tf":2.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"138":{"tf":1.0},"257":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{":":{"3":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"7":{"7":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"3":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"75":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"1":{"df":0,"docs":{},"t":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"1":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"33":{"tf":1.0},"34":{"tf":3.7416573867739413}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"10":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"29":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.0},"84":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":2.0},"255":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"267":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"263":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":3.4641016151377544},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"272":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"262":{"tf":1.0},"263":{"tf":2.0},"35":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"236":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":3.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"[":{"df":0,"docs":{},"t":{"df":5,"docs":{"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951}}}},"\\":{"_":{"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":{"33":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"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":{"114":{"tf":1.4142135623730951},"259":{"tf":1.0}}}}}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":3.872983346207417},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"33":{"tf":3.1622776601683795},"34":{"tf":4.123105625617661},"36":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":3,"docs":{"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.7320508075688772},"36":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"66":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":2.8284271247461903}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"74":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"18":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"u":{"df":6,"docs":{"20":{"tf":1.0},"37":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.7320508075688772},"52":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":3.3166247903554}},"e":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":39,"docs":{"100":{"tf":3.605551275463989},"101":{"tf":1.7320508075688772},"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":3.7416573867739413},"221":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"n":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":3,"docs":{"20":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"176":{"tf":1.0},"188":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"35":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"278":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"176":{"tf":1.0}}}}},"r":{"a":{"df":2,"docs":{"263":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.7320508075688772}}}},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"34":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"28":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"71":{"tf":2.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"df":10,"docs":{"27":{"tf":3.1622776601683795},"30":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"n":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"73":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"65":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"251":{"tf":1.0},"256":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"277":{"tf":2.449489742783178},"44":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":39,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"80":{"tf":1.0}}}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":1.0},"277":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"12":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.4142135623730951},"145":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951}},"l":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"12":{"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":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"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":2,"docs":{"13":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"100":{"tf":4.795831523312719},"101":{"tf":3.605551275463989},"102":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.0},"21":{"tf":1.0}}}}}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"263":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"11":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}},"g":{"a":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":2.449489742783178},"41":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.8284271247461903},"96":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"65":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":2.449489742783178}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"262":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"27":{"tf":2.23606797749979},"32":{"tf":1.0}},"e":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"20":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"34":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":127,"docs":{"106":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.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}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"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":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":10,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}},"n":{"df":24,"docs":{"100":{"tf":4.242640687119285},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"273":{"tf":2.0},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":7,"docs":{"100":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.4142135623730951},"72":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":2,"docs":{"262":{"tf":1.0},"82":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"22":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"42":{"tf":2.8284271247461903},"43":{"tf":4.795831523312719}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"177":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":3.1622776601683795}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"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":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":2,"docs":{"273":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"(":{"b":{")":{"+":{"2":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{")":{"+":{"1":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":2.0}}},"2":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"f":{")":{"+":{"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"27":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"b":{")":{")":{"+":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{")":{")":{"+":{"1":{"df":1,"docs":{"32":{"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":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":2.0}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"+":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\\":{"_":{"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":{"33":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"36":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.4142135623730951}},"l":{"df":3,"docs":{"278":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"39":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":3,"docs":{"267":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"44":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":3.4641016151377544},"105":{"tf":1.4142135623730951},"189":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"79":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":1,"docs":{"79":{"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":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"0":{"0":{"0":{"5":{"df":1,"docs":{"100":{"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"8":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"/":{"5":{"9":{"2":{"3":{"9":{"6":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":27,"docs":{"101":{"tf":2.0},"109":{"tf":1.4142135623730951},"13":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":2.0},"38":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":2.23606797749979},"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":2.0},"11":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"73":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":1,"docs":{"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":3.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"262":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"251":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"53":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"100":{"tf":2.23606797749979},"27":{"tf":2.0},"69":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.449489742783178},"95":{"tf":2.449489742783178}}}},"i":{"c":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"237":{"tf":1.0},"252":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"101":{"tf":2.8284271247461903},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"105":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}},"r":{"df":2,"docs":{"22":{"tf":1.0},"271":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"80":{"tf":1.0}}}}}}}}}},"f":{"a":{"c":{"df":6,"docs":{"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"278":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"267":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":3.605551275463989}}}}},"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":{"100":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"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":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":2.23606797749979}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"'":{"df":19,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"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":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":4.242640687119285},"44":{"tf":1.0},"99":{"tf":4.123105625617661}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"169":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"266":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"k":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"206":{"tf":1.0},"207":{"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":{},"p":{"df":4,"docs":{"100":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":2.8284271247461903}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":51,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"11":{"tf":3.7416573867739413},"12":{"tf":3.872983346207417},"13":{"tf":2.449489742783178},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"38":{"tf":2.6457513110645907},"43":{"tf":3.1622776601683795},"44":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":2.23606797749979},"77":{"tf":2.0},"80":{"tf":2.8284271247461903},"81":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":5.477225575051661}},"s":{".":{"df":0,"docs":{},"m":{"d":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":2.449489742783178},"27":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"263":{"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":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"42":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"\\":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"71":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"272":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":2.449489742783178},"24":{"tf":2.0},"37":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.0}}},"v":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":3,"docs":{"27":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"104":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":2.0},"104":{"tf":1.4142135623730951},"114":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"265":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"t":{"'":{"df":3,"docs":{"276":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":1,"docs":{"34":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":2.23606797749979},"97":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":2.0},"115":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"183":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"104":{"tf":1.0}}},"k":{"df":4,"docs":{"27":{"tf":2.0},"35":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"54":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"275":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":2,"docs":{"272":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"272":{"tf":2.23606797749979},"63":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"1":{"6":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"104":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"82":{"tf":1.0},"97":{"tf":1.0}},"i":{"c":{"df":6,"docs":{"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"36":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"262":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"75":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"w":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"154":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"75":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"12":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"28":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"98":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"262":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"267":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"9":{"9":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"184":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"179":{"tf":1.0},"277":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"8":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"275":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.0},"262":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.449489742783178},"102":{"tf":1.0},"103":{"tf":2.449489742783178},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795},"99":{"tf":3.3166247903554}}},"y":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":3.4641016151377544}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"80":{"tf":1.0}}},"g":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"64":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":2.449489742783178},"11":{"tf":1.0},"13":{"tf":2.0},"153":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":2.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":2,"docs":{"278":{"tf":1.0},"279":{"tf":1.0}}},"u":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"64":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"df":4,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"277":{"tf":1.0},"77":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"11":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":3.0},"36":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"273":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"71":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":2,"docs":{"274":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":2.23606797749979}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":2,"docs":{"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"+":{"1":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"153":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"258":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":2,"docs":{"30":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"0":{"1":{"9":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"0":{"tf":2.0},"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"#":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"21":{"tf":1.0},"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"d":{"df":20,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.4142135623730951},"64":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":1,"docs":{"261":{"tf":1.0}}},"p":{"#":{"0":{"0":{"0":{"6":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"168":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"_":{"a":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":17,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"231":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"54":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":2.23606797749979},"38":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":5.477225575051661},"44":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772},"75":{"tf":2.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"71":{"tf":2.0},"99":{"tf":1.4142135623730951}},"e":{"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"29":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"42":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"h":{"df":2,"docs":{"23":{"tf":1.0},"70":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"275":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"30":{"tf":2.0},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":2.449489742783178},"255":{"tf":1.0}}}},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}},"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":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"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":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"43":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"l":{"d":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":2.0}}}}},"n":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":{},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"100":{"tf":1.0},"273":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}},"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":1.0},"18":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":12,"docs":{"101":{"tf":1.7320508075688772},"11":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"77":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"73":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"[":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"r":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"255":{"tf":1.0},"29":{"tf":1.0},"64":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":2.23606797749979},"29":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"53":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"29":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}}}}},"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":5,"docs":{"64":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":2.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"100":{"tf":3.605551275463989},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"9":{"0":{"0":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"23":{"tf":1.0},"263":{"tf":1.0}}}},"df":6,"docs":{"168":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"277":{"tf":3.1622776601683795}}},"df":0,"docs":{}}},"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":2.0},"277":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"54":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.4142135623730951}}}},"i":{"d":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":6.928203230275509},"101":{"tf":3.605551275463989},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":3.0},"105":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"t":{"df":7,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"273":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"272":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"17":{"tf":1.4142135623730951},"41":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"77":{"tf":1.0}}}}},"t":{"df":2,"docs":{"10":{"tf":1.0},"74":{"tf":1.0}}}},"y":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"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":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"4":{"4":{"8":{"d":{"8":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"f":{"a":{"4":{"4":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":33,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.7320508075688772},"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":5.830951894845301},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"27":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":5.385164807134504},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"277":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"34":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"9":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"251":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"96":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"71":{"tf":1.0}},"s":{"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{",":{"5":{"df":0,"docs":{},"e":{"7":{"3":{"d":{"4":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}}},"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":{"27":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"277":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"277":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"262":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":2.0},"48":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.0},"58":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"49":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"v":{"(":{"b":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"28":{"tf":1.0},"36":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":14,"docs":{"101":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":2,"docs":{"93":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"262":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":22,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":3.605551275463989},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"21":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":8.12403840463596},"102":{"tf":1.0},"179":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"100":{"tf":3.1622776601683795},"233":{"tf":1.0},"234":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"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":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"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":{},"f":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"82":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":1,"docs":{"100":{"tf":5.744562646538029}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"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":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":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":2.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"235":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"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":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"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":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"267":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":4,"docs":{"265":{"tf":2.0},"27":{"tf":1.0},"272":{"tf":1.0},"30":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"101":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}},"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":{"107":{"tf":1.4142135623730951}}}}}}},"df":19,"docs":{"0":{"tf":2.23606797749979},"107":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"i":{"d":{"df":14,"docs":{"101":{"tf":2.23606797749979},"12":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}},"u":{"b":{"df":14,"docs":{"12":{"tf":2.0},"13":{"tf":2.0},"277":{"tf":2.449489742783178},"53":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":2.449489742783178}}}}}},"df":9,"docs":{"249":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":12,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"249":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"249":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"103":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"df":1,"docs":{"34":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"4":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"0":{"tf":1.0},"101":{"tf":2.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"48":{"tf":1.0},"79":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"19":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"64":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":45,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.8284271247461903},"18":{"tf":1.0},"23":{"tf":2.23606797749979},"251":{"tf":2.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.449489742783178},"263":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":4.795831523312719},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":3.7416573867739413},"77":{"tf":2.0},"78":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":3.0},"83":{"tf":2.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.8284271247461903},"94":{"tf":3.0},"95":{"tf":3.1622776601683795},"96":{"tf":3.605551275463989}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":20,"docs":{"11":{"tf":1.0},"168":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0}},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":24,"docs":{"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.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":2.0},"65":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"75":{"tf":1.0},"80":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":13,"docs":{"122":{"tf":1.7320508075688772},"164":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"263":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"277":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":2.449489742783178}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":2.0},"101":{"tf":3.4641016151377544},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":4.242640687119285},"99":{"tf":3.872983346207417}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":2.449489742783178},"105":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.449489742783178}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"178":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"27":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"71":{"tf":2.0},"75":{"tf":1.0}}}},"i":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"64":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"42":{"tf":1.0},"70":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":22,"docs":{"12":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"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},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"(":{"d":{"df":2,"docs":{"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"83":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"80":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"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":1,"docs":{"263":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}},":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"df":24,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}},"t":{"df":1,"docs":{"220":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"50":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":23,"docs":{"100":{"tf":3.7416573867739413},"101":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":4.58257569495584}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"75":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":2,"docs":{"263":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"143":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":2.0},"268":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"263":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}},"k":{"df":1,"docs":{"265":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"267":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"18":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"23":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"p":{"c":{"df":4,"docs":{"101":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"n":{"df":4,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"75":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"87":{"tf":1.0},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"272":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"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.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"82":{"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":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"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":{"77":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"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":121,"docs":{"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.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}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"0":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"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":31,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":2.23606797749979},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.7320508075688772},"34":{"tf":2.8284271247461903},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.0},"80":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"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":16,"docs":{"273":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"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":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"265":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"259":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.0},"260":{"tf":1.0},"29":{"tf":1.4142135623730951},"35":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"103":{"tf":1.0},"38":{"tf":1.0}}},"df":20,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":2.449489742783178},"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"277":{"tf":1.7320508075688772}}},"l":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"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":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"101":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"29":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}},"t":{"df":5,"docs":{"161":{"tf":1.0},"168":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"18":{"tf":1.0},"242":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":2.23606797749979},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":3,"docs":{"103":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"[":{"df":0,"docs":{},"v":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":20,"docs":{"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":2.0},"37":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"137":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"29":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"55":{"tf":1.0},"65":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":2.6457513110645907},"40":{"tf":1.0},"54":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":16,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"37":{"tf":2.0},"38":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"67":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"263":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"97":{"tf":1.0}}}}},"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951},"92":{"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":4,"docs":{"38":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"18":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"11":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"251":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.7320508075688772},"29":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":2.449489742783178},"36":{"tf":2.0},"42":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"263":{"tf":1.0},"267":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"34":{"tf":1.0},"42":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"20":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"3":{"0":{"0":{"0":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":3.3166247903554}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":3.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"22":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":91,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.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},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":2.0}},"i":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"265":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"180":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"]":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"265":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"100":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"29":{"tf":2.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":13,"docs":{"1":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"275":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":20,"docs":{"12":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"263":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"122":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"263":{"tf":1.0},"272":{"tf":1.0},"43":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"101":{"tf":1.0},"11":{"tf":3.1622776601683795},"122":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"101":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"101":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"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":{"142":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"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":1,"docs":{"97":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"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":{"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":19,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"21":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":2.0},"104":{"tf":3.7416573867739413},"109":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"277":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"28":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"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}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"38":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":3.1622776601683795},"36":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"m":{"(":{"[":{"(":{"1":{"df":2,"docs":{"261":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"16":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":9,"docs":{"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"46":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":1,"docs":{"265":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"272":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"_":{"1":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}},"2":{"df":1,"docs":{"34":{"tf":3.1622776601683795}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"100":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.23606797749979},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"271":{"tf":1.0}}}}}}},"b":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":1,"docs":{"259":{"tf":1.0}}},"df":7,"docs":{"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"27":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"83":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":2.8284271247461903},"97":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"43":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"i":{"df":2,"docs":{"16":{"tf":1.0},"20":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"271":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"27":{"tf":1.0},"34":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"18":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"105":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"u":{"df":4,"docs":{"261":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":2.0},"50":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"l":{"a":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":4,"docs":{"267":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"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":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"127":{"tf":1.0},"21":{"tf":2.0},"24":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"273":{"tf":2.8284271247461903},"274":{"tf":2.0},"275":{"tf":3.0},"276":{"tf":3.605551275463989},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"p":{"df":7,"docs":{"27":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}}}}}}}},"df":17,"docs":{"11":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":2.0},"277":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":3.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}},"y":{"[":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"231":{"tf":1.0},"263":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"276":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"278":{"tf":1.0},"37":{"tf":3.872983346207417},"38":{"tf":3.7416573867739413},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":2.8284271247461903},"42":{"tf":3.1622776601683795},"43":{"tf":7.211102550927978},"44":{"tf":2.8284271247461903},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":2.0},"73":{"tf":2.0},"75":{"tf":3.872983346207417},"76":{"tf":2.23606797749979},"77":{"tf":3.4641016151377544},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"50":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":22,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"154":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"259":{"tf":1.0},"268":{"tf":2.0}}},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"259":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":6,"docs":{"19":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":37,"docs":{"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":3.1622776601683795},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}},"p":{"df":1,"docs":{"80":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"44":{"tf":1.0},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"18":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"x":{".":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"44":{"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":7,"docs":{"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}}}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"56":{"tf":1.0},"59":{"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":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"df":3,"docs":{"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":145,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"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},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"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.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"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},"275":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"97":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":2.6457513110645907},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"110":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":8.426149773176359},"101":{"tf":3.0},"102":{"tf":2.0},"103":{"tf":3.1622776601683795},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"123":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"79":{"tf":1.7320508075688772},"83":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":5.385164807134504}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":6,"docs":{"257":{"tf":1.0},"263":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"262":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":3,"docs":{"258":{"tf":2.0},"260":{"tf":1.0},"80":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"13":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"237":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"252":{"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":2,"docs":{"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"56":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"30":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"96":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"263":{"tf":1.0},"273":{"tf":1.0},"41":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"163":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.0}}}},"df":44,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"105":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":2.0},"137":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":2.0},"44":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":3.0},"99":{"tf":2.8284271247461903}},"e":{"d":{"_":{"df":0,"docs":{},"g":{"a":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"50":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"38":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"8":{"/":{"1":{"6":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"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":{"42":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"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":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":2.0}}}},"df":0,"docs":{}}}},"[":{"df":0,"docs":{},"t":{"]":{"[":{"df":0,"docs":{},"j":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":1,"docs":{"265":{"tf":2.0}}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"[":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.4142135623730951}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":2.8284271247461903},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"27":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":3.0},"44":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772},"96":{"tf":2.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"75":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":4.358898943540674}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"260":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"e":{"c":{"<":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"s":{"df":0,"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":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"8":{"df":5,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"122":{"tf":1.0},"42":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"36":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"263":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"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":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":4.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"277":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}},"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":50,"docs":{"136":{"tf":1.0},"175":{"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.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}}}}},"df":5,"docs":{"100":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"251":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}}}},"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":{"276":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"175":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"49":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"10":{"tf":1.0}}},"y":{"df":8,"docs":{"103":{"tf":1.0},"21":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"b":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"274":{"tf":2.23606797749979},"276":{"tf":3.4641016151377544}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"v":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"94":{"tf":1.0}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"262":{"tf":1.0},"33":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":1.0},"54":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"64":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":2.23606797749979},"12":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.7320508075688772},"43":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"t":{"c":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"276":{"tf":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":{"276":{"tf":3.7416573867739413}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.0},"23":{"tf":1.0},"275":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":11,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":2.0},"98":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.605551275463989}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"\\":{"d":{"]":{"+":{"\\":{".":{")":{"*":{"(":{"[":{"a":{"df":1,"docs":{"8":{"tf":1.0}}},"df":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":{"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"27":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"71":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"250":{"tf":1.0}}}}}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"247":{"tf":1.0}},"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"141":{"tf":1.0},"148":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"55":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}},"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":{"95":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"36":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"189":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"46":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"244":{"tf":1.0},"275":{"tf":1.0},"71":{"tf":1.0},"79":{"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":{"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"75":{"tf":1.0}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"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":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"240":{"tf":1.0},"255":{"tf":1.0},"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"150":{"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":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"x":{"df":1,"docs":{"276":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"257":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"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":{"114":{"tf":1.0}}}}}}}}},"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"273":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"168":{"tf":1.0},"262":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"147":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"146":{"tf":1.0},"152":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"279":{"tf":1.0}}}}}}},"g":{"a":{"df":3,"docs":{"166":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"_":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"259":{"tf":1.0},"260":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"273":{"tf":1.0},"277":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"186":{"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":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"232":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":3,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"268":{"tf":1.0}}}}},"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":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"24":{"tf":1.0},"45":{"tf":1.0},"87":{"tf":1.0},"88":{"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":{"120":{"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":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"2":{"5":{"6":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"92":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"210":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"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":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"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":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"21":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}}}},"p":{"df":1,"docs":{"9":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"1":{"6":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"121":{"tf":1.0},"22":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"243":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"s":{"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":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"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":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/specs/README.md b/specs/README.md index 571ae39c2..d12c1ea7b 100644 --- a/specs/README.md +++ b/specs/README.md @@ -8,4 +8,8 @@ For the overview of the NEAR Protocol, read the following documents in numerical 3. [Architecture](Architecture.md) 4. [Chain specification](ChainSpec/README.md) 5. [Runtime specification](RuntimeSpec/README.md) -6. [Economics](Economics/README.md) \ No newline at end of file +6. [Economics](Economics/README.md) + +## Standards + +Standards such as Fungible Token Standard can be found in [Standards](Standards/README.md) page. diff --git a/specs/SUMMARY.md b/specs/SUMMARY.md index 3b7b4520e..80702d280 100644 --- a/specs/SUMMARY.md +++ b/specs/SUMMARY.md @@ -41,3 +41,5 @@ - [ExtCostsConfig](GenesisConfig/ExtCostsConfig.md) - [StateRecord](GenesisConfig/StateRecord.md) - [Economics](Economics/README.md) +- [Standards](Standards/README.md) + - [Fungible Token](Standards/Tokens/FungibleToken.md) diff --git a/specs/Standards/README.md b/specs/Standards/README.md new file mode 100644 index 000000000..2e500c052 --- /dev/null +++ b/specs/Standards/README.md @@ -0,0 +1,3 @@ +## Standards + +- [Fungible Token Standard](Tokens/FungibleToken.md) diff --git a/specs/Standards/Tokens/FungibleToken.md b/specs/Standards/Tokens/FungibleToken.md new file mode 100644 index 000000000..7f249df3f --- /dev/null +++ b/specs/Standards/Tokens/FungibleToken.md @@ -0,0 +1,217 @@ +# Fungible Token + +## Summary +[summary]: #summary + +A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration. + +## Motivation +[motivation]: #motivation + +NEAR Protocol uses an asynchronous sharded Runtime. This means the following: + - Storage for different contracts and accounts can be located on the different shards. + - Two contracts can be executed at the same time in different shards. + +While this increases the transaction throughput linearly with the number of shards, it also creates some challenges for cross-contract development. +For example, if one contract wants to query some information from the state of another contract (e.g. current balance), by the time the first contract receive the balance the real balance can change. +It means in the async system, a contract can't rely on the state of other contract and assume it's not going to change. + +Instead the contract can rely on temporary partial lock of the state with a callback to act or unlock, but it requires careful engineering to avoid dead locks. +In this standard we're trying to avoid enforcing locks, since most actions can still be completed without locks by transferring ownership to an escrow account. + +Prior art: +- [ERC-20 standard](https://eips.ethereum.org/EIPS/eip-20) +- NEP#4 NEAR NFT standard: [nearprotocol/neps#4](https://github.com/nearprotocol/neps/pull/4) +- For latest lock proposals see [Safes (#26)](https://github.com/nearprotocol/neps/pull/26) + +## Guide-level explanation +[guide-level-explanation]: #guide-level-explanation + +We should be able to do the following: +- Initialize contract once. The given total supply will be owned by the given account ID. +- Get the total supply. +- Transfer tokens to a new user. +- Set a given allowance for an escrow account ID. + - Escrow will be able to transfer up this allowance from your account. + - Get current balance for a given account ID. +- Transfer tokens from one user to another. +- Get the current allowance for an escrow account on behalf of the balance owner. This should only be used in the UI, since a contract shouldn't rely on this temporary information. + +There are a few concepts in the scenarios above: +- **Total supply**. It's the total number of tokens in circulation. +- **Balance owner**. An account ID that owns some amount of tokens. +- **Balance**. Some amount of tokens. +- **Transfer**. Action that moves some amount from one account to another account. +- **Escrow**. A different account from the balance owner who has permission to use some amount of tokens. +- **Allowance**. The amount of tokens an escrow account can use on behalf of the account owner. + +Note, that the precision is not part of the default standard, since it's not required to perform actions. The minimum +value is always 1 token. + +### Simple transfer + +Alice wants to send 5 wBTC tokens to Bob. + +**Assumptions** + +- The wBTC token contract is `wbtc`. +- Alice's account is `alice`. +- Bob's account is `bob`. +- The precision on wBTC contract is `10^8`. +- The 5 tokens is `5 * 10^8` or as a number is `500000000`. + +**High-level explanation** + +Alice needs to issue one transaction to wBTC contract to transfer 5 tokens (multiplied by precision) to Bob. + +**Technical calls** + +1. `alice` calls `wbtc::transfer({"new_owner_id": "bob", "amount": "500000000"})`. + +### Token deposit to a contract + +Alice wants to deposit 1000 DAI tokens to a compound interest contract to earn extra tokens. + +**Assumptions** + +- The DAI token contract is `dai`. +- Alice's account is `alice`. +- The compound interest contract is `compound`. +- The precision on DAI contract is `10^18`. +- The 1000 tokens is `1000 * 10^18` or as a number is `1000000000000000000000`. +- The compound contract can work with multiple token types. + +**High-level explanation** + +Alice needs to issue 2 transactions. The first one to `dai` to set an allowance for `compound` to be able to withdraw tokens from `alice`. +The second transaction is to the `compound` to start the deposit process. Compound will check that the DAI tokens are supported and will try to withdraw the desired amount of DAI from `alice`. +- If transfer succeeded, `compound` can increase local ownership for `alice` to 1000 DAI +- If transfer fails, `compound` doesn't need to do anything in current example, but maybe can notify `alice` of unsuccessful transfer. + +**Technical calls** + +1. `alice` calls `dai::set_allowance({"escrow_account_id": "compound", "allowance": "1000000000000000000000"})`. +1. `alice` calls `compound::deposit({"token_contract": "dai", "amount": "1000000000000000000000"})`. During the `deposit` call, `compound` does the following: + 1. makes async call `dai::transfer_from({"owner_id": "alice", "new_owner_id": "compound", "amount": "1000000000000000000000"})`. + 1. attaches a callback `compound::on_transfer({"owner_id": "alice", "token_contract": "dai", "amount": "1000000000000000000000"})`. + +### Multi-token swap on DEX + +Charlie wants to exchange his wLTC to wBTC on decentralized exchange contract. Alex wants to buy wLTC and has 80 wBTC. + +**Assumptions** + +- The wLTC token contract is `wltc`. +- The wBTC token contract is `wbtc`. +- The DEX contract is `dex`. +- Charlie's account is `charlie`. +- Alex's account is `alex`. +- The precision on both tokens contract is `10^8`. +- The amount of 9001 wLTC tokens is Alex wants is `9001 * 10^8` or as a number is `900100000000`. +- The 80 wBTC tokens is `80 * 10^8` or as a number is `8000000000`. +- Charlie has 1000000 wLTC tokens which is `1000000 * 10^8` or as a number is `100000000000000` +- Dex contract already has an open order to sell 80 wBTC tokens by `alex` towards 9001 wLTC. +- Without Safes implementation, DEX has to act as an escrow and hold funds of both users before it can do an exchange. + +**High-level explanation** + +Let's first setup open order by Alex on DEX. It's similar to `Token deposit to a contract` example above. +- Alex sets an allowance on wBTC to DEX +- Alex calls deposit on Dex for wBTC. +- Alex calls DEX to make an new sell order. + +Then Charlie comes and decides to fulfill the order by selling his wLTC to Alex on DEX. +Charlie calls the DEX +- Charlie sets the allowance on wLTC to DEX +- Alex calls deposit on Dex for wLTC. +- Then calls DEX to take the order from Alex. + +When called, DEX makes 2 async transfers calls to exchange corresponding tokens. +- DEX calls wLTC to transfer tokens DEX to Alex. +- DEX calls wBTC to transfer tokens DEX to Charlie. + +**Technical calls** + +1. `alex` calls `wbtc::set_allowance({"escrow_account_id": "dex", "allowance": "8000000000"})`. +1. `alex` calls `dex::deposit({"token": "wbtc", "amount": "8000000000"})`. + 1. `dex` calls `wbtc::transfer_from({"owner_id": "alex", "new_owner_id": "dex", "amount": "8000000000"})` +1. `alex` calls `dex::trade({"have": "wbtc", "have_amount": "8000000000", "want": "wltc", "want_amount": "900100000000"})`. +1. `charlie` calls `wltc::set_allowance({"escrow_account_id": "dex", "allowance": "100000000000000"})`. +1. `charlie` calls `dex::deposit({"token": "wltc", "amount": "100000000000000"})`. + 1. `dex` calls `wltc::transfer_from({"owner_id": "charlie", "new_owner_id": "dex", "amount": "100000000000000"})` +1. `charlie` calls `dex::trade({"have": "wltc", "have_amount": "900100000000", "want": "wbtc", "want_amount": "8000000000"})`. + - `dex` calls `wbtc::transfer({"new_owner_id": "charlie", "amount": "8000000000"})` + - `dex` calls `wltc::transfer({"new_owner_id": "alex", "amount": "900100000000"})` + + +## Reference-level explanation +[reference-level-explanation]: #reference-level-explanation + +The full implementation in Rust can be found there: https://github.com/nearprotocol/near-sdk-rs/blob/master/examples/fungible-token/src/lib.rs + +**NOTES:** +- All amounts, balances and allowance are limited by U128 (max value `2**128 - 1`). +- Token standard uses JSON for serialization of arguments and results. +- Amounts in arguments and results have are serialized as Base-10 strings, e.g. `"100"`. This is done to avoid +JSON limitation of max integer value of `2**53`. + +Interface: + +```rust +/******************/ +/* CHANGE METHODS */ +/******************/ + +/// Sets the `allowance` for `escrow_account_id` on the account of the caller of this contract +/// (`predecessor_id`) who is the balance owner. +pub fn set_allowance(&mut self, escrow_account_id: AccountId, allowance: U128); + +/// Transfers the `amount` of tokens from `owner_id` to the `new_owner_id`. +/// Requirements: +/// * `amount` should be a positive integer. +/// * `owner_id` should have balance on the account greater or equal than the transfer `amount`. +/// * If this function is called by an escrow account (`owner_id != predecessor_account_id`), +/// then the allowance of the caller of the function (`predecessor_account_id`) on +/// the account of `owner_id` should be greater or equal than the transfer `amount`. +pub fn transfer_from(&mut self, owner_id: AccountId, new_owner_id: AccountId, amount: U128); + + +/// Transfer `amount` of tokens from the caller of the contract (`predecessor_id`) to +/// `new_owner_id`. +/// Act the same was as `transfer_from` with `owner_id` equal to the caller of the contract +/// (`predecessor_id`). +pub fn transfer(&mut self, new_owner_id: AccountId, amount: U128); + +/****************/ +/* VIEW METHODS */ +/****************/ + +/// Returns total supply of tokens. +pub fn get_total_supply(&self) -> U128; + +/// Returns balance of the `owner_id` account. +pub fn get_balance(&self, owner_id: AccountId) -> U128; + +/// Returns current allowance of `escrow_account_id` for the account of `owner_id`. +/// +/// NOTE: Other contracts should not rely on this information, because by the moment a contract +/// receives this information, the allowance may already be changed by the owner. +/// So this method should only be used on the front-end to see the current allowance. +pub fn get_allowance(&self, owner_id: AccountId, escrow_account_id: AccountId) -> U128; +``` + +## Drawbacks +[drawbacks]: #drawbacks + +- Current interface doesn't have minting, precision (decimals), naming. But it should be done as extensions, e.g. a Precision extension. +- It's not possible to exchange tokens without transferring them to escrow first. +- It's not possible to transfer tokens to a contract with a single transaction without setting the allowance first. +It should be possible if we introduce `transfer_with` function that transfers tokens and calls escrow contract. It needs to handle result of the execution and contracts have to be aware of this API. + + +## Future possibilities +[future-possibilities]: #future-possibilities + +- Support for multiple token types +- Minting and burning +- Precision, naming and short token name.