$@
-
-lunr.min.js: lunr.js
- ${UGLIFYJS} --compress --mangle --comments < $< > $@
-
-%.json: build/%.json.template
- cat $< | sed "s/@VERSION/${VERSION}/" > $@
-
-size: lunr.min.js
- @gzip -c lunr.min.js | wc -c
-
-server:
- ${NODE} server.js ${SERVER_PORT}
-
-test: node_modules
- @./test/runner.sh ${TEST_PORT}
-
-docs: node_modules
- ${DOX} < lunr.js | ${DOX_TEMPLATE} -n lunr.js -r ${VERSION} > docs/index.html
-
-clean:
- rm -f lunr{.min,}.js
- rm *.json
- rm example/example_index.json
-
-reset:
- git checkout lunr.* *.json docs/index.html example/example_index.json
-
-example: lunr.min.js
- ${NODE} example/index_builder.js
-
-node_modules: package.json
- ${NPM} -s install
-
-.PHONY: test clean docs reset example
diff --git a/public/browse/lib/lunr.js/README.mdown b/public/browse/lib/lunr.js/README.mdown
deleted file mode 100644
index 5fcbb2794c..0000000000
--- a/public/browse/lib/lunr.js/README.mdown
+++ /dev/null
@@ -1,63 +0,0 @@
-# Lunr.js
-
-[![Build Status](https://travis-ci.org/olivernn/lunr.js.png?branch=master)](https://travis-ci.org/olivernn/lunr.js)
-
-A bit like Solr, but much smaller and not as bright.
-
-## Example
-
-A very simple search index can be created using the following:
-
-```javascript
-var idx = lunr(function () {
- this.field('title', { boost: 10 })
- this.field('body')
-})
-```
-
-Adding documents to be indexed is as simple as:
-
-```javascript
-var doc = {
- "title": "Twelfth-Night",
- "body": "If music be the food of love, play on: Give me excess of it…",
- "author": "William Shakespeare",
- "id": 1
-}
-idx.add(doc)
-```
-
-Then searching is as simple:
-
-```javascript
-idx.search("love")
-```
-
-This returns a list of matching documents with a score of how closely they match the search query:
-
-```javascript
-[{
- "ref": 1,
- "score": 0.87533
-}]
-```
-
-[API documentation](http://lunrjs.com/docs) is available, as well as a full working example.
-
-## Description
-
-Lunr.js is a small, full-text search library for use in the browser. It indexes JSON documents and provides a simple search interface for retrieving documents that best match text queries.
-
-## Why
-
-For web applications with all their data already sitting in the client, it makes sense to be able to search that data on the client too. It saves adding extra, compacted services on the server. A local search index will be quicker, there is no network overhead, and will remain available and useable even without a network connection.
-
-## Installation
-
-Simply include the lunr.js source file in the page that you want to use it. Lunr.js is supported in all modern browsers.
-
-Browsers that do not support ES5 will require a JavaScript shim for Lunr to work. You can either use [Augment.js](https://github.com/olivernn/augment.js), [ES5-Shim](https://github.com/kriskowal/es5-shim) or any library that patches old browsers to provide an ES5 compatible JavaScript environment.
-
-## Contributing
-
-See the [`CONTRIBUTING.mdown` file](CONTRIBUTING.mdown).
diff --git a/public/browse/lib/lunr.js/VERSION b/public/browse/lib/lunr.js/VERSION
deleted file mode 100644
index b49b25336d..0000000000
--- a/public/browse/lib/lunr.js/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-0.5.6
diff --git a/public/browse/lib/lunr.js/bower.json b/public/browse/lib/lunr.js/bower.json
deleted file mode 100644
index b2e2b31d23..0000000000
--- a/public/browse/lib/lunr.js/bower.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "name": "lunr.js",
- "version": "0.5.6",
- "main": "lunr.js",
- "ignore": [
- "tests/",
- "perf/",
- "build/",
- "docs/"
- ]
-}
diff --git a/public/browse/lib/lunr.js/component.json b/public/browse/lib/lunr.js/component.json
deleted file mode 100644
index ef1a740477..0000000000
--- a/public/browse/lib/lunr.js/component.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "lunr",
- "repo": "olivernn/lunr.js",
- "version": "0.5.6",
- "description": "Simple full-text search in your browser.",
- "license": "MIT",
- "main": "lunr.js",
- "scripts": ["lunr.js"]
-}
diff --git a/public/browse/lib/lunr.js/example/app.js b/public/browse/lib/lunr.js/example/app.js
deleted file mode 100644
index 3a450b9975..0000000000
--- a/public/browse/lib/lunr.js/example/app.js
+++ /dev/null
@@ -1,89 +0,0 @@
-require([
- '/example/jquery.js',
- '/example/mustache.js',
- '../lunr.js',
- 'text!templates/question_view.mustache',
- 'text!templates/question_list.mustache',
- 'text!example_data.json',
- 'text!example_index.json'
-], function (_, Mustache, lunr, questionView, questionList, data, indexDump) {
-
- var renderQuestionList = function (qs) {
- $("#question-list-container")
- .empty()
- .append(Mustache.to_html(questionList, {questions: qs}))
- }
-
- var renderQuestionView = function (question) {
- $("#question-view-container")
- .empty()
- .append(Mustache.to_html(questionView, question))
- }
-
- window.profile = function (term) {
- console.profile('search')
- idx.search(term)
- console.profileEnd('search')
- }
-
- window.search = function (term) {
- console.time('search')
- idx.search(term)
- console.timeEnd('search')
- }
-
- var indexDump = JSON.parse(indexDump)
- console.time('load')
- window.idx = lunr.Index.load(indexDump)
- console.timeEnd('load')
-
- var questions = JSON.parse(data).questions.map(function (raw) {
- return {
- id: raw.question_id,
- title: raw.title,
- body: raw.body,
- tags: raw.tags.join(' ')
- }
- })
-
- renderQuestionList(questions)
- renderQuestionView(questions[0])
-
- $('a.all').bind('click', function () {
- renderQuestionList(questions)
- $('input').val('')
- })
-
- var debounce = function (fn) {
- var timeout
- return function () {
- var args = Array.prototype.slice.call(arguments),
- ctx = this
-
- clearTimeout(timeout)
- timeout = setTimeout(function () {
- fn.apply(ctx, args)
- }, 100)
- }
- }
-
- $('input').bind('keyup', debounce(function () {
- if ($(this).val() < 2) return
- var query = $(this).val()
- var results = idx.search(query).map(function (result) {
- return questions.filter(function (q) { return q.id === parseInt(result.ref, 10) })[0]
- })
-
- renderQuestionList(results)
- }))
-
- $("#question-list-container").delegate('li', 'click', function () {
- var li = $(this)
- var id = li.data('question-id')
-
- renderQuestionView(questions.filter(function (question) {
- return (question.id == id)
- })[0])
- })
-
-})
diff --git a/public/browse/lib/lunr.js/example/example_data.json b/public/browse/lib/lunr.js/example/example_data.json
deleted file mode 100644
index a052edb553..0000000000
--- a/public/browse/lib/lunr.js/example/example_data.json
+++ /dev/null
@@ -1,3016 +0,0 @@
-
-{
- "total": 105507,
- "page": 1,
- "pagesize": 100,
- "questions": [
- {
- "tags": [
- "javascript",
- "jquery",
- "html"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414827/timeline",
- "question_comments_url": "/questions/6414827/comments",
- "question_answers_url": "/questions/6414827/answers",
- "question_id": 6414827,
- "owner": {
- "user_id": 807067,
- "user_type": "unregistered",
- "display_name": "Barcino",
- "reputation": 1,
- "email_hash": "a4aec9f48b0281995da5b2223b3ac213"
- },
- "creation_date": 1308589530,
- "last_activity_date": 1308589530,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Why does my checkbox return the wrong state?",
- "body": "I'm really confused. I have the following:
\n\n<input class=\"check-box\" \n id=\"Data__Correct\" \n name=\"Data.Correct\" \n type=\"checkbox\" value=\"Data.Correct\" />\n
\n\nWhen I put a check in the checkbox and check with fiddler I see it's sending back:
\n\nData.Correct False\n
\n\nI thought it should be the other way around. What's happening?
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "jquery",
- "html",
- "div"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6414808,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6414614/timeline",
- "question_comments_url": "/questions/6414614/comments",
- "question_answers_url": "/questions/6414614/answers",
- "question_id": 6414614,
- "owner": {
- "user_id": 798662,
- "user_type": "registered",
- "display_name": "Eric",
- "reputation": 161,
- "email_hash": "25601fc3740f83926598cc89dc604e5f"
- },
- "creation_date": 1308588228,
- "last_edit_date": 1308589468,
- "last_activity_date": 1308589468,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 31,
- "score": 0,
- "community_owned": false,
- "title": "Fairly easy JQuery Input Selection location problem",
- "body": "I am having a problem with getting my JQuery javascript code to apply to the select box elements that it is supposed to. What's happening is that the select boxes are not following the actions that are specified in the javascript code. They are simply staying disabled and checked (see code below) instead of changing based on the first checkbox's selection.
\n\nI believe it is a problem regarding how I specify the location of the select boxes in the javascript code, but I don't know how to go about fixing it. Then again, I could be wrong about that too.
\n\nIf you have any insight on this or can correct the code, please do! Cheers.
\n\n \n\nHTML: \n\n<div class=\"medium_box\">\n <form name=\"searchform\" class=\"FECKsearch\" method=\"get\" onSubmit=\"return dosearch();\">\n <input name=\"s\" id=\"searchBox\" class=\"input\" type=\"text\" value=\"\" onfocus=\"myFocusHandler(this);\" onblur=\"myBlurHandler(this);\" size=\"18\" maxlength=\"50\">\n <input type=\"submit\" name=\"searchsubmit\" class=\"button\" value=\"Go\" />\n\n <span class=\"searcher\">International: <input type=\"checkbox\" id=\"International\" checked=\"yes\"></input></span>\n <span class=\"searcher1\">Americas: <input type=\"checkbox\" id=\"Americas\" disabled checked=\"yes\"></input></span>\n <span class=\"searcher1\">Europe: <input type=\"checkbox\" id=\"Europe\" disabled checked=\"yes\"></input></span>\n Asia: <input type=\"checkbox\" id=\"Asia\" disabled checked=\"yes\"></input>\n </form> \n</div>\n
\n\nJavascript: \n\n$('#International').click(function() {\nvar paramChangeBoxes = $('input:checkbox');\nif ($(this).is(':checked')) {\n $('#Americas').attr('checked', 'checked');\n $('#Americas').attr('disabled', 'disabled');\n $('#Europe').attr('checked', 'checked');\n $('#Europe').attr('disabled', 'disabled');\n $('#Asia').attr('checked', 'checked');\n $('#Asia').attr('disabled', 'disabled');\n}\nelse {\n paramChangeBoxes.removeAttr('disabled');\n $('#Americas').removeAttr('disabled');\n $('#Europe').removeAttr('disabled');\n $('#Asia').removeAttr('disabled');\n\n }\n});\n
\n\n \n\nUpdate & Solution: \n\nCheers to John for the code $('#International').live(\"click\",function() {
which corrected the error of the JQuery code not functioning. Apparently if you are importing the code from a remote file you must include the \"live\" portion inside of your coding.
\n\nThanks again John!
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "file-upload"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "bounty_closes_date": 1308660760,
- "bounty_amount": 50,
- "question_timeline_url": "/questions/6296451/timeline",
- "question_comments_url": "/questions/6296451/comments",
- "question_answers_url": "/questions/6296451/answers",
- "question_id": 6296451,
- "owner": {
- "user_id": 393751,
- "user_type": "registered",
- "display_name": "ibhbuhbuhb",
- "reputation": 92,
- "email_hash": "2a06a2827b2baa70da6c7ac35acfcb5e"
- },
- "creation_date": 1307638388,
- "last_edit_date": 1308056144,
- "last_activity_date": 1308589363,
- "up_vote_count": 7,
- "down_vote_count": 0,
- "view_count": 212,
- "score": 7,
- "community_owned": false,
- "title": "problem in file upload",
- "body": "I have the following markup:
\n\n <select multiple=\"multiple\" id=\"targetFilesList\" style=\"width:200px;height:110px;\">\n </select>\n <input type=\"button\" value=\"Get\" id=\"btnGet\" />\n
\n\nand following javascript:
\n\n $(function()\n {\n $('#btnGet').click(function()\n {\n var fileupload = $(\"<input type='file' name='filetoupload' style='visibility:hidden;'/>\");\n $('body').append(fileupload);\n\n fileupload[0].onchange = function()\n {\n $('#targetFilesList').append('<option >' + fileupload.val() + '</option>');\n return false;\n }\n fileupload.click();\n });\n });\n
\n\nScenario is that i have to upload multiple files and once user has chosen the file to be uploaded i have to show the file name to user.Then,on submitting the form i will upload all the files.For this,on clicking the get button i am adding a fileupload control dynamically\nand initialise onchange event of the fileupload control just added. The problem in chrome 12 on clicking get button fileupload control does not get opened but in firefox4 and ie8 it is working.\nAny idea why?
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "facebook",
- "twitter",
- "share"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414782/timeline",
- "question_comments_url": "/questions/6414782/comments",
- "question_answers_url": "/questions/6414782/answers",
- "question_id": 6414782,
- "owner": {
- "user_id": 807063,
- "user_type": "unregistered",
- "display_name": "ponens",
- "reputation": 6,
- "email_hash": "28f14a601696f114e84c5be712032c73"
- },
- "creation_date": 1308589336,
- "last_activity_date": 1308589336,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 3,
- "score": 1,
- "community_owned": false,
- "title": "Provide link/Redirect after a 'Like' or 'Share' on Facebook or a 'Share' on Twitter",
- "body": "basically what I want to do is forward people to a download link once they either 'like' my page on Facebook or post a link of the page to their profile (whatever is easier) and something similar for Twitter.
\n\nI have seen some bands do this when promoting a free download — to download the new song you must post this to your profile etc.
\n\nAnybody know how I could go about this? (This isn't a 'can you do it for me' question, I just need a point in the right direction regarding API's or any examples)
\n\nThanks.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 8,
- "accepted_answer_id": 6412781,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412607/timeline",
- "question_comments_url": "/questions/6412607/comments",
- "question_answers_url": "/questions/6412607/answers",
- "question_id": 6412607,
- "owner": {
- "user_id": 256439,
- "user_type": "registered",
- "display_name": "Sandra Schlichting",
- "reputation": 1327,
- "email_hash": "c4b17df9c9b2f33a96eb84f92054f708"
- },
- "creation_date": 1308579341,
- "last_edit_date": 1308586824,
- "last_activity_date": 1308589242,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 67,
- "score": 2,
- "community_owned": false,
- "title": "Passing argument to function. What's wrong?",
- "body": "In this jsFiddle
\n\nam I trying to pass an argument to a function, but it doesn't receive the argument or it isn't executed.
\n\n<a href=\"javascript:addRemove('7249');\">Details</a>\n
\n\nJQuery
\n\n$(document).ready(function() {\n\n function addRemove(u) {\n alert(u);\n }\n\n});\n
\n\nAny ideas what's wrong and how to fix it?
\n"
- },
- {
- "tags": [
- "c#",
- "javascript",
- "matlab"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414755/timeline",
- "question_comments_url": "/questions/6414755/comments",
- "question_answers_url": "/questions/6414755/answers",
- "question_id": 6414755,
- "owner": {
- "user_id": 662770,
- "user_type": "registered",
- "display_name": "shahar_m",
- "reputation": 291,
- "email_hash": "4590affff8ab7bda7cbc2a3d766f02bd"
- },
- "creation_date": 1308589121,
- "last_activity_date": 1308589121,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 9,
- "score": 1,
- "community_owned": false,
- "title": "Convert Matlab Fuzzy Logic toolbox fis file to c# / c++ / javascript",
- "body": "I have a Matlab program that is partially relies on Matlab's Fuzzy logic toolbox, which I want to convert to c# program (and later on to objective-c, but let's keep this for later).\nIs ther any means to convert my fuzzy logic fis file into c# (or c++, or maybe even javascript)?
\n\nP.S. I know the deploytool
can convert my program to exe, but I don't want to rely on matlab runtime
component and dlls but to make it a complete c# (or c++) program.
\n"
- },
- {
- "tags": [
- "javascript",
- "html5",
- "browser",
- "cross-browser"
- ],
- "answer_count": 2,
- "accepted_answer_id": 5560986,
- "favorite_count": 3,
- "question_timeline_url": "/questions/5306132/timeline",
- "question_comments_url": "/questions/5306132/comments",
- "question_answers_url": "/questions/5306132/answers",
- "question_id": 5306132,
- "owner": {
- "user_id": 471795,
- "user_type": "registered",
- "display_name": "kanaka",
- "reputation": 3994,
- "email_hash": "b2bd81c28bcafeea19ac72e554859ec0"
- },
- "creation_date": 1300148053,
- "last_edit_date": 1308589105,
- "last_activity_date": 1308589105,
- "up_vote_count": 6,
- "down_vote_count": 0,
- "view_count": 274,
- "score": 6,
- "community_owned": false,
- "title": "Translate Javascript keyCode into charCode for non-U.S. keyboard layout (i.e. azerty)",
- "body": "Quick background:
\n\n\nwhen a key is pressed in a browser, three events are generated: keyDown , keyPress and keyUp . \nkeyDown and keyUp have a keyCode property which is approximately the physical key pressed. \nkeyPress also has charCode property set which takes into account modifier keys and keyboard layout (A and a have same keyCode but a different charCode). \nall three events have properties that indicate which modifier keys were pressed during those events. \n \n\nI'm the main noVNC developer and I have a tough problem: noVNC needs the translated charCode value without using the keyPress event for the following reasons:
\n\n\nnoVNC needs to send the keyDown and keyUp events separately to the VNC server (otherwise it's not a completely functional VNC client). \nmore importantly, noVNC needs to prevent the default keyboard actions while connected which means calling the preventDefault() method of the keyDown event. This has the side-effect of also preventing the keyPress event from firing. \n \n\nDue to differences in keyboard layouts (i.e. different keyCode to charCode mappings) I've determine that noVNC will need a lookup table for different keyboard layouts.
\n\nBut here is the real problem: on alternate layouts, some different physical keys have the SAME keyCode. For example, with an azerty (French) keyboard layout the '-' (dash) and '_' underscore keys both generate keyCode 189. Ack!!!
\n\nSo ... how do I get proper keyCode to charCode mapping and prevent default browser actions at the same time?
\n\nBTW, I suspect the solution to this will be applicable to other interactive web applications and HTML5 games since you often want to be able to know full information about the key pressed without triggering any additional browser response to that keypress.
\n\nUseful links:
\n\n\n\nSolution : see my post below.
\n"
- },
- {
- "tags": [
- "javascript",
- "ruby-on-rails"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413951/timeline",
- "question_comments_url": "/questions/6413951/comments",
- "question_answers_url": "/questions/6413951/answers",
- "question_id": 6413951,
- "owner": {
- "user_id": 51382,
- "user_type": "registered",
- "display_name": "willcodejavaforfood",
- "reputation": 12699,
- "email_hash": "d5c948086776fc91b4c7abff56bb7672"
- },
- "creation_date": 1308584996,
- "last_activity_date": 1308588759,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 17,
- "score": 0,
- "community_owned": false,
- "title": "How do I update my model object before a create/update?",
- "body": "It's me the big rails newbie. I have another problem.
\n\nThis is my partial for _care_point.html.erb
\n\n<div id='<%=dom_id(care_point) %>' class='draggable node_chin'>\n <div id=<%=\"node_#{care_point.id}\" %> class='node'><%= care_point.body %>\n </div>\n <textarea class='node_input'><%= care_point.body %></textarea>\n <%= link_to 'Close', [care_map, care_point], :method => :post, :remote => true, :class => 'close' %>\n <%= link_to 'Delete', [care_map, care_point], :confirm => \"Are you sure?\", :method => :delete, :remote => true, :class => 'delete' %>\n</div>\n
\n\nWhen I click the Close link the request is sent to the server as expected. All the fields are null though. How do I make sure that my model object is kept updated before it is sent to the server? Do I have to use the form functionality or can I just update it with Javascript somehow?
\n\nCheers
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "jquery-ajax"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414530/timeline",
- "question_comments_url": "/questions/6414530/comments",
- "question_answers_url": "/questions/6414530/answers",
- "question_id": 6414530,
- "owner": {
- "user_id": 484082,
- "user_type": "registered",
- "display_name": "blasteralfred",
- "reputation": 505,
- "email_hash": "cd867e89325fe74445707fb6b4364be8"
- },
- "creation_date": 1308587719,
- "last_edit_date": 1308588455,
- "last_activity_date": 1308588636,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 45,
- "score": 0,
- "community_owned": false,
- "title": "Change background using Javascript - AJAX - jQuery",
- "body": "I have a table as below;
\n\n<table style=\"width: 100%; border: solid 1px #666600; min-width: 800px\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td id=\"aaa\"> </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td id=\"bbb\"> </td>\n</tr>\n<tr>\n<td> </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td> </td>\n</tr>\n</table>\n
\n\nI am using jquery ajax and i have script as below;
\n\n$(document).ready( function() {\nvar i = 1;\n$.ajax({\n type: 'POST',\n url: 'ajax.php',\n data: 'id=' + i,\n dataType: 'json',\n cache: false,\n success: function(result) {\n $('.title').each(function(index){\n values = result[index].split('*');\n indexa = values[0];\n indexb = values[1];\n if((result[index])){\n $(this).html(indexb);\n }else{\n $(this).html(\" \");\n }\n });\n },\n });\n});\n
\n\nThe php file will return [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"]
for i=1, [\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]
for i=2 etc etc.. The text in class=\"title\"
changes accordingly with respect to the data, as abc
or whatever it is..
\n\nYou can see another cell above every title cell having class=\"content\"
. I have a php file, ajax2.php
, which will return an image name with respect to a $_POST[\"data1\"]
and $_POST[\"data2\"]
. The $_POST[\"data1\"]
portion should have value indexa
and $_POST[\"data2\"]
portion should have value indexb
from javascript for each ajax request. The images are placed in images folder and the data returned by php file will be only image_name.extension
.
\n\nIn short, I want to change the background image of content cell above title cell to change when data / text in corresponding title cell changes. Anybody tell me how to do the AJAX request and change background image (change background image url).
\n\nI think it will be something like;
\n\n$(.content).css({ 'background-image':'url(images/' + imagename });
\n\nYou can see my fiddle here
\n\nThanks in advance..
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 3,
- "accepted_answer_id": 4047114,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4047072/timeline",
- "question_comments_url": "/questions/4047072/comments",
- "question_answers_url": "/questions/4047072/answers",
- "question_id": 4047072,
- "owner": {
- "user_id": 457827,
- "user_type": "registered",
- "display_name": "Johnson",
- "reputation": 304,
- "email_hash": "1ce4f00aae1dbed39c2899dbd85e4169"
- },
- "creation_date": 1288299036,
- "last_activity_date": 1308588573,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 70,
- "score": 0,
- "community_owned": false,
- "title": "JS: setInterval and blur.",
- "body": "I have this:
\n\n$(window).blur(function() {\n setInterval(function() {\n $.ajax({\n type: \"POST\",\n url: \"imback.php\",\n data: {\n mode: 'ajax',\n getUpdates: 'auto',\n },\n success: function(msg){\n document.title = msg + titleOrig;\n }\n });\n }, 35000);\n
\n\nWorks fine.
\n\nAlthough, if you have been blur, and then when you focus back, it will keep making the ajax call, it doesnt stop sending ajax call after interval 35 seconds.
\n\nHow can i fix this?\n })
\n"
- },
- {
- "tags": [
- "javascript",
- "xml"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4272538/timeline",
- "question_comments_url": "/questions/4272538/comments",
- "question_answers_url": "/questions/4272538/answers",
- "question_id": 4272538,
- "owner": {
- "user_id": 519506,
- "user_type": "unregistered",
- "display_name": "Erin",
- "reputation": 6,
- "email_hash": "dcc375d4184c9ce18bedc0db1391cb2f"
- },
- "creation_date": 1290641828,
- "last_edit_date": 1308588407,
- "last_activity_date": 1308588407,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 398,
- "score": 1,
- "community_owned": false,
- "title": "How can I parse XML in javascript in both IE and firefox?",
- "body": "I'm trying to write a single piece of code to parse javascript in both IE and firefox.
\n\nThe following works in IE, and functions without complaining in firefox
\n\nfunction XmlDom(sXml){\n var oXml;\n if (window.ActiveXObject) {\n // ie\n oXml = new ActiveXObject(\"Microsoft.XMLDOM\");\n oXml.resolveExternals = false;\n oXml.async = false;\n oXml.loadXML(sXml);\n }\n else if (window.DOMParser){\n\n var parser = new DOMParser(); \n oXml = parser.parseFromString(sXml, \"text/xml\");\n\n }\nreturn oXml\n}\n
\n\nThe following works in IE, but gives errors (because childNodes doesn't exist) under Firefox
\n\nvar oXml = XmlDom(sourceXML);\nvar listHtml = \"\";\nif (oXml.firstChild != null) {\n var childNodes = null;\n try {\n childNodes = oXml.lastChild.lastChild.firstChild.childNodes;\n }\n if (childNodes != null && childNodes.length > 0) {\n\n for (var i = 0; i < childNodes.length; i++) {\n\n var vehicleName = NodeText(SelectSingleNode(childNodes[i], 'VehicleName', 'VehicleName'));\n var vehicleId = NodeText(SelectSingleNode(childNodes[i], 'VehicleId', 'VehicleId'));\n\n }\n }\n}\n
\n\nUsing jquery gives me correct behavior under firefox, but doesn't quite work in IE (it finds the correct number of vehicles, but each one has a null id and name)
\n\n $(sourceXml).find(\"Table1\").each(function() {\n var vehicleId = $(this).find(\"VehicleId\").text();\n var vehicleName = $(this).find(\"VehicleName\").text();\n });\n
\n\nI firmly believe that both these approaches should work. But something is going wrong. I'd love a hand.
\n\n<?xml version=\"1.0\" encoding=\"utf-16\"?>\n<DataSet>\n <xs:schema id=\"NewDataSet\" xmlns=\"\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:msprop=\"urn:schemas-microsoft-com:xml-msprop\">\n <xs:element name=\"NewDataSet\" msdata:IsDataSet=\"true\" msdata:UseCurrentLocale=\"true\">\n <xs:complexType>\n <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xs:element name=\"Table1\">\n <xs:complexType>\n <xs:sequence>\n <xs:element name=\"VehicleId\" msprop:metadatacolumnname=\"VehicleId\" msprop:caption=\"VehicleId\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"VehicleName\" msprop:metadatacolumnname=\"VehicleName\" msprop:caption=\"VehicleName\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"SendAlarms\" msprop:metadatacolumnname=\"SendAlarms\" msprop:caption=\"SendAlarms\" type=\"xs:string\" minOccurs=\"0\" />\n </xs:sequence>\n </xs:complexType>\n </xs:element>\n </xs:choice>\n </xs:complexType>\n </xs:element>\n </xs:schema>\n <diffgr:diffgram xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:diffgr=\"urn:schemas-microsoft-com:xml-diffgram-v1\">\n<NewDataSet>\n <Table1 diffgr:id=\"Table11\" msdata:rowOrder=\"0\" diffgr:hasChanges=\"inserted\">\n <VehicleId>8</VehicleId>\n <VehicleName>AIS Gate</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1>\n <Table1 diffgr:id=\"Table12\" msdata:rowOrder=\"1\" diffgr:hasChanges=\"inserted\">\n <VehicleId>82</VehicleId>\n <VehicleName>Amigos</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1> \n</NewDataSet>\n</diffgr:diffgram>\n</DataSet>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "json",
- "apple",
- "dashcode"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414613/timeline",
- "question_comments_url": "/questions/6414613/comments",
- "question_answers_url": "/questions/6414613/answers",
- "question_id": 6414613,
- "owner": {
- "user_id": 706742,
- "user_type": "registered",
- "display_name": "Nero F. RoxXx",
- "reputation": 8,
- "email_hash": "bc2da610ac397822eeb3405b7718a9d9"
- },
- "creation_date": 1308588222,
- "last_activity_date": 1308588222,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 2,
- "score": 0,
- "community_owned": false,
- "title": "Using Dashcode's List Controller without their DataSource option",
- "body": "I'm working on my own custom google calendar, so far i'm able to get everything to work, i've loaded all the data and everything works great, each event shows up on a select box.
\n\nWhat i want to do now is to load each event name on the LIST part. How exactly can i do that? i'm very lost with it.
\n\nI looked at the sample code that dashcode has for the list part but i really am lost with populating the list in real time, can somebody help me? i can provide more info as needed, thanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps",
- "marker"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413244/timeline",
- "question_comments_url": "/questions/6413244/comments",
- "question_answers_url": "/questions/6413244/answers",
- "question_id": 6413244,
- "owner": {
- "user_id": 365251,
- "user_type": "registered",
- "display_name": "markzzz",
- "reputation": 1345,
- "email_hash": "586ed1e5c3543cf7c304861c1240efdf"
- },
- "creation_date": 1308581995,
- "last_edit_date": 1308583496,
- "last_activity_date": 1308588085,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 16,
- "score": 0,
- "community_owned": false,
- "title": "How to set the google-maps marker as it is showed on the original website",
- "body": "Try to Search the first address on google maps, and click on it :
\n\nit will show us a marker with a photo (if avaiable), description, and some links.\nI'd like to add the same marker in my web application.
\n\nWhich API I need to use? At the moment I just make my own string and append it :
\n\nvar finestra='';\nfinestra += '<div style=\"position:relative;width:200px;\">';\nfinestra += '<div style=\"position:relative;float:left; color:#000000;\" class=canale>';\nfinestra += 'Archimede<br />Via Brennero,12<br />38100 Trento(TN)<br />c.+39 555555555';\nfinestra += '</div>';\nfinestra += '</div>';\n\nvar marker = createMarker(map.getCenter());\nmap.setCenter(new GLatLng(46.084989,11.118851), 16, G_NORMAL_MAP);\nmap.addOverlay(marker);\nmarker.openInfoWindowHtml(finestra); \n
\n\nBut I need the same marker as google maps show on the original website.\nIs it possible?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "internet",
- "internet-explorer-9",
- "explorer"
- ],
- "answer_count": 0,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6414578/timeline",
- "question_comments_url": "/questions/6414578/comments",
- "question_answers_url": "/questions/6414578/answers",
- "question_id": 6414578,
- "owner": {
- "user_id": 807033,
- "user_type": "unregistered",
- "display_name": "Mario",
- "reputation": 1,
- "email_hash": "15116221263b5450dd8abff3cc7a8ea9"
- },
- "creation_date": 1308588053,
- "last_activity_date": 1308588053,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 14,
- "score": -1,
- "community_owned": false,
- "title": "Javascript slider not showing in IE9",
- "body": "We have an automatic slider on this website, http://www.realcapfinancial.com and it has been working on all browsers. IE9 doesnt seem to work. It comes up with and error, no object line 298... character 2 etc. I forget what it says but I can't check it again since I'm at work using a mac.
\n\nAny help is perfect, thank you
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "socket.io",
- "nowjs"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6409944/timeline",
- "question_comments_url": "/questions/6409944/comments",
- "question_answers_url": "/questions/6409944/answers",
- "question_id": 6409944,
- "owner": {
- "user_id": 578963,
- "user_type": "registered",
- "display_name": "DasAntonym",
- "reputation": 53,
- "email_hash": "90d33a04aa3d2ba5230831650d449714"
- },
- "creation_date": 1308566372,
- "last_activity_date": 1308588014,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 21,
- "score": 0,
- "community_owned": false,
- "title": "NowJS manually initiating a new connection after a lost connection",
- "body": "i have a case where clients connect to a node.js server running nowjs and remain connected for a fairly long time (about 30 minutes). on some browsers though the connection gets dropped after a while and the client disconnects.
\n\ni implemented a disconnect handler on the client side like this:
\n\nnow.core.on('disconnect', function () {\n // we should reconnect here, maybe after a short timeout\n});\n
\n\nwhat i am unclear about is how exactly to trigger a reconnect. this might be something blatantly obvious to experienced users but i didn't manage to figure this out.
\n\nthe now.js script initializes on page load and after that i can use the now object, but i can't figure out how to repeat this process without reloading the page.
\n\nthanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "regex",
- "comma"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413444/timeline",
- "question_comments_url": "/questions/6413444/comments",
- "question_answers_url": "/questions/6413444/answers",
- "question_id": 6413444,
- "owner": {
- "user_id": 806905,
- "user_type": "unregistered",
- "display_name": "Frederick Thompson",
- "reputation": 11,
- "email_hash": "5698d4707354e0b9e4ba6f22a0be84d8"
- },
- "creation_date": 1308582827,
- "last_edit_date": 1308586491,
- "last_activity_date": 1308587996,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 61,
- "score": 2,
- "community_owned": false,
- "title": "Regex Comma Separated Emails",
- "body": "I am trying to get this Regex statement to work
\n\n^([_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})+(\\s?[,]\\s?|$))+$
\n\nfor a string of comma separated emails in a textbox
using jQuery('#textbox').val();
which passes the values into the Regex statement to find errors for a string like:
\n\n\"test@test.com, test1@test.com,test2@test.com\"
\n\nBut for some reason it is returning an error. I tried running it through http://regexpal.com/ but i'm unsure ?
\n\nNB: This is just a basic client-side test. I validate emails via the MailClass
on the server-side using .NET4.0 - so don't jump down my throat re-this. The aim here is to eliminate simple errors.
\n\nEscaped Version:
\n\n^([_a-z0-9-]+(\\\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\\\.[a-z0-9-]+)*(\\\\.[a-z]{2,3})+(\\\\s?[,]\\\\s?|$))+$
\n"
- },
- {
- "tags": [
- "javascript",
- "javascript-library"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414240/timeline",
- "question_comments_url": "/questions/6414240/comments",
- "question_answers_url": "/questions/6414240/answers",
- "question_id": 6414240,
- "owner": {
- "user_id": 806937,
- "user_type": "unregistered",
- "display_name": "simplified.",
- "reputation": 1,
- "email_hash": "e30b781f0306f0b46f32b17733b8398d"
- },
- "creation_date": 1308586242,
- "last_edit_date": 1308586843,
- "last_activity_date": 1308587979,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "Constant Variables in Javascript",
- "body": "I am trying to have some const global variables which I can use in the javascript and I came out with this code and picking up from some answers referred in SO. But it seems that I have a little mistake somewhere which I couldn't spot. Can someone help me with this?
\n\nin testQuery.js
\n\n(function (window, undefined) {\n\n var testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n }\n\n var MYGLOBALS = function() {\n var globals = {\n foo : \"bar\",\n batz : \"blah\" \n }\n\n return {\n getValue : function(s) {\n return globals[s];\n }\n }\n }();\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\n \n\nand in the html javascript tag i have this line of code.
\n\nin testQuery.html file
\n\n<html>\n <head>\n <script src=\"testQuery.js\"></script>\n <script>\n\n function onClick() {\n\n alert(MYGLOBALS.getValue(\"foo\"));\n }\n\n </script>\n </head>\n\n <body>\n\n <input type=\"button\" onclick=\"onClick()\">\n\n </body>\n\n</html>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "internet-explorer-8",
- "frame",
- "hang",
- "google-chrome-frame"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414558/timeline",
- "question_comments_url": "/questions/6414558/comments",
- "question_answers_url": "/questions/6414558/answers",
- "question_id": 6414558,
- "owner": {
- "user_id": 467240,
- "user_type": "registered",
- "display_name": "mtyson",
- "reputation": 40,
- "email_hash": "acd22ce8d834f8548c4200bec5fe6c40"
- },
- "creation_date": 1308587934,
- "last_activity_date": 1308587934,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 5,
- "score": 0,
- "community_owned": false,
- "title": "In IE8 with Chrome Frame, after Download, App hangs",
- "body": "Here's a strange one. Throwing it out there to see if anyone has any thoughts.
\n\nThis problem only occurs with IE8 with Chrome Frame installed. However, some machines with IE8 and chrome frame do not have the problem.
\n\nWhen a user downloads a file, the app stops responding (the file is successfully downloaded). Links still work, but all JS appears to be blocked. If the user re-loads the browser, the app works fine, and re-downloading (even the same file) no longer causes the app to hang.
\n\nI should add that only a small number of users have this issue (so its definitely something in the app causing the problem). The problem seems to require: certain user, certain setup with IE8+chrome frame.
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "xml",
- "regex",
- "parsing"
- ],
- "answer_count": 5,
- "accepted_answer_id": 3047464,
- "favorite_count": 0,
- "question_timeline_url": "/questions/3047391/timeline",
- "question_comments_url": "/questions/3047391/comments",
- "question_answers_url": "/questions/3047391/answers",
- "question_id": 3047391,
- "owner": {
- "user_id": 107721,
- "user_type": "registered",
- "display_name": "wojtek_z",
- "reputation": 20,
- "email_hash": "45e2bb34105769aaae7dbf841b37da84"
- },
- "creation_date": 1276621727,
- "last_activity_date": 1308587918,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 225,
- "score": 0,
- "community_owned": false,
- "title": "Parsing complex string using regex",
- "body": "My regex skills are not very good and recently a new data element has thrown my parser into a loop
\n\nTake the following string
\n\n\"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write\"
\n\nPreviously I had the following for my regex : [+\\\\-/]
\n\nWhich would turn the result into
\n\nUSER=Bob Smith \nGROUP=Admin \nFUNCTION=Read \nFUNCTION=Write \nFUNCTION=Read
\n\nBut now I have values with dashes in them which is causing bad output
\n\nNew string looks like \"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write/FUNCTION=Read-Write\"
\n\nWhich gives me the following result , and breaks the key = value structure.
\n\nUSER=Bob Smith \nGROUP=Admin \nFUNCTION=Read \nFUNCTION=Write \nFUNCTION=Read \nWrite
\n\nCan someone help me formulate a valid regex for handling this or point me to some key / value examples. Basically I need to be able to handle + - / signs in order to get combinations.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-plugins",
- "jqplot",
- "time-format"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414438/timeline",
- "question_comments_url": "/questions/6414438/comments",
- "question_answers_url": "/questions/6414438/answers",
- "question_id": 6414438,
- "owner": {
- "user_id": 576364,
- "user_type": "registered",
- "display_name": "mcbobo",
- "reputation": 3,
- "email_hash": "7c269209b6935ebf04de6171e6da80a5"
- },
- "creation_date": 1308587186,
- "last_edit_date": 1308587719,
- "last_activity_date": 1308587719,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 12,
- "score": 0,
- "community_owned": false,
- "title": "jQuery jqPlot library 12 hour Time Y-Axis Inversion issue",
- "body": "I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great.
\n\nI'm using the stacked bar generation and came into a werid issue. Basically, I want a 12 hour time from hours 0 - 24 on the Y axis, days on the X axis, and plot seconds of a certain activity on the graph. But also, I want the days (midnight) to start at the top of the graph, and come to the bottom.
\n\nI can flip the data easily with an inverse of the 'min' and 'max', but the issue arises when I try to flip the ticks; essentially, the \"time\".
\n\nI have my series defaults set to a hidden axis:
\n\nseriesDefaults: {\n renderer: $.jqplot.BarRenderer,\n yaxis: 'y2axis'\n},\n
\n\nAnd I put a placeholder series ( with the values all 0's, eg: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] ) to associate with a separate yaxis to plot the date ticks:
\n\nseries: [\n { show: true, yaxis: 'yaxis', }\n],\n
\n\nI can flip the values by changing the min and max on the default y axis and hiding it:
\n\ny2axis:{\n min: 24,\n max: 0,\n showTicks: false\n}\n
\n\nThen I set the ticks, and format them with the DateAxisRenderer:
\n\nyaxis:{\n renderer:$.jqplot.DateAxisRenderer,\n ticks: ['0', '2', '4', '6', '8', '10', '12', '14', '16', '18', '20', '22', '24'],\n tickOptions: { formatString: '%I:%M %p' }\n}\n
\n\nThis creates a yaxis with the time's from 12:00 AM to 12:00PM back to 12:00 AM in that format. but in increasing order from the bottom of the graph.
\n\nObviously, flipping the min and max on the 'yaxis' would accomplish nothing, as there is only place holder values, and it only flips the values. How would I go about to flip the axis values so that the time goes (from the bottom) 24, 22, 20... etc, etc, ?
\n\nThanks for your help in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "firefox"
- ],
- "answer_count": 6,
- "accepted_answer_id": 6414466,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414376/timeline",
- "question_comments_url": "/questions/6414376/comments",
- "question_answers_url": "/questions/6414376/answers",
- "question_id": 6414376,
- "owner": {
- "user_id": 533617,
- "user_type": "unregistered",
- "display_name": "David19801",
- "reputation": 822,
- "email_hash": "cba0529762ef11ebc58637b537a42acd"
- },
- "creation_date": 1308586914,
- "last_activity_date": 1308587629,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 24,
- "score": 0,
- "community_owned": false,
- "title": "Can I see what jquery is sending to an external server?",
- "body": "I am on a website...it has jquery and is sending some requests using javascript out to a php page.
\n\nIs their any way to see what data it is sending out from my computer and/or which URLs it is talking to?
\n\nI am using firefox and can load software if their is any needed.
\n\nEDIT - I have downloaded firebug and have the page loaded. Any idea what option I need to select?
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "text-editor",
- "textwrapping"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414473/timeline",
- "question_comments_url": "/questions/6414473/comments",
- "question_answers_url": "/questions/6414473/answers",
- "question_id": 6414473,
- "owner": {
- "user_id": 807019,
- "user_type": "unregistered",
- "display_name": "neutreno",
- "reputation": 1,
- "email_hash": "86e6ff8f75f9daef42d53b7f8002fd95"
- },
- "creation_date": 1308587382,
- "last_activity_date": 1308587609,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 17,
- "score": 0,
- "community_owned": false,
- "title": "How to cause live text wrap while image/element is being dragged, in javascript?",
- "body": "I want to make a text editor which incorporates this sort of effect (see video). However, I have no idea how this would be possible with javascript.
\n\nhttp://www.youtube.com/watch?v=mYnj4Mz9g9g
\n\nAny ideas would be amazing!
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "javascript-events"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414123/timeline",
- "question_comments_url": "/questions/6414123/comments",
- "question_answers_url": "/questions/6414123/answers",
- "question_id": 6414123,
- "owner": {
- "user_id": 540394,
- "user_type": "registered",
- "display_name": "jurchiks",
- "reputation": 50,
- "email_hash": "b12346cb9e2e217ae6741e6af3ee6852"
- },
- "creation_date": 1308585694,
- "last_edit_date": 1308585896,
- "last_activity_date": 1308587324,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 27,
- "score": 0,
- "community_owned": false,
- "title": "javascript trigger function on event from a script, not explicitly from html",
- "body": "So I'm making a registration form ATM, I have it like I want it so far except the excess JavaScript code to check the values realtime (onmouseover, onmouseout, onblur etc.). \nA small sample:
\n\n<tr>\n <td>\n <label for=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\">\n Enter your name:\n </label>\n </td>\n <td>\n <input type=\"text\"\n id=\"name\"\n name=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\"\n onblur=\"checkValue('name', '', 3);\">\n </td>\n</tr>\n
\n\nfieldSelected makes the field background yellow if the value of the specified element (first parameter) matches the second parameter (default value) or is shorter than third parameter. \nYou mouseover the label or the input field and it changes the bg first to yellow, then to red (since you didn't input anything). \ncheckValue changes the field background to either red or green depending on the value (same parameters). \nYou enter something in the input field, switch to another field and it changes the background color.
\n\nNow, as you will probably notice, there's a LOT of JavaScript function calls right there (5 per each input/select field). It would be great if someone would know a way to attach those event triggers from another place (I don't usually code this dirty), not directly in the form like this and preferably to multiple IDs at once. I have jQuery here, but I'm really no expert in JavaScript.
\n\nOr maybe there's a simpler way to do this? I want that the field background color changes on all those events for maximum interactivity. Sure, it's nothing much when all the data goes to the server side but I just want it that way.
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414093/timeline",
- "question_comments_url": "/questions/6414093/comments",
- "question_answers_url": "/questions/6414093/answers",
- "question_id": 6414093,
- "owner": {
- "user_id": 365251,
- "user_type": "registered",
- "display_name": "markzzz",
- "reputation": 1345,
- "email_hash": "586ed1e5c3543cf7c304861c1240efdf"
- },
- "creation_date": 1308585621,
- "last_edit_date": 1308586479,
- "last_activity_date": 1308587198,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 19,
- "score": 0,
- "community_owned": false,
- "title": "Why isn't this google maps loaded?",
- "body": "This is my code :
\n\n<script type=\"text/javascript\" src=\"http://maps.google.com/maps/api/js?sensor=true\"></script> \n<script type=\"text/javascript\">\n function load() {\n if (GBrowserIsCompatible()) {\n var map;\n var location = new google.maps.LatLng(46.084989, 11.118851);\n\n var stylez =\n [\n {\n featureType: \"all\",\n elementType: \"all\",\n stylers: [\n { saturation: -98 }\n ]\n }\n ];\n\n var mapOptions = {\n zoom: 11,\n center: location,\n mapTypeControlOptions: {\n mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']\n }\n };\n\n map = new google.maps.Map(document.getElementById(\"map_canvas\"), mapOptions);\n var mapType = new google.maps.StyledMapType(stylez, { name: \"Grayscale\" });\n map.mapTypes.set('myScale', mapType);\n map.setMapTypeId('myScale') \n }\n }\n\n $(document).ready(function(){\n load();\n });\n</script>\n\n\n<div id=\"map_canvas\" style=\"width: 100%; height: 700px\"></div>\n
\n\nbut nothing is loaded. Where am I wrong? Removing GBrowserIsCompatible() it works, but it doesn't recognize the location.
\n"
- },
- {
- "tags": [
- "php",
- "javascript"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413910,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413881/timeline",
- "question_comments_url": "/questions/6413881/comments",
- "question_answers_url": "/questions/6413881/answers",
- "question_id": 6413881,
- "owner": {
- "user_id": 734174,
- "user_type": "unregistered",
- "display_name": "Michael",
- "reputation": 41,
- "email_hash": "5f8a354d18429fa4d502de0b18ddaa5b"
- },
- "creation_date": 1308584712,
- "last_activity_date": 1308587057,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 29,
- "score": 0,
- "community_owned": false,
- "title": "Setting a maximum and minimum value for text box",
- "body": "I own a canvas website and want my customers to be able to enter a custom length of the canvas within a set range.
\n\nSay the range for the product is:
\n\n\nMinimum: 10 cm \nMaximum: 200 cm \n \n\nThen in the text box they can enter any number between that range, but if they enter \"215\" then it should automatically go down to \"200\". Likewise if they enter \"7\" then it should automatically go up to \"10\"
\n"
- },
- {
- "tags": [
- "javascript",
- "xmlhttprequest",
- "google-weather-api"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413908/timeline",
- "question_comments_url": "/questions/6413908/comments",
- "question_answers_url": "/questions/6413908/answers",
- "question_id": 6413908,
- "owner": {
- "user_id": 766182,
- "user_type": "registered",
- "display_name": "user766182",
- "reputation": 6,
- "email_hash": "3e412d974a909f07ac9382b2d46cdf80"
- },
- "creation_date": 1308584819,
- "last_edit_date": 1308584942,
- "last_activity_date": 1308587049,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Simple XMLHttpRequest (Google Weather)",
- "body": "Hello I want to get xml from Google Weather
\n\nvar xmlhttp;\n\nif (window.XMLHttpRequest)\n {// code for IE7+, Firefox, Chrome, Opera, Safari\n xmlhttp= new XMLHttpRequest();\n }\nelse\n {// code for IE6, IE5\n xmlhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n\n xmlhttp.open(\"GET\", \"http://www.google.com/ig/api?weather=london&hl=en\", true);\n\nxmlhttp.send(null);\n\nxmlDoc=xmlhttp.responseXML;\n
\n\nIt`s not working . Thanks
\n"
- },
- {
- "tags": [
- "javascript",
- "forms",
- "html5",
- "autocomplete",
- "localstorage"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/5351143/timeline",
- "question_comments_url": "/questions/5351143/comments",
- "question_answers_url": "/questions/5351143/answers",
- "question_id": 5351143,
- "owner": {
- "user_id": 665929,
- "user_type": "unregistered",
- "display_name": "prabhat",
- "reputation": 1,
- "email_hash": "5de923d527dc4cd4cacbafb74d4c5d18"
- },
- "creation_date": 1300446824,
- "last_edit_date": 1308586981,
- "last_activity_date": 1308586981,
- "up_vote_count": 0,
- "down_vote_count": 2,
- "view_count": 286,
- "score": -2,
- "community_owned": false,
- "title": "how to create autocomplete forum using html5 local storage?",
- "body": "Hi to all, I am new to programming. will you help me to write code for autocomplete text fields in a html form. I want to use local storage data.\nIf any time user will inter some data in text field, it will be stored in local storage. if next time when he enters data then, localstorage data related to that field will appear as popup(like mozila or chrome autocomplete).
\n\nplease provide me some guidelines
\n"
- },
- {
- "tags": [
- "javascript",
- "firefox",
- "browser"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413732/timeline",
- "question_comments_url": "/questions/6413732/comments",
- "question_answers_url": "/questions/6413732/answers",
- "question_id": 6413732,
- "owner": {
- "user_id": 806937,
- "user_type": "unregistered",
- "display_name": "simplified.",
- "reputation": 1,
- "email_hash": "e30b781f0306f0b46f32b17733b8398d"
- },
- "creation_date": 1308584011,
- "last_edit_date": 1308586969,
- "last_activity_date": 1308586969,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 0,
- "community_owned": false,
- "title": "Why won't this web page finish loading?",
- "body": "If I run this code, why doesn't the page ever finish loading? It will always show connecting on my browser tab.
\n\nIt is a simple javascript which will prompt an alert box and change the entire document to the word testing.
\n\nJavascript - testQuery.js
\n\n(function (window, undefined) {\n\nvar testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n}\n\n\ntestQuery.alertMessage = function () {\n alert(\"alert\");\n document.write(\"testing\");\n};\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\nHTML - testQuery.html
\n\n<html>\n<head>\n\n<script src=\"testQuery.js\"></script>\n<script>\n\nfunction onClick() {\n\ntestQuery.alertMessage();\n\n}\n\n</script>\n</head>\n
\n\n
\n\n
\n\n\n
\n"
- },
- {
- "tags": [
- "javascript",
- "asp.net"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412632/timeline",
- "question_comments_url": "/questions/6412632/comments",
- "question_answers_url": "/questions/6412632/answers",
- "question_id": 6412632,
- "owner": {
- "user_id": 806682,
- "user_type": "registered",
- "display_name": "Peter Santos",
- "reputation": 6,
- "email_hash": "a2fe3b7599ef15af835ce803d5244f8e"
- },
- "creation_date": 1308579446,
- "last_edit_date": 1308586779,
- "last_activity_date": 1308586779,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 40,
- "score": 1,
- "community_owned": false,
- "title": "How to find and modify an asp.net control with JavaScript?",
- "body": "This has been bothering me for quite some time. I'm simply trying to change the value of a textbox defined in asp.net, which normally works when it is not within a LoggedInTemplate.
\n\nI've searched everywhere on the net and even here, but the only thing I can find close to doing what I need is here Finding an asp:button and asp:textbox in Javascript . Unfortunately that doesn't work. Here's what I have so far:
\n\n<head id=\"Head1\" runat=\"server\">\n <script src=\"../../scripts/webeffects.js\" type=\"text/javascript\" language=\"javascript\"></script>\n</head>\n<asp:LoginView ID=\"LoginView1\" runat=\"server\">\n <LoggedInTemplate>\n <div class=\"lotto_pick_container\">\n <table runat=\"server\" id=\"tblLottoPick\">\n <tr><th colspan=\"3\">Pick a Lotto Number</th></tr>\n <tr>\n <td><asp:TextBox ID=\"txt1stNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt2ndNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt3rdNum\" runat=\"server\"></asp:TextBox></td>\n </tr>\n <tr>\n <td><asp:Button ID=\"cmdSubmitPick\" runat=\"server\" Text=\"Submit Lotto Number\" \n onclientclick=\"return validateLottoPicks()\" /></td>\n </tr>\n</table>\n </div>\n </LoggedInTemplate>\n</asp:LoginView>\n
\n\nRight now I'm trying to use an external js script to find a textbox and modify it with an arbitrary value of 12, just so that I know it can work:
\n\nfunction validateLottoPicks() {\n document.getElementById('<%= LoginView1.FindControl(\"txt2ndNum\").ClientID %>').value = 12\n}\n
\n\nWhen I debug this with Firebug it seems all my other code works, except for this one function. I have verified the function gets called, it's just this line that doesn't work. Can someone please provide some guidance? I'll send milk and cookies.
\n\nUpdate:
\n\nThanks for all the help so far! I got some pretty quick responses.\n \n I removed the visible=\"false\" portion of the html, but no luck.\n I also tried using tblLottoPick.FindControl , but no luck.\n I added my header which includes the script that contains the function I am trying to run.\n Using the rendered id, document.getElementById(\"LoginView1_txt2ndNum\").value = 12 , works fine.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "css",
- "lightbox"
- ],
- "answer_count": 3,
- "accepted_answer_id": 4529480,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4529460/timeline",
- "question_comments_url": "/questions/4529460/comments",
- "question_answers_url": "/questions/4529460/answers",
- "question_id": 4529460,
- "owner": {
- "user_id": 184814,
- "user_type": "registered",
- "display_name": "OM The Eternity",
- "reputation": 1720,
- "email_hash": "23a8b77e957cf10622f9039e4f3a954d"
- },
- "creation_date": 1293256850,
- "last_activity_date": 1308586634,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 863,
- "score": 0,
- "community_owned": false,
- "title": "How to fix the width and height of jquery lightbox?",
- "body": "I have aplied jquery lighbox on my image gallery, but due to the variable size of images, the lightbox size is not fixed hence opens up with image's original size, this in turn causes the biga images to go out of screen and display horizontal scroll bar in browser.
\n\nHence I am looking for the way to apply the fix width and height to lightbox so that every image must be displayed with this size in lightbox.
\n\nPlease help..
\n\n\n Update
\n \n\ni Just tried with the solution Scott (http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspx ) has given to me, I did this,
\n\nfunction _resize_container_image_box(intImageWidth,intImageHeight) {\n// Get current width and height\n//rescale if necessary\nif((settings.maxWidth != null && settings.maxHeight != null) && (intImageWidth > settings.maxWidth || intImageHeight > settings.maxHeight)){\nvar isWider = intImageWidth > intImageHeight;//is the image wide or tall?\nvar scale = isWider ? settings.maxWidth/intImageWidth : settings.maxHeight/intImageHeight;\nintImageWidth = intImageWidth * scale;\nintImageHeight = intImageHeight * scale;\n}\n\n$('#lightbox-image').height(intImageHeight); \n$('#lightbox-image').width(intImageWidth); \nvar intCurrentWidth = $('#lightbox-container-image-box').width();\nvar intCurrentHeight = $('#lightbox-container-image-box').height();\n// Get the width and height of the selected image plus the padding\nvar intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the image´s width and the left and right padding value\nvar intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the image´s height and the left and right padding value\n// Diferences\nvar intDiffW = intCurrentWidth - intWidth;\nvar intDiffH = intCurrentHeight - intHeight;\n// Perfomance the effect\n$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });\nif ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {\nif ( $.browser.msie ) {\n___pause(250);\n} else {\n___pause(100); \n}\n} \n$('#lightbox-container-image-data-box').css({ width: intImageWidth });\n$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });\n};\n
\n\nAND
\n\n$('#gallery a').lightBox( maxHeight: null,\nmaxWidth: null);\n});\n
\n\nBut whenever I do this and click on the image just gets open in browsers annother tab, all the lightbox functinalty fails
\n\nPlease help me to correct it
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "prototype",
- "prototypejs"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414253/timeline",
- "question_comments_url": "/questions/6414253/comments",
- "question_answers_url": "/questions/6414253/answers",
- "question_id": 6414253,
- "owner": {
- "user_id": 444549,
- "user_type": "registered",
- "display_name": "woot586",
- "reputation": 146,
- "email_hash": "2b8b22a4feb9a73e64bd1a51287ef20f"
- },
- "creation_date": 1308586312,
- "last_edit_date": 1308586544,
- "last_activity_date": 1308586574,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Prototype - How to deselect the selected value from a dropdown",
- "body": "How do I deselect the selected value from a dropdown list using Prototype.
\n\nFrom
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2” SELECTED>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nTo
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2”>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nThanks for any help in advance.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 12,
- "accepted_answer_id": 6398800,
- "favorite_count": 7,
- "question_timeline_url": "/questions/6398787/timeline",
- "question_comments_url": "/questions/6398787/comments",
- "question_answers_url": "/questions/6398787/answers",
- "question_id": 6398787,
- "owner": {
- "user_id": 699159,
- "user_type": "registered",
- "display_name": "walle1357",
- "reputation": 348,
- "email_hash": "1d1af4fce4b64ececdfc88b33881bbc9"
- },
- "creation_date": 1308429772,
- "last_activity_date": 1308586389,
- "up_vote_count": 44,
- "down_vote_count": 1,
- "view_count": 843,
- "score": 43,
- "community_owned": false,
- "title": "Javascript Shorthand for getElementById",
- "body": "Is there any shorthand for the JavaScript document.getElementById? Or is there any way I can define one? It gets repetitive retyping that over and over .
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "json"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6414173,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414107/timeline",
- "question_comments_url": "/questions/6414107/comments",
- "question_answers_url": "/questions/6414107/answers",
- "question_id": 6414107,
- "owner": {
- "user_id": 745835,
- "user_type": "registered",
- "display_name": "Mrshll187",
- "reputation": 49,
- "email_hash": "9e16629a5e67bf6bed7b1b519bceafa1"
- },
- "creation_date": 1308585657,
- "last_edit_date": 1308586215,
- "last_activity_date": 1308586215,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 42,
- "score": 0,
- "community_owned": false,
- "title": "In Java, How do I represent multiple objects (of same type) in a single JSON object.",
- "body": "I need to pass the attribtutes of particular type, as apart of a restful service to a javascript which will then display them to a webpage
\n\n @GET\n @Produces(\"application/json\")\n @Consumes(\"application/json\") \n @Path(\"/getStatusAll\")\n\n public void getStatusAll(\n @Context HttpServletRequest request,\n @Context HttpServletResponse response) throws ServletException,\n IOException\n\n{\n\n JSONArray jArray = new JSONArray();\n\n Collection<S> s = Manager.getS().values();\n for (Server i : svr)\n {\n JSONObject m = new JSONObject();\n\n m.put(\"name\",i.getName());\n m.put(\"status\",i.getStatus());\n\n jArray.add(m);\n\n }\n\n return jArray.toString();\n\n\n response.getOutputStream().print(jArray);\n response.flushBuffer();\n}\n
\n\nJAVASCRIPT will need to read ONE JSON object looking like:
\n\n[ {name:someName0, status: someStatus},\n {name:someName1, status: someStatus},\n {name:someName2, status: someStatus}...etc]\n
\n"
- },
- {
- "tags": [
- "javascript",
- "attributes"
- ],
- "answer_count": 5,
- "accepted_answer_id": 6414229,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414060/timeline",
- "question_comments_url": "/questions/6414060/comments",
- "question_answers_url": "/questions/6414060/answers",
- "question_id": 6414060,
- "owner": {
- "user_id": 805629,
- "user_type": "registered",
- "display_name": "joelson",
- "reputation": 6,
- "email_hash": "9d0f36cf7c4c77a62626ef9df43b79a7"
- },
- "creation_date": 1308585493,
- "last_edit_date": 1308585568,
- "last_activity_date": 1308586177,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 34,
- "score": -1,
- "community_owned": false,
- "title": "how get href all images in page using javascript?",
- "body": "how get href all images in page using javascript\nthis code return src how retunr href?
\n\nfunction checkimages() {\n var images = document.images;\n for (var i=0; i<images.length; i++){\n var img =images[i].src;\n alert(img);\n }\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413339,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413183/timeline",
- "question_comments_url": "/questions/6413183/comments",
- "question_answers_url": "/questions/6413183/answers",
- "question_id": 6413183,
- "owner": {
- "user_id": 111479,
- "user_type": "registered",
- "display_name": "tonsils",
- "reputation": 1260,
- "email_hash": "fdbc495cc9b5f7a789650b3ae4592bc4"
- },
- "creation_date": 1308581796,
- "last_edit_date": 1308582871,
- "last_activity_date": 1308586124,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "Manipulate Select Multiple List Setup On Page Load",
- "body": "I have the following two select (multiple lists) which I'm trying to setup as a shuttle by where I provide the user an \"Available List\" on the left which they can select from, which then gets transported to the right select list, which is my \"Assigned List\".
\n\nThe HTML code is as follows:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n\n<select multiple=\"multiple\" name=\"assign_list\" size=\"7\" style=\"width:250px;\" id=\"ASSIGNED_LIST\">\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n
\n\nThrough the use of jQuery, how could I possibly remove from the AVAILABLE_LIST, the options that have been selected and are now in the ASSIGNED_LIST?
\n\nI need to some how perform on the option values only (AVAILABLE_LIST minus ASSIGNED_LIST).
\n\nSo based on the above, the AVAILABLE_LIST would then look like this:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n</select>\n
\n\n**NOTE:Just to make myself clear, I already have the above data setup when entering my page, that is, there are already values in the \"Assigned List\" on the right.
\n\nOn entry when presenting this page with the two select lists to the user, I want to programmatically perform the minus between the two sets in the background. There is no human interaction required as the selection has already been made.
\n\nJust wondering if this is possible?
\n\nThanks.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6401725,
- "favorite_count": 0,
- "closed_date": 1308478690,
- "closed_reason": "not a real question",
- "question_timeline_url": "/questions/6401696/timeline",
- "question_comments_url": "/questions/6401696/comments",
- "question_answers_url": "/questions/6401696/answers",
- "question_id": 6401696,
- "owner": {
- "user_id": 533617,
- "user_type": "unregistered",
- "display_name": "David19801",
- "reputation": 822,
- "email_hash": "cba0529762ef11ebc58637b537a42acd"
- },
- "creation_date": 1308476786,
- "last_edit_date": 1308586104,
- "last_activity_date": 1308586104,
- "up_vote_count": 0,
- "down_vote_count": 2,
- "view_count": 70,
- "score": -2,
- "community_owned": false,
- "title": "javascript, what is this?",
- "body": "I have found this javascript code from instapaper's bookmarklet.
\n\nWhat exactly is this code doing?
\n\njavascript:\nfunction%20iprl5(){\n var%20d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;\n try{\n if(!b)\n throw(0);\n d.title='(Saving...)%20'+d.title;\n z.setAttribute('src',l.protocol+'//www.instapaper.com/j/deyNbbpjuSei?u='+encodeURIComponent(l.href)+'&t='+(new%20Date().getTime()));\n b.appendChild(z);\n }\n catch(e){\n alert('Please%20wait%20until%20the%20page%20has%20loaded.');\n }\n}\niprl5();\nvoid(0)\n
\n\nThanks in advance!
\n"
- },
- {
- "tags": [
- "javascript",
- "python",
- "web-scraping",
- "hashbang",
- "phantomjs"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414152/timeline",
- "question_comments_url": "/questions/6414152/comments",
- "question_answers_url": "/questions/6414152/answers",
- "question_id": 6414152,
- "owner": {
- "user_id": 321838,
- "user_type": "registered",
- "display_name": "tchaymore",
- "reputation": 328,
- "email_hash": "e6f67177880fb558b629820b882b159b"
- },
- "creation_date": 1308585846,
- "last_activity_date": 1308585846,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 15,
- "score": 1,
- "community_owned": false,
- "title": "Navigating / scraping hashbang links with javascript (phantomjs)",
- "body": "I'm trying to download the HTML of a website that is almost entirely generated by JavaScript. So, I need to simulate browser access and have been playing around with PhantomJS . Problem is, the site uses hashbang URLs and I can't seem to get PhantomJS to process the hashbang -- it just keeps calling up the homepage.
\n\nThe site is http://www.regulations.gov . The default takes you to #!home. I've tried using the following code (from here ) to try and process different hashbangs.
\n\nif (phantom.state.length === 0) {\n if (phantom.args.length === 0) {\n console.log('Usage: loadreg_1.js <some URL>');\n phantom.exit();\n }\n var address = 'http://www.regulations.gov/';\n var hash = phantom.args[0];\n console.log(address);\n phantom.state = Date.now().toString();\n phantom.open(address);\n\n} else {\n var hash = phantom.args[0];\n document.location = hash;\n console.log(document.location.hash);\n var elapsed = Date.now() - new Date().setTime(phantom.state);\n if (phantom.loadStatus === 'success') {\n if (!first_time) {\n var first_time = true;\n if (!document.addEventListener) {\n console.log('Not SUPPORTED!');\n }\n phantom.render('result.png');\n var markup = document.documentElement.innerHTML;\n console.log(markup);\n phantom.exit();\n }\n } else {\n console.log('FAIL to load the address');\n phantom.exit();\n }\n}\n
\n\nThis code produces the correct hashbang (for instance, I can set the hash to '#!contactus') but it doesn't dynamically generate any different HTML--just the default page.
\n\nI've also tried to set the initial address to the hashbang, but then the script just hangs and doesn't do anything.
\n\nThoughts?
\n"
- },
- {
- "tags": [
- "javascript",
- "facebook",
- "api",
- "like",
- "app-id"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414105/timeline",
- "question_comments_url": "/questions/6414105/comments",
- "question_answers_url": "/questions/6414105/answers",
- "question_id": 6414105,
- "owner": {
- "user_id": 806911,
- "user_type": "registered",
- "display_name": "anson",
- "reputation": 1,
- "email_hash": "26415c14e002ed031a23225efdebc7c7"
- },
- "creation_date": 1308585655,
- "last_activity_date": 1308585655,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 8,
- "score": 0,
- "community_owned": false,
- "title": "Facebook API FB.getLoginStatus returns undefined",
- "body": "I have added a like button on my website, and want to know who clicked the like button.\nThese are my sample code:
\n\n <div id=\"fb-root\"></div>\n <script>\n window.fbAsyncInit = function() {\n FB.init({appId: '182722795115444', status: true, cookie: true,\n xfbml: true});\n\n // To find who clicked the like button\n FB.Event.subscribe('edge.create', function(response){\n FB.getLoginStatus(function(response) {\n\n if (response.session) {\n // logged in and connected user, someone you know\n alert(\"logged in and connected user\");\n } else {\n // no user session available, someone you dont know\n alert(\"no user session available\");\n }\n });\n });\n };\n (function() {\n var e = document.createElement('script'); e.async = true;\n e.src = document.location.protocol +\n '//connect.facebook.net/en_US/all.js';\n document.getElementById('fb-root').appendChild(e);\n }());\n </script>\n <script src=\"http://connect.facebook.net/en_US/all.js#appId=182722795115444&xfbml=1\"></script>\n <fb:like href=\"www.blogcountry.net\" send=\"true\" width=\"450\" show_faces=\"true\" font=\"\"></fb:like>\n
\n\nWhen I clicked the Like button, and login facebook, do like successfully, but got \"no user session available\" alert.
\n\nSo I am confused:
\n\n\nMy appId in FB.init is the same as\nfb:like tag, is it right? \nAre there something wrong in my\nprogram ? \nHow to get user name who click the\nLike button? \n \n\nThanks in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "xml",
- "firefox"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6410184/timeline",
- "question_comments_url": "/questions/6410184/comments",
- "question_answers_url": "/questions/6410184/answers",
- "question_id": 6410184,
- "owner": {
- "user_id": 282887,
- "user_type": "registered",
- "display_name": "Bakhtiyor",
- "reputation": 663,
- "email_hash": "5422e34c270c77415bbcc6ed93544b3d"
- },
- "creation_date": 1308567697,
- "last_edit_date": 1308568088,
- "last_activity_date": 1308585449,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 52,
- "score": 1,
- "community_owned": false,
- "title": "jQuery.find().each(fn) is not working in Firefox",
- "body": "I have AJAX call to one XML file and the source code is given below. It works perfectly in Chrome but is not working in Firefox. When doing debug I see that it doesn't enter to the cycle of $(response).find(\"simpleType\").each(function() in Firefox.
\n\nDoes anybody know what is the problem here in my code?
\n\n$.ajax({\n type:\"GET\",\n url:\"views/workspace/branching_forms/StudentModelDescription.xml\",\n dataType:\"xml\",\n error:function(XMLHttpRequest, textStatus, errorThrown){\n alert(\"error=\"+XMLHttpRequest+\" error2=\"+textStatus+\" error3=\"+errorThrown);\n },\n success:function(response){ \n var i=1;\n console.log(\"response=\"+response);\n $(response).find(\"simpleType\").each(function(){ \n adaptation_type_name[i]=$.trim($(this).find(\"documentation\").text()); \n var restriction = $(this).find(\"restriction[base=xs:string]\");\n j=1;\n var values=new Array(); \n $(restriction).find(\"enumeration\").each(function(){\n var tmp=$(this).attr(\"value\"); \n values[j] = tmp;\n j++;\n });\n adaptation_type_variables[i]=values; \n console.log(\"adaptation_type_name=\"+adaptation_type_name[i]+\", adaptation_type_variables=\"+adaptation_type_variables[i]);\n i++; \n }); \n for(var i=1;i<=adaptation_type_name.length;i++) \n $('#adaptation_type_dialog #branching_adaptation_type').append($(\"<option></option>\").attr(\"value\",i).text(adaptation_type_name[i]));\n\n }\n});\n
\n\nThe content of StudentModelDescription.xml is given below:
\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">\n <xs:simpleType name=\"browser\" id=\"context_browser\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Web Browser</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"Safari\" id=\"1\" />\n <xs:enumeration value=\"Google Chrome\" id=\"2\" />\n <xs:enumeration value=\"Opera\" id=\"3\" />\n <xs:enumeration value=\"Mozilla Firefox\" id=\"4\" />\n <xs:enumeration value=\"Internet Explorer\" id=\"5\" />\n </xs:restriction>\n </xs:simpleType> \n <xs:simpleType name=\"networktype\" id=\"context_networktype\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Network Type</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"ADSL2+/Cable (High capacity)\" id=\"1\" />\n <xs:enumeration value=\"ADSL / HSPA (Moderate capacity)\" id=\"2\" />\n <xs:enumeration value=\"Dialup / GPRS (Low capacity)\" id=\"3\" />\n </xs:restriction>\n </xs:simpleType>\n</xs:schema>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "ajax",
- "jquery-ajax"
- ],
- "answer_count": 2,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6413944/timeline",
- "question_comments_url": "/questions/6413944/comments",
- "question_answers_url": "/questions/6413944/answers",
- "question_id": 6413944,
- "owner": {
- "user_id": 592435,
- "user_type": "registered",
- "display_name": "Ravi Teja",
- "reputation": 33,
- "email_hash": "4e774187456a5953a4cf97f60344ec26"
- },
- "creation_date": 1308584971,
- "last_activity_date": 1308585353,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Changing content of a webpage using Ajax",
- "body": "Is it possible to change the content of a webpage using ajax?\nMy need is to actually change the options of a selection. \nFor example my x123.com/setting.html
\n\n<html>\n<head>\n <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\">\n <title>Webpage</title> \n <script>\n function save_changes() {\n //save the selection\n }\n </script>\n\n</head> \n<body>\n <select name=\"\" multiple>\n <option value=\"123\">123</option>\n <option value=\"456\">456</option>\n </select> \n <input type=\"button\" name=\"Submit Dude\" onclick='save_changes()'>\n</body> \n</html>\n
\n\nI want to give a request from x123.com/123.html
and reload the current page(x123.com/123.html
) so that the changes in x123.com/setting.html
are actually reflected in this one.
\n\nLemme know if my explanation is not clear.
\n"
- },
- {
- "tags": [
- "javascript",
- "forms",
- "user"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413889/timeline",
- "question_comments_url": "/questions/6413889/comments",
- "question_answers_url": "/questions/6413889/answers",
- "question_id": 6413889,
- "owner": {
- "user_id": 789918,
- "user_type": "registered",
- "display_name": "Mauricio",
- "reputation": 6,
- "email_hash": "29de018a3ee44a96503802c7516d7660"
- },
- "creation_date": 1308584750,
- "last_activity_date": 1308585305,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "Use JavaScript to store and return user info",
- "body": "I'm looking for a way to have users fill out a form and then print their information through the entire site (Like when you sign in to StackOverflow, your name changes on the top and it retains the information as you navigate the rest of the site). I'm thinking it's something to do with placing \"onClick\" on the submit button, but I need the information to be carried throughout the pages.
\n\n<form name=\"input\" action=\"html_form_action.asp\" method=\"get\">\nFirst name: <input type=\"text\" name=\"FirstName\" value=\"Mickey\" /><br />\nLast name: <input type=\"text\" name=\"LastName\" value=\"Mouse\" /><br />\n<input type=\"submit\" value=\"Submit\" />\n</form> \n
\n\nThanks in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "xml",
- "xslt",
- "firefox-addon"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413778/timeline",
- "question_comments_url": "/questions/6413778/comments",
- "question_answers_url": "/questions/6413778/answers",
- "question_id": 6413778,
- "owner": {
- "user_id": 806920,
- "user_type": "registered",
- "display_name": "Lukas Ruge",
- "reputation": 1,
- "email_hash": "be5ae20541e29f445166885a87a81d35"
- },
- "creation_date": 1308584172,
- "last_edit_date": 1308584542,
- "last_activity_date": 1308585270,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 10,
- "score": 0,
- "community_owned": false,
- "title": "javascript: Problem with dynamically adding xsl-stylesheet to XML Data",
- "body": "I'm trying to write my first Firefoy-Eytension. The extension is supposed to display FOAF-Files in a nice way using XSLT. Right now I just wan't to add the XSL Stylesheet to the rdf file when I press a button. The function is called but the presentation of the rdf-file does not change.
\n\nfunction loadXMLDoc(dname)\n{\n if (window.XMLHttpRequest)\n {\n xhttp=new XMLHttpRequest();\n }\n else\n {\n xhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n xhttp.open(\"GET\",dname,false);\n xhttp.send(\"\");\n return xhttp.responseXML;\n}\n\nfunction displayMyResult()\n{\n alert(\"test\")\n xml=loadXMLDoc(\"http://www.example.com/me.rdf\");\n xsl=loadXMLDoc(\"http://www.example.com/test.xsl\");\n if (window.ActiveXObject)\n {\n ex=xml.transformNode(xsl);\n content.document.location.replace(ex)\n }\n // code for Mozilla, Firefox, Opera, etc.\n else if (document.implementation && document.implementation.createDocument)\n {\n xsltProcessor=new XSLTProcessor();\n xsltProcessor.importStylesheet(xsl);\n resultDocument = xsltProcessor.transformToFragment(xml,document);\n content.document.location.replace(ex)\n }\n}\n
\n\nThe first function loadXMLDoc is copied from another post here, and should probably work. The Probem is in the displayMyResult Method. The test-Alert confirms, that the function is called but the me.rdf file is not displayed any different.
\n\nI belive that the line content.document.location.replace(ex) is wrong but have not found anything on the web that would explain to me what to use instead.
\n\nCan anybody tell me how to load the XLST-Stylesheet to present the RDF File?
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "html",
- "scala",
- "htmlunit"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6365007,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6364675/timeline",
- "question_comments_url": "/questions/6364675/comments",
- "question_answers_url": "/questions/6364675/answers",
- "question_id": 6364675,
- "owner": {
- "user_id": 107877,
- "user_type": "registered",
- "display_name": "Mike Cialowicz",
- "reputation": 1905,
- "email_hash": "818df74dc3bb3fd1d8a1848e238b53d6"
- },
- "creation_date": 1308173653,
- "last_activity_date": 1308584950,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "HtmlUnit's HtmlPage.getElementById seems to reinitialize JavaScript after many calls.",
- "body": "I have a simple HTML page (ratings.html) that I'm trying to test using HtmlUnit. The action that I'm testing works when I load it up in a browser and do it by hand. However, when I try to test it with HtmlUnit, it seems like too many calls to getElementById (or getInputByName) cause the JavaScript on the page to be reinitialized.
\n\nIn the AddRating.scala test, the first two calls to page.addRating work, but the third fails because it can't find the 'rating3' element on the page. After lots of debugging, I've discovered that the ratingCount
gets reset back to 0 for some reason.
\n\nSee my comments below (between the // ******
sections) to see where the problem areas are.
\n\nHas anyone else experience this behavior or have any advice on how to deal with it? Thanks!
\n\nratings.html (HTML Page to add \"ratings\"):
\n\n<html>\n <head>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\"></script>\n <script src=\"http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js\"></script>\n </head>\n <body>\n <form name=\"new-rating\" method=\"post\" action=\"/add-rating\">\n <table>\n <tr>\n <td valign=\"top\">Ratings:</td>\n <td>\n Should be ordered from best to worst.<br>\n <a id=\"add-rating\" href=\"#\">add rating</a></td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button name=\"submit-button\" type=\"submit\">Add Rating</button>\n </td>\n </tr>\n </table>\n </form>\n <h2>All Ratings</h2>\n\n <ul id=\"ratings\">\n </ul>\n\n <script>\n $(window).load(function(){ \n // display ratings\n $.getJSON(\"/ratings\", function(data)\n {\n var items = $.map(data, function(el) {\n var ratingsTable = \"\";\n if (el.ratings.length > 0)\n {\n $.tmpl(\"<li><table><tr><th>Rating</th></tr>{{each ratings }}<tr><td>${$value.label}</td></tr>{{/each}}</table></li>\", el).appendTo(\"#ratings\");\n }\n });\n });\n\n // add rating action\n // ***********\n var ratingCount = 0; // THIS GETS RE-INITIALIZED TO 0 AFTER TOO MANY getElementById or getElementByName calls.\n // ***********\n $('#add-rating').click(function()\n {\n ratingCount += 1;\n $('#remove-rating').show();\n $.tmpl(\"<span id='rating${ratingId}'><input name='rating${ratingId}'><br></span>\",\n {ratingId: ratingCount}).insertBefore('#add-rating');\n if(ratingCount >= 5) { $('#add-rating').hide(); }\n });\n });\n </script>\n </body>\n</html>\n
\n\nRatingsPage.scala (Scala interface to HTML page):
\n\npackage portal\n\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\n\nimport infrastructure.SuperHtmlUnitConversions._\n\nimport infrastructure.WaitFor\n\nclass RatingsPage(page: HtmlPage)\n{\n val newRatingForm: HtmlForm = page.getFormByName(\"new-rating\")\n\n var ratingCount = 0\n\n def submit(): RatingsPage =\n {\n val page = newRatingForm.getButtonByName(\"submit-button\").click[HtmlPage]()\n ratingCount = 0\n new RatingsPage(page)\n }\n\n def addRating(rating: String)\n {\n page.getElementById(\"add-rating\").click()\n ratingCount += 1\n newRatingForm.getInputByName(\"rating\" + ratingCount).asInstanceOf[HtmlInput].setValueAttribute(rating)\n }\n\n def asText(): String = page.asText\n def asXml(): String = page.asXml\n}\n
\n\nAddRating.scala (Scala HtmlUnit test that fails):
\n\npackage portal\n\nimport java.util.Date\nimport org.scalatest.FunSuite\nimport org.scalatest.junit.JUnitRunner\nimport org.junit.runner.RunWith\nimport org.scalatest.matchers.ShouldMatchers\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\nimport infrastructure.WaitFor\n\n@RunWith(classOf[JUnitRunner])\nclass AddRating extends FunSuite with ShouldMatchers\n{\n test(\"add ratings\")\n {\n val client = new WebClient()\n val index = new PortalIndexPage(client)\n var page = index.goToRatingsPage()\n\n page.addRating(\"Buy\") // WORKS\n page.addRating(\"Sell\") // WORKS\n // *********\n page.addRating(\"Sell\") // FAILS! Can't find element with \"rating3\" name!\n // *********\n page = page.submit()\n WaitFor(\"rating to show up\", ()=>page.asXml.contains(\"Sell\"))\n\n page.asText should include (\"Buy\")\n\n client.closeAllWindows()\n }\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "express",
- "socket.io"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6397574/timeline",
- "question_comments_url": "/questions/6397574/comments",
- "question_answers_url": "/questions/6397574/answers",
- "question_id": 6397574,
- "owner": {
- "user_id": 776796,
- "user_type": "registered",
- "display_name": "user776796",
- "reputation": 20,
- "email_hash": "9409cb9468f20f7b03a6515bdf5ff81c"
- },
- "creation_date": 1308417018,
- "last_edit_date": 1308444873,
- "last_activity_date": 1308584891,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 39,
- "score": 3,
- "community_owned": false,
- "title": "How to access session in express, outside of the req?",
- "body": "I know that I can use
\n\nfunction(req, res) {\n req.session\n}\n
\n\nusing express. However I need to access the session outside of the response function. How would I go about doing that?
\n\nI'm using socket.io to pass information for adding posts and comments. So when I receive the socket.io message on the server-side, I need to verify the person posting the information by using the session. However since this is being done via socket.io there is no req/res.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "xml",
- "check"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6405964/timeline",
- "question_comments_url": "/questions/6405964/comments",
- "question_answers_url": "/questions/6405964/answers",
- "question_id": 6405964,
- "owner": {
- "user_id": 672841,
- "user_type": "registered",
- "display_name": "Can't Tell",
- "reputation": 469,
- "email_hash": "031c656239e481086f37717b07b17522"
- },
- "creation_date": 1308530151,
- "last_edit_date": 1308534239,
- "last_activity_date": 1308584597,
- "up_vote_count": 1,
- "down_vote_count": 1,
- "view_count": 75,
- "score": 0,
- "community_owned": false,
- "title": "Check if a String is HTML or XML",
- "body": "Is there a way to check if a String is HTML or XML in JavaScript? Preferably using jQuery rather than some other library?\nWhy I need to do this is because I need to know if it possible to have a function into which XML or HTML can be passed. If it is HTML we take one action and if it is XML we take another action.
\n"
- },
- {
- "tags": [
- "javascript",
- "settimeout",
- "autosuggest"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413523/timeline",
- "question_comments_url": "/questions/6413523/comments",
- "question_answers_url": "/questions/6413523/answers",
- "question_id": 6413523,
- "owner": {
- "user_id": 806915,
- "user_type": "unregistered",
- "display_name": "Scott Dykstra",
- "reputation": 6,
- "email_hash": "e58f134cbdd998fd90d6951043fbf274"
- },
- "creation_date": 1308583177,
- "last_activity_date": 1308584532,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 24,
- "score": 1,
- "community_owned": false,
- "title": "complex problem with setTimeout, clearTimeout, and javascript",
- "body": "I am a bit of a noob at Javascript and am writing an \"autoresult\" script that automatically gets the results of an as the user is typing. However, because the PHP backend is slow, I want the script to check and see if it has been 1 second since the last keyup. That way, the PHP backend won't be called unless the user is done typing. My idea was to use setTimeout and clearTimeout to handle this. However, my script doesn't work. Here is the input that calls the script:
\n\n<input type=\"text\" id=\"inputbox\" onkeyup=\"lookup_input(this.value,0);\" />\n
\n\n\"0\" is a flag used to check whether a Timeout has been set. Here is the script:
\n\nvar timeOut1;\n\nfunction showQuery(input_myinput2) { \n $.post(\"mybackendfile.php\", {queryString: input_myinput2}, function(data){\n if(data.length >0) {\n $('#mydiv').html(data); //php backend stuff, don't worry about this\n }\n });\n} \nfunction lookup_input(input_myinput,flag) {\n if(input_myinput.length == 0) {\n $('#mydiv').hide(); //check to see if there is an input, and if not, hide the div that displays autoresults\n } \n else { \n //the flag checks to see if the Timeout has been set\n\n if(!flag) { \n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000);\n //change the flag to \"1\" so that if another key is pressed it will throw the else statement, and if the key is pressed soon enough, it will clear the Timeout\n $('#inputbox').onkeyup('lookup_input(this.value,1)'); \n $('#mydiv').show();\n $('#mydiv').html('Searching... ');\n }\n else { //if timeout has been set then and next key has been pressed\n clearTimeout(timeOut1);\n $('#mydiv').html('Searching... ');\n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000); \n }\n }\n} \n
\n\nany suggestions on how to access the showQuery function correctly and how to get this script to work? also, any suggestions on another way to do the autoresult stall besides using setTimeout/clearTimeout? thanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "facebook",
- "innerhtml",
- "getelementbyid"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413720/timeline",
- "question_comments_url": "/questions/6413720/comments",
- "question_answers_url": "/questions/6413720/answers",
- "question_id": 6413720,
- "owner": {
- "user_id": 193996,
- "user_type": "registered",
- "display_name": "Dasa",
- "reputation": 84,
- "email_hash": "3e365666b8b4473179ab1cdc05c0ec36"
- },
- "creation_date": 1308583956,
- "last_edit_date": 1308584446,
- "last_activity_date": 1308584446,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "facebook wall post message with js from innerhtml",
- "body": "Three divs nested in one
\n\n<div id=\"fulltxt\">\n<div id='action'>txt1 </div>\n<div id='reason'> txt2 </div>\n<div id=\"party\"> txt3 </div>\n</div>\n
\n\nusing encodeURIComponent I want to use all the text as a message to send to users wall when they click my \"send to facebook\" link
\n\nThis is in my
\n\n<script>\n // A function to post on the users wall\n function wallPost() {\n FB.ui(\n {\n method: 'feed',\n name: 'example',\n link: 'http://www.example.com',\n picture: 'http://www.example.com/logo.png',\n caption: 'funny example',\n description: 'This was posted from example.com.',\n message: ''\n },\n function(response) {\n if (response && response.post_id) {\n document.getElementById('message').innerHTML = 'Thanks for sharing!';\n } else {\n document.getElementById('message').innerHTML = 'Hey, you didn\\'t share!';\n }\n }\n );\n }\n</script>\n
\n\nThis is before my closing body tag
\n\n<div id=\"fb-root\"></div>\n<script src=\"https://connect.facebook.net/he_IL/all.js\"></script>\n<script>\n FB.init({\n appId : 'number goes here',\n status : true, // check login status\n cookie : true, // enable cookies to allow the server to access the session\n xfbml : true // parse XFBML\n });\n</script>\n
\n\nThis is the link
\n\n<p id=\"message\">\n <a href=\"#\" onclick=\"wallPost();\">Share Me!</a>\n</p>\n
\n\nSo what I need is that when the link is clicked the message changes to the content of fulltxt and passes to facebook
\n\nhow do i change the message in the wallpost function to the dynamically created content in the fulltxt div
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-ui",
- "droppable"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412334/timeline",
- "question_comments_url": "/questions/6412334/comments",
- "question_answers_url": "/questions/6412334/answers",
- "question_id": 6412334,
- "owner": {
- "user_id": 797743,
- "user_type": "registered",
- "display_name": "Jason S",
- "reputation": 1,
- "email_hash": "228384247e084ecfab05558229195aba"
- },
- "creation_date": 1308578149,
- "last_edit_date": 1308581741,
- "last_activity_date": 1308584195,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 37,
- "score": 0,
- "community_owned": false,
- "title": "jQuery \"drop\" and \"over\" are not firing on a droppable",
- "body": "I was trying to improve my web-dev skills for work but got a bit carried away with jQuery's drag and drop feature. Unfortunately I can't get the \"drop\" or \"over\" events of the droppable to fire.
\n\nI didn't want to use a jQuery table drag/drop plugin so i have multiple div in a div in a td structures (all generated in $(document).ready). The middle div is to be the droppable and the inner most div is to be the draggable. The generated HTML looks like this:
\n\n<td class=\"vertical\">\n<div id=\"droppable3\" class=\"droppable ui-droppable\" style=\"width: 100%; height: 100%;\"\nover=\"function () { alert(\"working!\"); }\" \ndrop=\"function (event, ui) { \n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\" + firstDrag.id + \"\\nSecondDrag:\" + secondDrag.id\n + \"\\ndest Drop:\" + destDrop.id + \"\\nsourceDrop:\" + sourceDrop.id); }\">\n <div id=\"draggable3\" class=\"draggable ui-draggable\" \n style=\"width: 100%; height: 100%;\">\n </div>\n</div>\n</td>\n
\n\nand it is exactly the same in other TDs except for the ids.
\n\nNow the dragging seems to work fine; i can drag that inner div out and it will revert back if i don't put it on an appropriate droppable or just stick there if i do but it never triggers the \"over\" or \"drop\" events. The debugger line in that code is never hit.
\n\nHere is how i'm setting up the draggable/droppable:
\n\nfunction getTD(claz){\nvar td = jQuery(\"<td/>\",{'class': claz});\nvar droppable = jQuery(\"<div/>\",{\n 'class': 'droppable',\n width: '100%',\n height:'100%',\n id: \"droppable\"+ids[index],\n over: function() {\n alert('working!');\n },\n drop: function(event,ui){\n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\"+firstDrag.id +\"\\nSecondDrag:\"+secondDrag.id\n +\"\\ndest Drop:\"+destDrop.id +\"\\nsourceDrop:\"+sourceDrop.id);\n\n }\n });\n var draggable = jQuery(\"<div/>\",{\n 'class': 'draggable',\n width: '100%',\n height:'100%',\n id: \"draggable\"+ids[index], \n });\n\n draggable.draggable({\n revert: 'invalid'\n });\n droppable.droppable({\n accept: \".draggable\"\n });\n index++;\n droppable.append(draggable);\n td.append(droppable);\n return td;\n
\n\n}
\n\nBasically what i am trying to achieve is swappable tiles in a table and i'm pretty sure the js in the event handler is rubbish but we'll deal with that once it's firing.
\n\nOh and im using:\nhttps://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js \nhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js
\n\nAny comments would be appreciated.\nThanks :)
\n\nEDIT:
\n\nI was being really stupid. I was putting the \"drop\" and \"over\" events in the attributes of the element, not the options of the droppable!
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps",
- "google"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413747,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413541/timeline",
- "question_comments_url": "/questions/6413541/comments",
- "question_answers_url": "/questions/6413541/answers",
- "question_id": 6413541,
- "owner": {
- "user_id": 478489,
- "user_type": "registered",
- "display_name": "amix.pal",
- "reputation": 10,
- "email_hash": "18018fe3a71122bc0648943d6892ffb3"
- },
- "creation_date": 1308583220,
- "last_edit_date": 1308583832,
- "last_activity_date": 1308584113,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 21,
- "score": 0,
- "community_owned": false,
- "title": "Put an image on Google map",
- "body": "I am creating a web page which shows the Google map using java script. I did this part now i have to pun an image on that map as a icon.Would you please tell me how will i able to do that?
\n\n\n\n
\n\n<script language=\"javascript\">\n var lat=1067;\n var lon=-110;\n\n function load() {\n if (GBrowserIsCompatible()) {\n var map = new GMap2(document.getElementById(\"map\"));\n map.setCenter(new GLatLng(lat, lon), 13);\n }\n }\n function map(position) {\n lat = position.coords.latitude;\n lon = position.coords.longitude;\n load();\n }\n function get_location() {\n navigator.geolocation.getCurrentPosition(map);\n }\n </script>\n
\n\n\n\nSearch
\n\n\n\nThanks\nAmit Pal
\n"
- },
- {
- "tags": [
- "javascript",
- "image-processing",
- "webgl"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413744/timeline",
- "question_comments_url": "/questions/6413744/comments",
- "question_answers_url": "/questions/6413744/answers",
- "question_id": 6413744,
- "owner": {
- "user_id": 400327,
- "user_type": "registered",
- "display_name": "Trevor",
- "reputation": 8,
- "email_hash": "a26652004f1b6ed7f5764189ce722823"
- },
- "creation_date": 1308584078,
- "last_activity_date": 1308584078,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Looking to access 16-bit image data in Javascript/WebGL",
- "body": "I'm trying to download 16-bit image data from a server and push it into a WebGL texture without browser plug-ins. texImage2d will work with: ImageData, HTMLImageElement, HTMLCanvasElement, or HTMLVideoElement. I'm looking for some javascript (a library or code sample) which can decode 16-bit TIFF or similar (hdf5, etc.) image data into one of these object types.
\n\nI have no problem doing this is 8-bit per channel RGB by using an to load a PNG but this doesn't work with 16-bit per channel data since there aren't any \"standard\" browser supported image formats which are 16-bit.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "function",
- "variables",
- "passing"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413440/timeline",
- "question_comments_url": "/questions/6413440/comments",
- "question_answers_url": "/questions/6413440/answers",
- "question_id": 6413440,
- "owner": {
- "user_id": 389271,
- "user_type": "registered",
- "display_name": "android.nick",
- "reputation": 696,
- "email_hash": "7fb8e97ca4d0322cdad566c81437e38a"
- },
- "creation_date": 1308582821,
- "last_activity_date": 1308583854,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 22,
- "score": 1,
- "community_owned": false,
- "title": "Jquery: passing variable to the next chained function, is this the correct way?",
- "body": "I want to know if this is correct.
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n}).blur(function(length){\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nAbove i've simplified my code, im just checking if length == 0
on focus and blur for my input. notice how I declared length
in focus, but not in blur, but i added the variable name inside .blur(function(length){
. Is this the better way to get length
accessible in .blur
without having to re-declare var length = $(this).val().length;
in .blur?
\n\nas opposed to this:
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n})\n\n$('.myfilter').blur(function(length){\n var length = $(this).val().length;\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nthe first code block is the better way to do this?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "safari",
- "google-chrome",
- "webkit"
- ],
- "answer_count": 14,
- "accepted_answer_id": 670433,
- "favorite_count": 24,
- "question_timeline_url": "/questions/318630/timeline",
- "question_comments_url": "/questions/318630/comments",
- "question_answers_url": "/questions/318630/answers",
- "question_id": 318630,
- "owner": {
- "user_id": 27623,
- "user_type": "registered",
- "display_name": "Frank Bannister",
- "reputation": 207,
- "email_hash": "9209ea2a036a546d315da5600f0025b9"
- },
- "creation_date": 1227642278,
- "last_activity_date": 1308583654,
- "up_vote_count": 26,
- "down_vote_count": 0,
- "view_count": 51874,
- "score": 26,
- "community_owned": false,
- "title": "Get real image width and height with Javascript in Safari/Chrome?",
- "body": "I am creating a jQuery plugin.
\n\nHow do I get real image width and height with Javascript in Safari?
\n\nFollowing works with Firefox 3, IE7 and Opera 9:
\n\nvar pic = $(\"img\")\n\n// need to remove these in of case img-element has set width and height\npic.removeAttr(\"width\"); \npic.removeAttr(\"height\");\n\nvar pic_real_width = pic.width();\nvar pic_real_height = pic.height();\n
\n\nBut in Webkit browsers like Safari and Google Chrome values are 0...
\n\nDoing this on server side is not an option.
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "web-development"
- ],
- "answer_count": 4,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6411964/timeline",
- "question_comments_url": "/questions/6411964/comments",
- "question_answers_url": "/questions/6411964/answers",
- "question_id": 6411964,
- "owner": {
- "user_id": 213738,
- "user_type": "registered",
- "display_name": "Mattis",
- "reputation": 484,
- "email_hash": "80fe3a01e22a86fa6c652ee7d75d5b31"
- },
- "creation_date": 1308576818,
- "last_edit_date": 1308583543,
- "last_activity_date": 1308583543,
- "up_vote_count": 1,
- "down_vote_count": 1,
- "view_count": 54,
- "score": 0,
- "community_owned": false,
- "title": "Should I rely on externally-hosted services?",
- "body": "I am wondering over the dangers / difficulties in using external services like Google Chart in my production state website.
\n\nWith external services I mean them that you can't download and host on your own server.
\n\n(-) Potentially the Google service can be down when my site is up.
\n\n(+) I don't have to develop those particular systems for new browser technologies, hopefully Google will do that for me.
\n\n(-) Extra latency while my site fetch the data from the google servers.
\n\nWhat else? Is it worth spending time and money to develop my own systems to be more in control of things?
\n"
- },
- {
- "tags": [
- "javascript",
- "unit-testing",
- "visual-studio-2010"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413599,
- "favorite_count": 4,
- "question_timeline_url": "/questions/3827055/timeline",
- "question_comments_url": "/questions/3827055/comments",
- "question_answers_url": "/questions/3827055/answers",
- "question_id": 3827055,
- "owner": {
- "user_id": 50660,
- "user_type": "registered",
- "display_name": "Matthew Manela",
- "reputation": 3812,
- "email_hash": "288e49ea9ee1aa8516598465d9473033"
- },
- "creation_date": 1285809580,
- "last_activity_date": 1308583475,
- "up_vote_count": 11,
- "down_vote_count": 0,
- "view_count": 564,
- "score": 11,
- "community_owned": false,
- "title": "Run JavaScript unit tests inside of Visual Studio 2010",
- "body": "I have been searching for a good way to run JavaScript unit tests inside of the Visual Studio 2010 IDE. I currently use TestDriven.net to run my C# units tests and it is very convenient to be able to quickly get the result of my tests in the output pane. I would love to find a similar experience for JavaScript (ideally working with TestDriven.net).
\n\nI have read about different solutions that let you execute JavaScrpt unit tests. Some have their own JS engine while others like JS-Test-Driver are able to send the code to the browsers and fetch the results. But I have yet to see something that is integrated into VS 2010.
\n\nDoes anyone know of an extension that might do this?
\n"
- },
- {
- "tags": [
- "javascript",
- "dojo",
- "include-path",
- "dojo.data"
- ],
- "answer_count": 1,
- "accepted_answer_id": 6413578,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413327/timeline",
- "question_comments_url": "/questions/6413327/comments",
- "question_answers_url": "/questions/6413327/answers",
- "question_id": 6413327,
- "owner": {
- "user_id": 420613,
- "user_type": "registered",
- "display_name": "imran tariq",
- "reputation": 338,
- "email_hash": "67ebeef7b7b8d5533f5caf77074c62b8"
- },
- "creation_date": 1308582333,
- "last_activity_date": 1308583401,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 7,
- "score": 0,
- "community_owned": false,
- "title": "DOJO include files a directory back",
- "body": "I have dojo files in resources/js/dojo1.6/dojo/dojo.js
\n\nI have another file here resources/js/pages/file1.js
\n\nThis file requires another file which is located at resources/js/folder/file2.js
\n\nThis is how I am including it dojo.require('folder.file2');
\n\nSo these three folder are in hirarchy
\n\ndojo1.6 , pages and folder
\n\nWhen I run application
\n\nI got the following error
\n\nFile not found: /resources/js/dojo1.6/folder/file2.js\n
\n\nHow can I overcome this error.
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "ajax",
- "undo-redo"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6394284,
- "favorite_count": 1,
- "question_timeline_url": "/questions/4508230/timeline",
- "question_comments_url": "/questions/4508230/comments",
- "question_answers_url": "/questions/4508230/answers",
- "question_id": 4508230,
- "owner": {
- "user_id": 380403,
- "user_type": "registered",
- "display_name": "Bakaburg",
- "reputation": 112,
- "email_hash": "02c4213274d414cb8da4f34108f355db"
- },
- "creation_date": 1293013795,
- "last_activity_date": 1308583384,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 65,
- "score": 1,
- "community_owned": false,
- "title": "php/ajax user actions undo manager",
- "body": "does exist a library that gives you undo/redo capability with history for a web app? An idea would be a php/javascript/ajax system in which you can register for every user action an opposite action and the variable state (like a normal undo manager!). and it should work both at client level and server level.
\n\nDid i ask too much?
\n"
- },
- {
- "tags": [
- "javascript",
- "extjs",
- "grid",
- "columns",
- "extjs4"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6409972/timeline",
- "question_comments_url": "/questions/6409972/comments",
- "question_answers_url": "/questions/6409972/answers",
- "question_id": 6409972,
- "owner": {
- "user_id": 322251,
- "user_type": "registered",
- "display_name": "shane87",
- "reputation": 469,
- "email_hash": "90611479ceffc2da2d62d5f6134a5565"
- },
- "creation_date": 1308566525,
- "last_activity_date": 1308583282,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "How to dynamically set the grids CheckBox Selection Model in ExtJs4?",
- "body": "This leads on from my previous question . \nI initialize a grid with a CheckBox Selection Model, however when I reconfigure the grid the Check Box Selection Model visaully dissapears. \nWhat I want to do is dynamically add a CheckBox Selection Model to a grid after reconfiguring the grids columns, and visually display it.
\n\nI have tried something like this:
\n\nvar sm = new Ext.selection.CheckboxModel();\ngrid.selModel = sm;\ngrid.doLayout();\n
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413549/timeline",
- "question_comments_url": "/questions/6413549/comments",
- "question_answers_url": "/questions/6413549/answers",
- "question_id": 6413549,
- "owner": {
- "user_id": 806914,
- "user_type": "registered",
- "display_name": "Anthony Burns",
- "reputation": 1,
- "email_hash": "e7334b63d88530e1cdcb1eac6fced20f"
- },
- "creation_date": 1308583263,
- "last_activity_date": 1308583263,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Facebook uid scripts",
- "body": "is there an existing java script to enable admins of trade pages to scan fb uids for know scammers, so we can ban known scammers ids before they managed to join or scam on newer trade pages? im not a scripter in any way but do admin a trade page and as far as i know there is a script but only for sale from another trade page, i was hopeing to get it free, we are growing daily and there are larger sites with larger banned scammers we want to be able to check for these id
sd and ban nefore they can scam on our group page, thank you for any info you can give
\n"
- },
- {
- "tags": [
- "javascript",
- "getelementbyid"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413526,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413512/timeline",
- "question_comments_url": "/questions/6413512/comments",
- "question_answers_url": "/questions/6413512/answers",
- "question_id": 6413512,
- "owner": {
- "user_id": 604843,
- "user_type": "registered",
- "display_name": "Ryan",
- "reputation": 432,
- "email_hash": "8d618d6102a868921c256b2d798aae45"
- },
- "creation_date": 1308583116,
- "last_activity_date": 1308583232,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 32,
- "score": 1,
- "community_owned": false,
- "title": "Javascript: Weird \"getElementById\"",
- "body": "I have a function that populates a pages with something like this
\n\n<span id=\"span_title_'+result_no+'\">'+title+'</span>\n
\n\nand then I have another function that has this:
\n\n document.getElementById(\"span_title_\"+which_table).innerHTML=\"asg\";\nalert(document.getElementById(\"span_title_\"+which_table).value);\n
\n\nThe strange thing is the first (innerHTML) call works perfectly, the second one, the alert, gives me \"undefined
\"
\n\nAny idea why this is?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 8,
- "accepted_answer_id": 6413302,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413265/timeline",
- "question_comments_url": "/questions/6413265/comments",
- "question_answers_url": "/questions/6413265/answers",
- "question_id": 6413265,
- "owner": {
- "user_id": 256439,
- "user_type": "registered",
- "display_name": "Sandra Schlichting",
- "reputation": 1327,
- "email_hash": "c4b17df9c9b2f33a96eb84f92054f708"
- },
- "creation_date": 1308582073,
- "last_activity_date": 1308583161,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 49,
- "score": 1,
- "community_owned": false,
- "title": "Appending to instead of below . What's wrong?",
- "body": "In this jsFiddle
\n\nhttp://jsfiddle.net/littlesandra88/tZqYX/
\n\nwould I like that a new <tr>
is inserted below the one where \"Details\" is clicked.
\n\nI do
\n\n$('.row').append(\"<tr><td>It worked</td></tr>\");\n
\n\nbut this results in
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n<tr><td>It worked</td></tr></tr>\n
\n\nwhere I was hoping for
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n</tr>\n<tr><td>It worked</td></tr>\n
\n\nAny idea how to fix this?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "plugins"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411194/timeline",
- "question_comments_url": "/questions/6411194/comments",
- "question_answers_url": "/questions/6411194/answers",
- "question_id": 6411194,
- "owner": {
- "user_id": 42636,
- "user_type": "registered",
- "display_name": "pistacchio",
- "reputation": 2686,
- "email_hash": "1cf6e58dae064fc449e6840ffdb90306"
- },
- "creation_date": 1308573193,
- "last_edit_date": 1308580136,
- "last_activity_date": 1308582994,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 25,
- "score": 2,
- "community_owned": false,
- "title": "Jquery plugin - Tree Context menu",
- "body": "Can you suggest a context-menu plugin that supports nesting menu items? When clicking on an item, if the item has sub-items, it should open a secondary menu.
\n\nEDIT
\n\nLike this but for jquery
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "css",
- "internet-explorer"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413060,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413018/timeline",
- "question_comments_url": "/questions/6413018/comments",
- "question_answers_url": "/questions/6413018/answers",
- "question_id": 6413018,
- "owner": {
- "user_id": 749288,
- "user_type": "registered",
- "display_name": "sergzach",
- "reputation": 169,
- "email_hash": "50ff6dd1fd1fb4c7fd0a2cee3be9ff0a"
- },
- "creation_date": 1308581059,
- "last_activity_date": 1308582876,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 23,
- "score": 2,
- "community_owned": false,
- "title": "Internet Explorer: how to escape extra carriage return after editing Textarea?",
- "body": "We have a multiline textarea in Internet Explorer.
\n\nIf we check it's content after the next then everything is correct (there are no extra carriage returns in textarea):
\n\ndocument.getElementById( 'text-area' ).value = \"Hello,\\nWorld!\";\n
\n\nBut if we set caret in the beginning position of the second line (in Internet Explorer, not in the code ) and press tab key there is extra carriage character (there is a string dump on keydown below):
\n\nvalue[0]='H'\nvalue[1]='e'\nvalue[2]='l'\nvalue[3]='l'\nvalue[4]='o'\nvalue[5]=','\nvalue[6]='\\r'\nvalue[7]='\\n'\nvalue[8]='W'\nvalue[9]='o'\nvalue[10]='r'\nvalue[11]='l'\nvalue[12]='d'\nvalue[13]='!'\n
\n\nIt's a problem because other browsers don't insert extra carriage return .
\n\nDo you know how to prevent this in Internet Explorer? With help of CSS or Javascript .
\n"
- },
- {
- "tags": [
- "javascript",
- "mysql",
- "php5"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6410224/timeline",
- "question_comments_url": "/questions/6410224/comments",
- "question_answers_url": "/questions/6410224/answers",
- "question_id": 6410224,
- "owner": {
- "user_id": 786591,
- "user_type": "registered",
- "display_name": "Rignesh Tambakuwala",
- "reputation": 1,
- "email_hash": "5faba9a6598ed24d2f1ff4eaaac0cfe8"
- },
- "creation_date": 1308567882,
- "last_activity_date": 1308582858,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 39,
- "score": 0,
- "community_owned": false,
- "title": "to get value from database table into select box",
- "body": "i m creating a combo box which gets value from mysql database table.\n here is a sample code which i m implementing but it will not populates selectbox values.
\n\n mydata +='<div class=\"content nodisplay\"><div class=\"row\"><div class=\"label\" style=\"font-size:22px;\">Subject</div><div class=\"data\">\n<select id=\"fillsubject\" name=\"fillsubject\">';\n$.post(document.URL,qstring,function(data){\n\n var subjects = $(data).filter('.subjects');\n\n $.each(subjects,function(index,value){\n var subid = $(this).attr('id');\n var subname = $(this).text();\n mydata += \"<option value='\"+subid+\"'>\"+subname+\"</option>\";\n //mydata += \"<option value='english'>english</option>\";\n });\n\n});\nmydata +='</select></div></div></div>'; \n
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 2,
- "accepted_answer_id": 4186100,
- "favorite_count": 5,
- "question_timeline_url": "/questions/4185821/timeline",
- "question_comments_url": "/questions/4185821/comments",
- "question_answers_url": "/questions/4185821/answers",
- "question_id": 4185821,
- "owner": {
- "user_id": 425275,
- "user_type": "registered",
- "display_name": "Šime Vidas",
- "reputation": 14281,
- "email_hash": "a9db2cbc6d4e589aec2d25f67771b85e"
- },
- "creation_date": 1289834520,
- "last_edit_date": 1308582811,
- "last_activity_date": 1308582811,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 213,
- "score": 1,
- "community_owned": false,
- "title": "Is it possible to programmatically detect the caret position within a element?",
- "body": "Assuming a regular <input type=text>
text-box with data in it.
\n\nIs it possible to detect (via JavaScript) the position of the text-coursor inside that text-box?
\n\nI am able to detect an ARROW LEFT or ARROW RIGHT keydown event - but how to detect the cursor location?
\n\nWhy I need this:
\n\nI have a dynamic text-box here: http://vidasp.net/tinydemos/dynamic-textbox.html \nIt works great, however there are two scenarios that I would like to fix:
\n\n\nwhen the cursor is at the beginning of the text-box and the user presses BACKSPACE \nwhen the cursor is at the end of the text-box and the user presses DELETE \n \n\n(In both cases, the text-box must contain data for the effect to be observable.)
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "this"
- ],
- "answer_count": 4,
- "accepted_answer_id": 6413378,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6413356/timeline",
- "question_comments_url": "/questions/6413356/comments",
- "question_answers_url": "/questions/6413356/answers",
- "question_id": 6413356,
- "owner": {
- "user_id": 653897,
- "user_type": "registered",
- "display_name": "Briz",
- "reputation": 161,
- "email_hash": "1f396684d672cf556c9e1532c1e0af0a"
- },
- "creation_date": 1308582435,
- "last_activity_date": 1308582807,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 62,
- "score": 0,
- "community_owned": false,
- "title": "What is the \"this\" in an example JS function?",
- "body": "Below is the entire contents of a JS/JQuery file. I didn't write it, but I'm trying to add on to it. I am having trouble understanding what this
is referring to. I haven't seen functions set up in this style before (SmartPhone = function() {}
)
\n\nSmartPhone = function()\n{\n this.miniMap = new GameModeMap();\n\n this.init = function()\n {\n var self=this;\n var $PhoneContainer = $(\"#PhoneContainer\");\n $PhoneContainer.append(\"<div id='PhoneScreen'></div>\");\n $PhoneContainer.append(\"<div class='PhoneButton'></div>\");\n $('.PhoneButton').click(function(){self.toggleClicked()});\n\n this.miniMap.init(\"#PhoneScreen\");\n\n //append the appMenu\n $(\"#PhoneScreen\").append(\"<div id='AppMenu'></div>\");\n $(\"#AppMenu\").hide();\n initMenu();\n //toggleClicked();\n }\n\n this.toggleClicked = function() \n {\n console.log(this);\n $('#PhoneContainer').toggleClass ('clicked');\n $('#PhoneScreen').toggleClass ('vertical');\n this.miniMap.toggle();\n $('#AppMenu').toggle();\n }\n\n this.init();\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "visual-studio-2008"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413416/timeline",
- "question_comments_url": "/questions/6413416/comments",
- "question_answers_url": "/questions/6413416/answers",
- "question_id": 6413416,
- "owner": {
- "user_id": 783175,
- "user_type": "registered",
- "display_name": "FishBasketGordo",
- "reputation": 206,
- "email_hash": "1a033f15f829f9d5b590a40dccc66559"
- },
- "creation_date": 1308582722,
- "last_activity_date": 1308582722,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 11,
- "score": 0,
- "community_owned": false,
- "title": "How to sort page elements by z-index while debugging?",
- "body": "I'm debugging a JavaScript method on an ASP.NET 3.5 web site using jQuery in Visual Studio 2008. As a sanity check, I would like to look at a list of the page elements sorted by z-index. What's a good/easy way to do this? I would prefer an expression that I can input into the Watch window, but I'm open to other suggestions.
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "html5",
- "geolocation"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412566/timeline",
- "question_comments_url": "/questions/6412566/comments",
- "question_answers_url": "/questions/6412566/answers",
- "question_id": 6412566,
- "owner": {
- "user_id": 635784,
- "user_type": "registered",
- "display_name": "Codecraft",
- "reputation": 861,
- "email_hash": "e4a1f83ad5fb19e0cfef8d818c4a02c6"
- },
- "creation_date": 1308579152,
- "last_edit_date": 1308582704,
- "last_activity_date": 1308582704,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 16,
- "score": 2,
- "community_owned": false,
- "title": "Determining whether html5 geolocation function is available AND whether it knows where you are?",
- "body": "I'm experimenting with HTML5 geolocation, and embedded a small test script into a page to return my present co-ordinates.
\n\nThe current application I have in mind for using this is as a 'nice to have' feature on site i'm working on - it includes a 'find my nearest' lookup on some locations, and I figured that if you had a location aware device, I could easily include 'to my current location' alongside the normal 'to my postal/zip code'. I'm not interested in loading a bunch of extra libraries and fallbacks for such a small and non-essential feature. If you have a capable device, great, if not, you won't ever see the option.
\n\nSo I tried the script on an iPad, and as expected - I was prompted for permission to use my present location, to which I agreed, and my test script returned my present location. Total win.
\n\nI tried the same on my desktop, since i'm using Firefox 4 and its a HTML5 compliant browser. It asked me if I wanted to share my location, and then promptly returned the error that it didn't know my location (because its a desktop computer and has no GPS). I thought this rendered the original question of 'do you want to share your location' somewhat pointless - it could needlessly annoy people who might have thought they could use a feature that they in fact can't.
\n\nSo, what is a reliable technique to detect if:
\n\n\n a) The browser can access HTML5 geolocation
\n \n AND
\n \n b) The browser knows or can find out what the users location is.
\n \n\nWithout actually calling the geolocation function beforehand, and asking the user an annoying, and unnecessary question?
\n\nFor a) i'm simply using:
\n\nif (navigator.geolocation) {\n navigator.geolocation.getCurrentPosition(showCoords,handleGeoErrors); \n}\n
\n\nBut for b) the only answer I have involves having called getCurrentPosition, which triggers the question to the user.
\n\nAny thoughts on this, anyone?
\n"
- },
- {
- "tags": [
- "javascript",
- "arrays",
- "json",
- "parsing"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6403354/timeline",
- "question_comments_url": "/questions/6403354/comments",
- "question_answers_url": "/questions/6403354/answers",
- "question_id": 6403354,
- "owner": {
- "user_id": 773110,
- "user_type": "registered",
- "display_name": "zalath",
- "reputation": 1,
- "email_hash": "7cc5677dd2e2f4d1cc7b86c52d053ae8"
- },
- "creation_date": 1308497730,
- "last_edit_date": 1308498024,
- "last_activity_date": 1308582656,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 59,
- "score": 0,
- "community_owned": false,
- "title": "javascript : parsing multi-level json array",
- "body": "I have a asp.net web service that returns a multi-level array.
\n\nthe json string is parse using the json2.js lib :
\n\nvar donnee = JSON.parse(msg.d);\n
\n\nthe 1st level parsing is ok but the 2nd level array (data) remains as an array of objects
\n\n\n ? donnee[0]
\n \n\n{...}\ncolor: \"#0000CD\"\ndata: [[object Object],[object Object]]\nlabel: \"formol\"\ntype: \"traitement\"\n
\n\n\n ? donnee[0].data
\n \n\n[[object Object],[object Object]]\n[0]: {...}\n[1]: {...}\n
\n\n\n ? donnee[0].data[0]
\n \n\n{...}\n_l: \"\"\n_x: 7\n_y: 25\n
\n\nwhereas I need an array of data e.g.
\n\n\n ? donnee[0]
\n \n\n{...}\nlabel: \"traitement formol 2\"\ntype: \"traitement\"\ncolor: \"#0000CD\"\ndata: [7,25,,7,40,formol]\n
\n\n\n ? donnee[0].data
\n \n\n[7,25,,7,40,formol]\n[0]: [7,25,]\n[1]: [7,40,formol]\n
\n\n\n ? donnee[0].data[0]
\n \n\n[7,25,]\n[0]: 7\n[1]: 25\n[2]: \"\"\n
\n\nwhat is the best way to decode/parse all the levels of the json string at once ?
\n\nbest regards
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "post"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6174688/timeline",
- "question_comments_url": "/questions/6174688/comments",
- "question_answers_url": "/questions/6174688/answers",
- "question_id": 6174688,
- "owner": {
- "user_id": 755464,
- "user_type": "registered",
- "display_name": "user755464",
- "reputation": 11,
- "email_hash": "31cbea1bc9ec690e95a60826eb6328a5"
- },
- "creation_date": 1306748840,
- "last_edit_date": 1308582527,
- "last_activity_date": 1308582527,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "jquery ajax post call issue with special chracters [solved]",
- "body": "Solution: i guess the problem was related to firefox as a browser. I solved making the ajax call pass through a php proxy..
\n\ni have a form with two data fields (a checkbox and a textarea) sent via an ajax call. \nThe tomcat server response is an html page with some javascript code in it. I must use the POST method given the amount of data to be sent (if i could use GET i woud not have this issue!).\nThe problem arises if i send accented characters (èàòù) throught the textarea, for which i get weird question marks in place of them.\nFrom the firebug console i can see that both sent and received data are utf-8 encoded:
\n\nSENT DATA: Content-Type application/x-www-form-urlencoded; charset=UTF-8 \nRECEIVED DATA: text/html;charset=UTF-8
\n\nThe problem does not show in chrome or IE, but only in firefox and on all browsers on mac. HAve anybody any suggestione about this?
\n\nThanks\nVitto
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413240/timeline",
- "question_comments_url": "/questions/6413240/comments",
- "question_answers_url": "/questions/6413240/answers",
- "question_id": 6413240,
- "owner": {
- "user_id": 414847,
- "user_type": "registered",
- "display_name": "Rene Zammit",
- "reputation": 45,
- "email_hash": "07647a7ad89294eb2527e03afb5e450a"
- },
- "creation_date": 1308581976,
- "last_activity_date": 1308582489,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 11,
- "score": 0,
- "community_owned": false,
- "title": "seperate validation of two forms with jquery",
- "body": "I have two forms in one page and i would like to validate each form seperatly DEPENDING on what the user fills. So basically the user must fill only ONE form and NOT both of them...SO basically if the user fills up form number 1, the validation will be on form 1 ONLY..
\n\nBelow please find the code of both forms:
\n\n <form action=\"/registration.flow\" method=\"post\" id=\"formElem1\" name=\"formElem1\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n\n\n<form action=\"/registration.flow\" method=\"post\" id=\"formElem2\" name=\"formElem2\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n
\n\nCan someone help me please?? THANKS
\n"
- },
- {
- "tags": [
- "javascript",
- "coffeescript"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412151/timeline",
- "question_comments_url": "/questions/6412151/comments",
- "question_answers_url": "/questions/6412151/answers",
- "question_id": 6412151,
- "owner": {
- "user_id": 353998,
- "user_type": "registered",
- "display_name": "magicshui",
- "reputation": 53,
- "email_hash": "61848af6a10034cf09426b843e01efc3"
- },
- "creation_date": 1308577423,
- "last_activity_date": 1308582484,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 26,
- "score": 0,
- "community_owned": false,
- "title": "why does the bracket works in coffeescript when bugs came",
- "body": "If i want to get a js code like this which compiles from coffeescript:
\n\n var sortableTodos = new Sortables(\"todo-list\", {\nconstrain: true,\nclone: true,\nhandle: \".todo-content\",\nonComplete: function(ele){\n sortableTodos.serialize(false, function(element, index){\n todo = Todos.get(element.getProperty(\"id\").replace(\"todo-\", \"\"));\n todo.save({\"order\": index});\n });\n}\n});\n
\n\nI can't write coffee code like below:
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:(ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n\n) \n )\n
\n\nbut the following works(it got brackets after onComplete )
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:((ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n )\n) \n ) \n
\n\nI don't know why?Is it a bug?
\n"
- },
- {
- "tags": [
- "javascript",
- "flash",
- "hash",
- "webgl",
- "sha256"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6395651/timeline",
- "question_comments_url": "/questions/6395651/comments",
- "question_answers_url": "/questions/6395651/answers",
- "question_id": 6395651,
- "owner": {
- "user_id": 45974,
- "user_type": "registered",
- "display_name": "Tom",
- "reputation": 1068,
- "email_hash": "04361eba6e039eecdd3458e2545f03e6"
- },
- "creation_date": 1308396487,
- "last_activity_date": 1308582417,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 3,
- "community_owned": false,
- "title": "Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?",
- "body": "Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
\n\nI'm afraid this is all there is to ask, but if more elaboration is needed please do not hesitate to tell me in a comment.
\n\nThanks.
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "web-services",
- "redirect",
- "login"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6412531,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6412428/timeline",
- "question_comments_url": "/questions/6412428/comments",
- "question_answers_url": "/questions/6412428/answers",
- "question_id": 6412428,
- "owner": {
- "user_id": 769655,
- "user_type": "registered",
- "display_name": "ZKSteffel",
- "reputation": 172,
- "email_hash": "3939a271af7fae22f6400b61c0d14c73"
- },
- "creation_date": 1308578567,
- "last_activity_date": 1308582340,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 44,
- "score": 3,
- "community_owned": false,
- "title": "Login page redirection in Java and Javascript",
- "body": "Ok, so I've got an interesting case of login page redirection going on. \nMy webservice has a login page (login.html) with some javascript to handle logging in and redirecting to a hardcoded 'default' page. The webservice is written in Java with a servlet filter handling redirection if a user is unauthenticated (so if a user tries to access domain/statistics
without being logged in, they are directed to domain/login.html
). The redirection from the protected services works: I can redirect to the login page and once a user is authenticated, redirect them to a default page. I am having issues, however, redirecting to the previous page. \nI know this is usually handled with the argument document.referrer
in the Javascript, which I have tried, but due to the Java's redirection with response.sendRedirect
, the Referer header is not sent.
\n\nHow can I get these two aspects to redirect to the previously called page? Is it something I need to add on the Javascript side, the Java side, or both?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "css",
- "menu"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6412674,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6294393/timeline",
- "question_comments_url": "/questions/6294393/comments",
- "question_answers_url": "/questions/6294393/answers",
- "question_id": 6294393,
- "owner": {
- "user_id": 658809,
- "user_type": "registered",
- "display_name": "Ryan Sammut",
- "reputation": 91,
- "email_hash": "72bfcaf32b3480f5cecb438684cabb92"
- },
- "creation_date": 1307629500,
- "last_edit_date": 1308141521,
- "last_activity_date": 1308582283,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 56,
- "score": -1,
- "community_owned": false,
- "title": "Navigation Menu Hover Effect only on a Particular Occasion",
- "body": "I need the exact effect of this website's navigation menu http://recruitmentmalta.com/ptowers/ but in neater code. This code was generated with a tool which converts from PSD to HTML/CSS and basically created a bunch of useless code. I know how to make that menu, except for the part where the Shop Now effect should turn off only if the contact is hovered over.
\n\nAny ideas of how I can recreate that hovering off effect when I hover over the contact button (when Shop Now gets turned off)?
\n\nThis is what I have done so far to give you an idea
\n\n <ul>\n <li id=\"homeButton\"> <img src=\"images/home.png\" onmouseout=\"this.src='images/home.png'\" onmouseover=\"this.src='images/homeHover.png'\" width=\"115\" height=\"55\" alt=\"home\" /></li>\n <li id=\"aboutButton\"> <img src=\"images/about.png\" onmouseout=\"this.src='images/about.png'\" onmouseover=\"this.src='images/aboutHover.png'\" width=\"115\" height=\"55\" alt=\"about\" /></li>\n <li id=\"newsButton\"> <img src=\"images/news.png\" onmouseout=\"this.src='images/news.png'\" onmouseover=\"this.src='images/newsHover.png'\" width=\"115\" height=\"55\" alt=\"news\" /></li>\n <li id=\"brandsButton\"> <img src=\"images/brands.png\" onmouseout=\"this.src='images/brands.png'\" onmouseover=\"this.src='images/brandsHover.png'\" width=\"115\" height=\"55\" alt=\"brands\" /></li>\n <li id=\"storesButton\"> <img src=\"images/stores.png\" onmouseout=\"this.src='images/stores.png'\" onmouseover=\"this.src='images/storesHover.png'\" width=\"115\" height=\"55\" alt=\"stores\" /></li>\n <li id=\"careersButton\"> <img src=\"images/careers.png\" onmouseout=\"this.src='images/careers.png'\" onmouseover=\"this.src='images/careersHover.png'\" width=\"115\" height=\"55\" alt=\"careers\" /></li>\n <li id=\"contactButtonMenu\"> <img src=\"images/contactButton.png\" onmouseout=\"this.src='images/contactButton.png'\" onmouseover=\"this.src='images/contactButtonHover.png'\" width=\"115\" height=\"55\" alt=\"contact\" /></li>\n <li id=\"shopNowButton\"> <img src=\"images/shopNowHover.png\" width=\"114\" height=\"53\" alt=\"Shop Now\" /> </li>\n </ul>\n
\n\nThis is my JS Fiddle Link: http://jsfiddle.net/GHHJM/
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "replace",
- "body"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411169/timeline",
- "question_comments_url": "/questions/6411169/comments",
- "question_answers_url": "/questions/6411169/answers",
- "question_id": 6411169,
- "owner": {
- "user_id": 806325,
- "user_type": "registered",
- "display_name": "Mohummad Abdullah",
- "reputation": 1,
- "email_hash": "be926689bf46ab9f3b0331cc985c469b"
- },
- "creation_date": 1308573088,
- "last_edit_date": 1308582247,
- "last_activity_date": 1308582247,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "Javascript replace undefined error ends but not replace continues",
- "body": "Friends i got success with this piece of code:
\n\nvar avidno = '800.123.1234';\nvar bodytext = document.body.innerHTML;\nvar newbodytext;\nfunction validate () {\nvar regex = /^\\(?([0-9]{3})\\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;\n\nif (regex.test(avidno)) {\n alert('bingo');\n var avidno_new = '<span>'+avidno+'</span>';\n var newbodytext = bodytext.replace(new RegExp(avidno, \"g\"), avidno_new);\n document.body.innerHTML = newbodytext;\n // Valid international phone number\n} else {\n alert('uupss');\n // Invalid international phone number\n}\n}\nvalidate();\n
\n"
- },
- {
- "tags": [
- "javascript",
- "android"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/3802824/timeline",
- "question_comments_url": "/questions/3802824/comments",
- "question_answers_url": "/questions/3802824/answers",
- "question_id": 3802824,
- "owner": {
- "user_id": 459357,
- "user_type": "unregistered",
- "display_name": "Krishnakumar",
- "reputation": 1,
- "email_hash": "cb35faaf6bb76341164d7568101e394c"
- },
- "creation_date": 1285582330,
- "last_edit_date": 1285592315,
- "last_activity_date": 1308582222,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 164,
- "score": 0,
- "community_owned": false,
- "title": "Problem opening page with javascript pop ups in android webview",
- "body": "I am very new to both Android WebKit and JavaScript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome) and click on the links, A opens in the same browser window, whereas B and C pops up a new window. In my android application I am \nloading the original URL in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading
. I am getting the call to shouldOverrideUrlLoading
whenever I click on A, but not getting it when I click on B or C?
\n\nI went through the page source and it looks like the 2 links that are \nnot supported are opened as IFRAMEs. are IFRAMEs supported by WebView?
\n\nThanks
\n\nKK
\n"
- },
- {
- "tags": [
- "javascript",
- "string-manipulation"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412993/timeline",
- "question_comments_url": "/questions/6412993/comments",
- "question_answers_url": "/questions/6412993/answers",
- "question_id": 6412993,
- "owner": {
- "user_id": 806849,
- "user_type": "unregistered",
- "display_name": "Dom",
- "reputation": 1,
- "email_hash": "8d7165905cf94796ea496370004f8520"
- },
- "creation_date": 1308580967,
- "last_activity_date": 1308581830,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 36,
- "score": 0,
- "community_owned": false,
- "title": "How do I remove the hyphens in this string (more complex than it sounds!)",
- "body": "I must first confess that I understand very little JS and this is a bastardised version of some code I picked up elsewhere. Essentially it runs through a collection of list-items and extracts their class names (which are being populated by a CMS to reflect for example \"Brand\" or \"Manufacturer\") builds them into a string, splits the string into arrays and dedupes them. It then creates a list of unique check boxes based on the class name which, when selected or deselected, filters the list-items on the page using jquery.
\n\nMy problem is, that because the string of class names is being split by a 'space' if the value of the class consists of multiple-words the values populating the class must be hyphenated.
\n\nBUT... when the label for the checkbox is generated on the page by the script I wonder if it is possible to remove the hyphen without upsetting the logic generating it.
\n\nHere is the code I have so far, if you drop this into an HTML file you will see how it works (the jquery file is hosted elsewhere).
\n\nAny help would be highly appreciated!
\n\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"> \n<html>\n<head>\n\n<script type=\"text/javascript\" src=\"http://www.chewbz.com/jquery-1.4.3.min.js\"></script>\n<script type=\"text/javascript\"> \n/**\n * Removes duplicates in the array 'a'\n */\nfunction unique(a) {\n tmp = new Array(0);\n for(i=0;i<a.length;i++){\n if(!contains(tmp, a[i])){\n tmp.length+=1;\n tmp[tmp.length-1]=a[i];\n }\n }\n return tmp;\n}\n\n/**\n * Returns true if 's' is contained in the array 'a'\n */\n\nfunction contains(a, e) {\n for(j=0;j<a.length;j++)if(a[j]==e)return true;\n return false;\n}\n\n$(document).ready(function () {\n // create a string of class names, \n var stringOfClassNames = '';\n\n // grab the class name of each list item to build that string\n $('.filterThis > li').each( function (i) {\n var thisClassString = $(this).attr('class');\n stringOfClassNames = stringOfClassNames +' '+ thisClassString\n });\n\n // Trim spaces from the ends of that string:\n stringOfClassNames = jQuery.trim(stringOfClassNames);\n\n // convert the string to an array.\n var arrayClasses = stringOfClassNames.split(' ');\n\n // pull out only unique values from that array\n arrayUniqueClasses = (unique(arrayClasses));\n\n // we only want to create filters if there are multiple classes\n if (arrayUniqueClasses.length > 1) {\n\n // create box for filters\n $('<div class=\"filters\" id=\"filters\"><\\/div>').insertBefore('.filterThis');\n\n // create the filter checkboxes based on all the class names\n $.each(arrayUniqueClasses, function() {\n $('<div class=\"filter-options\"><input type=\"checkbox\" checked=\"checked\" value=\"'+this+'\" class=\"filter-checkbox\" id=\"filterID'+this+'\" />'+this+'<\\/div>').appendTo('.filters');\n });\n\n // create a 'show all' checkbox\n $('<div class=\"filter-options-all\"><input type=\"checkbox\" checked=\"checked\" value=\"filterAll\" class=\"filter-checkbox\" id=\"filterIDall\" />Show All<\\/div>').appendTo('.filters');\n\n // create a close button\n $('<img src=\"\" id=\"filter-close\" onClick=\"document.getElementById(\\'filters\\').style.display = \\'none\\'\"><\\/div>').appendTo('.filters');\n\n // the filter part\n $('.filters input').click( function() {\n var value= $(this).val();\n if (value == 'filterAll') {\n if ($(this).is(':checked')) {\n $('.filters input').attr('checked','checked');\n $('.filterThis li').fadeIn();\n } else {\n var one=1;\n }\n } else {\n stringValue = '.filterThis > li.'+value;\n if ($(this).is(':checked')) {\n $(stringValue).fadeIn();\n } else {\n $(stringValue).fadeOut();\n $('.filters #filterIDall').removeAttr('checked');\n }\n }\n });\n }\n});\n</script> \n\n</head>\n<body>\n\n<style>\n<!-- \nul.filterThis {\nlist-style-type:none;\n}\nul.filterThis li {\nwidth:200px;height:200px;background:#eee;border:solid 1px #ccc;float:left;margin:10px;\n}\n-->\n</style>\n\n<ul class=\"filterThis\">\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Large-Jars\">\n <div class=\"product-container\">\n Large Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n</ul>\n\n\n</body>\n\n</html>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 1,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6403728/timeline",
- "question_comments_url": "/questions/6403728/comments",
- "question_answers_url": "/questions/6403728/answers",
- "question_id": 6403728,
- "owner": {
- "user_id": 484082,
- "user_type": "registered",
- "display_name": "blasteralfred",
- "reputation": 505,
- "email_hash": "cd867e89325fe74445707fb6b4364be8"
- },
- "creation_date": 1308502054,
- "last_edit_date": 1308581714,
- "last_activity_date": 1308581714,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 50,
- "score": -1,
- "community_owned": false,
- "title": "Set table cell width using Javascript - jQuery",
- "body": "I have a table as below;
\n\n<table style=\"width: 100%\">\n<tr>\n<td style=\"width: 30px\">cell</td>\n<td class=\"cell\">cell</td>\n<td class=\"cell\">cellcell</td>\n<td class=\"cell\">cellcellcell</td>\n<td class=\"cell\">cellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcellcell</td>\n<td style=\"width: 30px\">cell</td>\n</tr>\n</table>\n
\n\nThe table is designed to stretch to screen (or a div having specific width). I want equal width for all cells having class=\"cell\"
and this works well when the character length of text in all cells having class=\"cell\"
are equal. But, I want to fix the cell width even if the character lengths of contents in class=\"cell\"
are different.
\n\nAlso you can see that the first and last cells have fixed width, in pixels and others cell widths are to be calculated on the basis of percentage .. I want equal width for all cells (except first and last with fixed width in pixels).
\n\nI think this can be done using javascript
with the help of jQuery
, by calculating the table cell widths on document ready, and then adding some function using on window resize
and thereby calculating cell widths. The cell widths will be (tablewidth in px - 60px)/6
I am a beginner and I don't know much.. How can i do this using jQuery and (or) javascript.
\n\nIt will be very helpful if someone make me a fiddle..
\n\nThanks in advance..
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 5,
- "favorite_count": 2,
- "question_timeline_url": "/questions/6412589/timeline",
- "question_comments_url": "/questions/6412589/comments",
- "question_answers_url": "/questions/6412589/answers",
- "question_id": 6412589,
- "owner": {
- "user_id": 206403,
- "user_type": "registered",
- "display_name": "Rocket",
- "reputation": 9270,
- "email_hash": "31975d063f893b2551f6f7d5ed6bfa8e"
- },
- "creation_date": 1308579273,
- "last_activity_date": 1308581680,
- "up_vote_count": 4,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 4,
- "community_owned": false,
- "title": "Set length property of JavaScript object",
- "body": "Let's say I have a JavaScript object:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n };\n this.add = function(x){\n A.push(x);\n };\n this.remove = function(){\n return A.pop();\n };\n};\n
\n\nI can use it like so:
\n\nvar x = new a();\nx.add(3);\nx.add(4);\nalert(x.length()); // 2\nalert(x.remove()); // 4\nalert(x.length()); // 1\n
\n\nI was trying to make .length
not a function, so I could access it like this: x.length
, but I've had no luck in getting this to work.
\n\nI tried this, but it outputs 0
, because that's the length of A
at the time:
\n\nfunction a(){\n var A = [];\n this.length = A.length;\n //rest of the function...\n};\n
\n\nI also tried this, and it also outputs 0
:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n }();\n //rest of the function...\n};\n
\n\nHow do I get x.length
to output the correct length of the array inside in the object?
\n"
- },
- {
- "tags": [
- "javascript",
- "prototypejs"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412259/timeline",
- "question_comments_url": "/questions/6412259/comments",
- "question_answers_url": "/questions/6412259/answers",
- "question_id": 6412259,
- "owner": {
- "user_id": 789241,
- "user_type": "unregistered",
- "display_name": "ken",
- "reputation": 16,
- "email_hash": "e4a035242c5843420c0c1bf20daddb97"
- },
- "creation_date": 1308577835,
- "last_edit_date": 1308581548,
- "last_activity_date": 1308581548,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 42,
- "score": 1,
- "community_owned": false,
- "title": "Prototype.js error - 'undefined' is null or not an object",
- "body": "I am getting following error in Prototype.js
\n\n'undefined' is null or not an object line 5557 char 5\n
\n\nwhich is this:
\n\nvar respondersForEvent = registry.get(eventName);\n if (Object.isUndefined(respondersForEvent)) {\n respondersForEvent = [];\n registry.set(eventName, respondersForEvent);\n }\n
\n\nHow can i fix this?
\n"
- },
- {
- "tags": [
- "javascript",
- "content",
- "clipboard",
- "paste"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413036/timeline",
- "question_comments_url": "/questions/6413036/comments",
- "question_answers_url": "/questions/6413036/answers",
- "question_id": 6413036,
- "owner": {
- "user_id": 151377,
- "user_type": "registered",
- "display_name": "Gabriele Cirulli",
- "reputation": 305,
- "email_hash": "76706ad194800ea2645a109190baa5a4"
- },
- "creation_date": 1308581144,
- "last_activity_date": 1308581461,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 13,
- "score": 0,
- "community_owned": false,
- "title": "Get current clipboard content?",
- "body": "I'd like to know a way to make my script detect the content of the clipboard and paste it into a text field when the page is opened, with no input from the user. How can it be done?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-plugins"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412997/timeline",
- "question_comments_url": "/questions/6412997/comments",
- "question_answers_url": "/questions/6412997/answers",
- "question_id": 6412997,
- "owner": {
- "user_id": 806850,
- "user_type": "unregistered",
- "display_name": "Rob",
- "reputation": 1,
- "email_hash": "d4f2c42b9bf234c7c5e5c6af0fb373a3"
- },
- "creation_date": 1308580980,
- "last_activity_date": 1308581418,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 33,
- "score": 0,
- "community_owned": false,
- "title": "Add divs between divs in jQuery",
- "body": "I'm working with a great jQuery plugin (booklet) , and pages of the booklet are defined as so:
\n\n<div id=\"mybook2\">\n <div class=\"b-load\">\n <div> \n <h3>Yay, Page 1!</h3>\n </div>\n <div> \n <h3>Yay, Page 2!</h3>\n </div>\n <div> \n <h3>Yay, Page 3!</h3>\n </div>\n <div> \n <h3>Yay, Page 4!</h3>\n </div>\n </div>\n</div>\n
\n\nI want to add a div before each one of the pages (all the divs in div class=\"b-load\").
\n\nHow would I add it? .prepend? I'm not sure what to do here, I've never worked with jQuery or javascript at all, really.
\n"
- },
- {
- "tags": [
- "javascript",
- "count",
- "script"
- ],
- "answer_count": 4,
- "accepted_answer_id": 6411767,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411637/timeline",
- "question_comments_url": "/questions/6411637/comments",
- "question_answers_url": "/questions/6411637/answers",
- "question_id": 6411637,
- "owner": {
- "user_id": 581345,
- "user_type": "registered",
- "display_name": "Tobias",
- "reputation": 37,
- "email_hash": "56ad21e0912e6810378c035c51dcc46e"
- },
- "creation_date": 1308575424,
- "last_edit_date": 1308581410,
- "last_activity_date": 1308581410,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 56,
- "score": 1,
- "community_owned": false,
- "title": "Javascript count number of steps",
- "body": "How can I count number of steps between different numbers.
\n\nI have a method that takes a number and runs a code snippet with the number. I need to see if the number is the number right next to the other or two steps, three steps, four steps over or below etc.
\n\nEx. I send a number of 1 to the method. The next number sent is 4. I then need to find out how many steps over one it is etc in this case 3 steps over 1 should be the result.
\n\nAny clues?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "rss"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412753/timeline",
- "question_comments_url": "/questions/6412753/comments",
- "question_answers_url": "/questions/6412753/answers",
- "question_id": 6412753,
- "owner": {
- "user_id": 797954,
- "user_type": "registered",
- "display_name": "Jack Sharpe",
- "reputation": 1,
- "email_hash": "3dadeb26ed5bb578fc0385a8def93699"
- },
- "creation_date": 1308579981,
- "last_edit_date": 1308580880,
- "last_activity_date": 1308581345,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 22,
- "score": 0,
- "community_owned": false,
- "title": "Ajax RSS reader",
- "body": "I am wanting to write a small application that can pull RSS feeds from any RSS feed url. if anyone could give me very basic help on how to achieve this?
\n\nim only really starting out in the world on AJAX and this kinda stuff so any help would be appreciated.
\n\nThanks
\n\nEDIT :- I am only trying to do this with Jquery and Ajax, I dont want to use PHP or any other server side code.
\n"
- },
- {
- "tags": [
- "javascript",
- "ipad",
- "ios",
- "webview"
- ],
- "answer_count": 4,
- "accepted_answer_id": 4462361,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4460205/timeline",
- "question_comments_url": "/questions/4460205/comments",
- "question_answers_url": "/questions/4460205/answers",
- "question_id": 4460205,
- "owner": {
- "user_id": 435413,
- "user_type": "registered",
- "display_name": "sod",
- "reputation": 852,
- "email_hash": "9239a13c2e8049a26f32fe3d4367b58c"
- },
- "creation_date": 1292498400,
- "last_activity_date": 1308581270,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 522,
- "score": 2,
- "community_owned": false,
- "title": "detect ipad/iphone webview via javascript",
- "body": "Is there a way to differ via javascript if the website runs inside the ipad safari or inside an application WebView?
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "dom"
- ],
- "answer_count": 11,
- "accepted_answer_id": 78945,
- "favorite_count": 1,
- "question_timeline_url": "/questions/78932/timeline",
- "question_comments_url": "/questions/78932/comments",
- "question_answers_url": "/questions/78932/answers",
- "question_id": 78932,
- "owner": {
- "user_id": 6340,
- "user_type": "registered",
- "display_name": "brass-kazoo",
- "reputation": 1337,
- "email_hash": "aeca5f30afc60a8429e24b9b42f8c9df"
- },
- "creation_date": 1221614884,
- "last_edit_date": 1308581167,
- "last_activity_date": 1308581167,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 13743,
- "score": 3,
- "community_owned": false,
- "title": "How do I programatically set the value of a select box element using javascript?",
- "body": "I have the following HTML select element:
\n\n<select id=\"leaveCode\" name=\"leaveCode\">\n <option value=\"10\">Annual Leave</option>\n <option value=\"11\">Medical Leave</option>\n <option value=\"14\">Long Service</option>\n <option value=\"17\">Leave Without Pay</option>\n</select>\n
\n\nUsing a javascript function with the leave code number as a parameter, how do I select the appropriate option in the list?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "events",
- "javascript-events"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412863/timeline",
- "question_comments_url": "/questions/6412863/comments",
- "question_answers_url": "/questions/6412863/answers",
- "question_id": 6412863,
- "owner": {
- "user_id": 516629,
- "user_type": "registered",
- "display_name": "pagewil",
- "reputation": 950,
- "email_hash": "cdee7bd13ac26fdbb617a4b74170c53c"
- },
- "creation_date": 1308580401,
- "last_activity_date": 1308581131,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 27,
- "score": 0,
- "community_owned": false,
- "title": "jQuery: Two elements using the same event function.",
- "body": "What is the best way to share one function between two different event handlers? I want the same outcome but some situation dependent variables will need to be defined within the function depending on which element was clicked.
\n\nI could hack a solution but want to know the best practice for such a scenario. Simple problem must have a simple answer...
\n\nEXAMPLE
\n\nvar onMyEvent = function(e){\n if(click triggered from 'a'){\n //do that \n } \n if(click triggered from 'div'){\n //do that\n } \n}\n\n\n$('a').click(onMyEvent);\n$('div').click(onMyEvent);\n
\n\nFIDDLE: http://jsfiddle.net/f6C92/
\n"
- },
- {
- "tags": [
- "javascript",
- "autocomplete",
- "dojo",
- "jquery-autocomplete"
- ],
- "answer_count": 0,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6396782/timeline",
- "question_comments_url": "/questions/6396782/comments",
- "question_answers_url": "/questions/6396782/answers",
- "question_id": 6396782,
- "owner": {
- "user_id": 556124,
- "user_type": "registered",
- "display_name": "Boopathi Rajaa",
- "reputation": 149,
- "email_hash": "2596022781bb27a84583b7454954ee96"
- },
- "creation_date": 1308408565,
- "last_edit_date": 1308580936,
- "last_activity_date": 1308580936,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Facebook style autocomplete using dojo needed.",
- "body": "I found facebook style autocomplete using jQuery. But im using dojo framework for my web app. Can you suggest how to implement or any open source code available for autocomplete using dojo framework. ?
\n\nUsing jquery :
\n\nhttp://devthought.com/wp-content/articles/autocompletelist/test.html
\n"
- },
- {
- "tags": [
- "javascript",
- "css",
- "nan",
- "parseint"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411636/timeline",
- "question_comments_url": "/questions/6411636/comments",
- "question_answers_url": "/questions/6411636/answers",
- "question_id": 6411636,
- "owner": {
- "user_id": 334460,
- "user_type": "registered",
- "display_name": "robf92",
- "reputation": 28,
- "email_hash": "db83131e229b650a3a474923cb163211"
- },
- "creation_date": 1308575417,
- "last_edit_date": 1308575997,
- "last_activity_date": 1308580918,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 45,
- "score": 0,
- "community_owned": false,
- "title": "Javascript slider problem",
- "body": "Hi I am currently working on a script given to me by my boss and it is not working in all browsers except IE.
\n\nNow he is using the CSS property left to animate it so he has a variable which gets the current value of left. For example lets say left is equal to -100px
.
\n\nNow once it has this value it adds 10px
onto the value to make it move in from the left.
\n\nNow my issue lies with parseInt()
and the \"px\"
prefix at the end of the number. it keeps returning NaN
instead of the value of left.
\n\nDoes anyone know how to fix this problem?
\n\nThanks in advance
\n"
- },
- {
- "tags": [
- "javascript",
- "forms"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412913/timeline",
- "question_comments_url": "/questions/6412913/comments",
- "question_answers_url": "/questions/6412913/answers",
- "question_id": 6412913,
- "owner": {
- "user_id": 779189,
- "user_type": "unregistered",
- "display_name": "Bifterss",
- "reputation": 29,
- "email_hash": "59ee510a7de8f4c199ff6c44c02274bb"
- },
- "creation_date": 1308580600,
- "last_edit_date": 1308580690,
- "last_activity_date": 1308580894,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 0,
- "community_owned": false,
- "title": "Javascript return false, still submits form",
- "body": "I have a form with JS validation, upon there being an error, the submit button should 'grey-out' and the form should not be submitted, however the last couple of functions seem to submit the form even though they pop the alert box!?!?!
\n\nButton code:
\n\n<input type=\"submit\" name=\"button\" id=\"button\" \n onclick='return formvalidation();' value=\"Next\" />\n
\n\nNon Working Function Example:
\n\nfunction BlankSite() {\n var SiteNum= document.getElementsByName(\"sitesinput\")[0].value;\n if ((SiteNum == \"\") || (SiteNum == 0))\n {\n alert(\"You have not selected an amount of sites.\")\n document.forms[0].button.disabled=true;\n return false;\n }\n }\n
\n\nFunction initiator:
\n\nfunction formvalidation()\n{\n ZeroPhones();\n BlankPC();\n BlankSite();\n BlankSeats();\n phone_change();\n}// End of formvalidation\n
\n\nThis is very strange and I have tried various work arounds all to no avail!
\n\nThanks,\nB.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411574/timeline",
- "question_comments_url": "/questions/6411574/comments",
- "question_answers_url": "/questions/6411574/answers",
- "question_id": 6411574,
- "owner": {
- "user_id": 231957,
- "user_type": "registered",
- "display_name": "Luc",
- "reputation": 734,
- "email_hash": "67db701d6a4e067c6aeeca5dec7a82ef"
- },
- "creation_date": 1308575128,
- "last_edit_date": 1308575197,
- "last_activity_date": 1308580813,
- "up_vote_count": 3,
- "down_vote_count": 1,
- "view_count": 63,
- "score": 2,
- "community_owned": false,
- "title": "Resources that turns a javascript developer into a great javascript developer ?",
- "body": "I am more and more working with javascript, especially with JQuery for web site and node.js for server side (really like node.js though) and I quite often struggle to understand the inner structure of the language (such as prototypes, asynchronous function, ...).
\n\nWhat are the best articles, or so, that could help a developer to leverage his competency in this language (that is really worth learning IMHO).
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "prototype"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6402016,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6401946/timeline",
- "question_comments_url": "/questions/6401946/comments",
- "question_answers_url": "/questions/6401946/answers",
- "question_id": 6401946,
- "owner": {
- "user_id": 568785,
- "user_type": "registered",
- "display_name": "PhpMyCoder",
- "reputation": 672,
- "email_hash": "88c6371f6a47841abde4c60dd8a2f964"
- },
- "creation_date": 1308480840,
- "last_edit_date": 1308580791,
- "last_activity_date": 1308580791,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 28,
- "score": 1,
- "community_owned": false,
- "title": "Prototyping Built-In Modules in NodeJS",
- "body": "I've been trying to add some convenience functions to Node's file system module (mainly because it lacks some common sense things), but every time I begin fs.prototype.myfunc =
in the repl, Node complains that I am trying to set a property of an undefined variable. Is it really true that you cannot access Node's built-in module prototypes from the outside? If so, does anyone know a feasible workaround to extend Node's built-in modules?
\n\n--Thanks!
\n\n \n\nJust to note: I did require fs before trying to prototype it!
\n\nvar fs = require('fs');\nfs.prototype.myfunc = function() {}; //TypeError thrown here\n
\n"
- },
- {
- "tags": [
- "javascript",
- "html"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411282/timeline",
- "question_comments_url": "/questions/6411282/comments",
- "question_answers_url": "/questions/6411282/answers",
- "question_id": 6411282,
- "owner": {
- "user_id": 578523,
- "user_type": "registered",
- "display_name": "Marcos ",
- "reputation": 660,
- "email_hash": "00c4b6dae0d342a11e70e4982440f9e6"
- },
- "creation_date": 1308573611,
- "last_edit_date": 1308574791,
- "last_activity_date": 1308580646,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 50,
- "score": 0,
- "community_owned": false,
- "title": "How to lock scrolling of a web page temporarily?",
- "body": "How can I lock scrolling of a webpage temporarily when a dialog box is displayed ? I have a dialog box within which I want to enable scrolling after deactivating scrolling from the overlayed webpage .
\n\nIs there a js command to temporarily disable scrolling ?
\n"
- },
- {
- "tags": [
- "javascript",
- "ruby-on-rails",
- "nested-forms"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411778/timeline",
- "question_comments_url": "/questions/6411778/comments",
- "question_answers_url": "/questions/6411778/answers",
- "question_id": 6411778,
- "owner": {
- "user_id": 806695,
- "user_type": "unregistered",
- "display_name": "bla12",
- "reputation": 1,
- "email_hash": "2d4efce7fbf59cedc35242a018b4bb59"
- },
- "creation_date": 1308575987,
- "last_activity_date": 1308580316,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 7,
- "score": 0,
- "community_owned": false,
- "title": "Rails 3 plugin nested_form versus JavaScript appraoch for adding form fields dynamically in a nested form",
- "body": "I am researching ways on how to dynamically add form fields for nested models and stumbled accross the nested_form plugin by ryanb. No doubt this is a a great piece of code, but I wondered why does it have to be so sophisticated?
\n\nExample: A form for creating / adding a project has one or more tasks assigned. The user can dynamically add more tasks by clicking on a add-task button. A project must have at least one task. Each task has a name and a description.
\n\nSo why not just:\n- When generating the html, sourround each set of task fields with a div given an ID such as \"dynamic_fields\"\n- When the user clicks the add-task button, call a JavaScript function via link_to_function to clone the dynamic_fields subtree. Insert the new set of fields at the bottom of the task list.\n- Via JavaScript, remove the values of the newly added fields and replace the child ID with something unique (Ryan suggests using a value based on the current time)
\n\nI am aware that the nested_forms plugin also works for deeper nesting structures, but given my simple use case with only one level of hierarchy, is the approach outlined above practical? Or am I missing something important? Any guidance on this topic is appreciated.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-ui",
- "animation",
- "jquery-animation"
- ],
- "answer_count": 7,
- "favorite_count": 1,
- "question_timeline_url": "/questions/814910/timeline",
- "question_comments_url": "/questions/814910/comments",
- "question_answers_url": "/questions/814910/answers",
- "question_id": 814910,
- "creation_date": 1241273025,
- "last_activity_date": 1308580310,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 812,
- "score": 2,
- "community_owned": false,
- "title": "Animating Background Image",
- "body": "I Like using Jquery and its companion Jquery Ui but can not find a way to animate background image over a certain period of time like 5 seconds.\nI can not do something like:
\n\n$('sampleelement').animate({'background-image':'url(hello.jpg)'},5000);\n
\n\nAny ideas??
\n"
- },
- {
- "tags": [
- "javascript",
- "html5",
- "jquery-mobile"
- ],
- "answer_count": 3,
- "accepted_answer_id": 5554294,
- "favorite_count": 1,
- "question_timeline_url": "/questions/5549729/timeline",
- "question_comments_url": "/questions/5549729/comments",
- "question_answers_url": "/questions/5549729/answers",
- "question_id": 5549729,
- "owner": {
- "user_id": 683553,
- "user_type": "registered",
- "display_name": "Satch3000",
- "reputation": 557,
- "email_hash": "9d848d8392fc5291a0c77f4064b7e67a"
- },
- "creation_date": 1301995299,
- "last_activity_date": 1308580238,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 391,
- "score": 2,
- "community_owned": false,
- "title": "JQuery Mobile Calendar ?",
- "body": "Does anyone know of any Calendar that I could use on JQuery Mobile?
\n\nNeeds to be able to save dates locally etc.
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "google-chrome-extension"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6404725/timeline",
- "question_comments_url": "/questions/6404725/comments",
- "question_answers_url": "/questions/6404725/answers",
- "question_id": 6404725,
- "owner": {
- "user_id": 771790,
- "user_type": "registered",
- "display_name": "jbills",
- "reputation": 10,
- "email_hash": "925ead45ca60d8569512e6c4ff34c841"
- },
- "creation_date": 1308512617,
- "last_edit_date": 1308580065,
- "last_activity_date": 1308580065,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 19,
- "score": 1,
- "community_owned": false,
- "title": "Google tasks update error",
- "body": "I am attempting to update a task with the following code:\n \n
\n\nfunction updtsk(task,id)\n{\n var url = 'https://www.googleapis.com/tasks/v1/lists/@default/tasks/'+id;\n var req = {\n 'method': 'PUT',\n 'headers': {\n 'Content-type': 'application/json'\n },\n 'body': JSON.stringify(task)\n };\n var addDone = function(resp, xhr) {\n if (xhr.status != 200) {\n notifyFailure('Couldn\\'t update task.', xhr.status);\n return;\n }\n\n //notifySuccess(task['title']);\n }\n\n oauth.sendSignedRequest(url, addDone, req);\n}\n
\n\nI get the following error however:
\n\n\"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"global\",\n \"reason\": \"invalid\",\n \"message\": \"Invalid Value\"\n }\n ],\n \"code\": 400,\n \"message\": \"Invalid Value\"\n }\n}\n\"\n
\n\nThe update body is this:
\n\n{\n 'title': $(this).val()\n};\n
\n\nI am using the chrome_ex_oauth api and could use some help.
\n"
- },
- {
- "tags": [
- "javascript",
- "css"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6412241,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412119/timeline",
- "question_comments_url": "/questions/6412119/comments",
- "question_answers_url": "/questions/6412119/answers",
- "question_id": 6412119,
- "owner": {
- "user_id": 649737,
- "user_type": "registered",
- "display_name": "Leron",
- "reputation": 78,
- "email_hash": "c7720840fc9817ef936cf82e8cdb848d"
- },
- "creation_date": 1308577298,
- "last_edit_date": 1308579073,
- "last_activity_date": 1308580037,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 33,
- "score": 0,
- "community_owned": false,
- "title": "show larger Image with CSS and onMouseOver",
- "body": "I use this simple script :
\n\n<body>\n <script type=\"text/javascript\">\nfunction mouseOver()\n{\ndocument.getElementById(\"img1\").src =\"images/p2.jpg\";\n}\nfunction mouseOut()\n{\ndocument.getElementById(\"img1\").src =\"images/p1.jpg\";\n}\n</script>\n<div class=\"img\">\n <a target=\"_blank\" href=\"images/p1.jpg\"><img src=\"images/p1.jpg\" alt=\"Klematis\" width=\"110\" height=\"90\" id=\"img1\" onMouseOver= \"mouseOver()\" onMouseOut=\"mouseOut()\"/></a>\n <div class=\"desc\">Add a description of the image here</div>\n</div>\n
\n\nThe images are pretty big so I adjust them with width and height properties, I thought that if I just call the function I'll see the bigger image but it dosen't happen.So what can I do to see an enlarged image with onMouseOver?\n I'll add the style sheet in case it matters:
\n\n<style type=\"text/css\">\ndiv.img\n{\n margin: 2px;\n border: 1px solid #0000ff;\n height: auto;\n width: auto;\n float: left;\n text-align: center;\n}\ndiv.img img\n{\n display: inline;\n margin: 3px;\n border: 1px solid #ffffff;\n}\ndiv.img a:hover img {border: 1px solid #0000ff;}\ndiv.desc\n{\n text-align: center;\n font-weight: normal;\n width: 120px;\n margin: 2px;\n}\n</style>\n
\n\nP.S
\n\nDon't mind the <a href
thing I just use the raw code from w3 schools...
\n\nP.S Maybe I'll ask another question for this, the problem with the enlarged images is solved but now I want them to show in some kind of block cause now if I have even 4 iamges when i hover the last one the enlarged image goes far away from the starting location, and I want to make it just like gallery block and all images ot be shown there, wthout going outside the borders of the gallery.Any help or maybe another Qs better....
\n"
- },
- {
- "tags": [
- "javascript",
- "map"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412720/timeline",
- "question_comments_url": "/questions/6412720/comments",
- "question_answers_url": "/questions/6412720/answers",
- "question_id": 6412720,
- "owner": {
- "user_id": 804279,
- "user_type": "registered",
- "display_name": "Jatinder Thind",
- "reputation": 6,
- "email_hash": "d91f8193ab33d05022a8ac02b86c833d"
- },
- "creation_date": 1308579832,
- "last_activity_date": 1308580008,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 20,
- "score": 1,
- "community_owned": false,
- "title": "Need suggestions on interactive Javascript based map",
- "body": "can anyone help identify the Javascript library used for interactive maps on http://www.africatravelresource.com/
\n\nOr is it a custom solution? Any suggestions for something similar?
\n"
- },
- {
- "tags": [
- "javascript",
- "obfuscation",
- "decode",
- "encode",
- "ext"
- ],
- "answer_count": 1,
- "accepted_answer_id": 6410094,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6406161/timeline",
- "question_comments_url": "/questions/6406161/comments",
- "question_answers_url": "/questions/6406161/answers",
- "question_id": 6406161,
- "owner": {
- "user_id": 509789,
- "user_type": "registered",
- "display_name": "richardhell",
- "reputation": 18,
- "email_hash": "9e4f23b0072f4f7d3e2649e3e1a2816b"
- },
- "creation_date": 1308533799,
- "last_edit_date": 1308535618,
- "last_activity_date": 1308579900,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 54,
- "score": 1,
- "community_owned": false,
- "title": "JavaScript Encode",
- "body": "Surfing on web i find Ext.Gantt plugin for ExtJS, that extension have a special encode. Anybody know how to encode like that or another complicated form.
\n\nEncoded Gantt Chart
\n"
- }
- ]
-}
\ No newline at end of file
diff --git a/public/browse/lib/lunr.js/example/example_index.json b/public/browse/lib/lunr.js/example/example_index.json
deleted file mode 100644
index abf1fb29de..0000000000
--- a/public/browse/lib/lunr.js/example/example_index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"version":"0.5.6","fields":[{"name":"title","boost":10},{"name":"tags","boost":100},{"name":"body","boost":1}],"ref":"id","documentStore":{"store":{"78932":["appropri","box","code","code>i","p>use","paramet","pay</option>","pre><select","programat","select","service</option>","set","us","valu","value=\"10\">annu","value=\"11\">med","value=\"14\">long","value=\"17\">leav","without"],"318630":["0...but","p>do","p>follow","p>how","p>i","pic","pic.height","pic.removeattr(\"height","pic.removeattr(\"width","pic.width","pic_real_height","pic_real_width","plugin.var","real","remov","safari","safari/chrom","safari?ani","p>i","period","pre>$('sampleelement').animate({'background","second","someth","time","ui","us","way"],"3047391":["bad","basic","break","caus","combinations.\"+user=bob","p>but","p>can","p>mi","p>new","p>previous","p>take","p>user=bob","p>which","pars","parser","point","recent","regex","result","sign","skill","smith","smith shouldoverrideurlloadingi","p>kkthank","page","pc","pop","problem","same","sourc","support","through","up","url","veri","web","webkit","webview","webviewcli","went","whenev","wherea","window"],"3827055":["2010","2010.doe","p>i","pane","quickli","read","rel=\"nofollow\">j","rel=\"nofollow\">testdriven.netalthough","p>how","p>i","p>work","post","pre>$(window).blur(funct","second","send","setinterv","setinterval(funct","stop","success","this:<input","contain","coursor","cursor","data","delet","detect","dynam","effect","element","end","event","fix","great","here","href=\"http://vidasp.net/tinydemos/dynam","input","insid","javascript","keydown","left","li","li>when","locat","need","observable.)(in","p>whi","p>assum","p>i","posit","possibl","press","programmat","regular","rel=\"nofollow\">http://vidasp.net/tinydemos/dynam","right","scenario","text","textbox.html","textbox.html should i","p>i'm","p>the","p>use","pars","parser","parser.parsefromstring(sxml","piec","pre><?xml","pre>funct","pre>var","quit","return","singl","someth","sourcexml).find(\"table1\").each(funct","text/xml","this).find(\"vehicleid\").text","this).find(\"vehiclename\").text","tri","type=\"xs:str","under","v1\">","var","vehicl","vehicleid","vehiclenam","version=\"1.0","window.activexobject","window.dompars","without","work","write","wrong","xml","xmldom(sourcexml","xmldom(sxml","xmln","xmlns:diffgr=\"urn:schema","xmlns:msdata=\"urn:schema","xmlns:msprop=\"urn:schema","xmlns:xs=\"http://www.w3.org/2001/xmlschema"],"4460205":["applic","detect","differ","insid","io","ipad","ipad/iphon","javascript","p>i","run","safari","via","way","websit","webview","webview?did","p>doe","php","php/ajax","php/javascript/ajax","redo","regist","server","state","system","undo","undo/redo","user","variabl","web","work"],"4529460":["0","2","___pause(100","___pause(250","_resize_container_image_box(intimagewidth,intimageheight","_show_imag","a').lightbox","amp;&","annoth","apli","appli","bar","biga","blockquot","box').anim","box').css","box').height","box').width","browser","browser.update andbut","p>henc","p>i","p>pleas","p>thanks$('#galleri","pre>funct","rel=\"nofollow\">http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspxkeydown keypress al","li>mor","li>novnc","li>quirksmod","li>when","links:but","p>solution btw","p>due","p>i'm","p>quick","p>so","p>use","page","physic","post","press","pressed.detect","rel=\"nofollow\">ev","rel=\"nofollow\">here novnc","rel=\"nofollow\">novncsummaryazertycharcodekeycodekeydownkeypresskeyupkeyup.preventdefault()samehi","p>pleas","popup(lik","program","provid","relat","storag","store","text","time","us","user","want","write"],"5549729":["anyon","calendar","date","etc.doe","p>need","p>thanksi","p>sent","p>solut","p>thank","p>the","page","pass","php","place","post","problem","proxy..ani","p>i","p>thi","part","particular","pre>http://jsfiddle.net/ghhjm/http://recruitmentmalta.com/ptowers/and","p>i","p>scenario","pre>ratingcount addrating.scala","p>ratings.html","p>ratingspage.scala","p>ha","p>i","p>in","p>see","page","page): <html>","pre>packag","problem","rate","rating\">","rating\").click","rating</a></td>","rating</button>","rating').click(funct","rating').hid","rating').show","rating3","ratingcount","ratingcount).asinstanceof[htmlinput].setvalueattribute(r","ratingcount}).insertbefore('#add","ratingid","ratings\"):
i","p>i'm","p>thanks.i","p>use","rel=\"nofollow\">http://devthought.com/wp","sourc","style","suggest","us","web"],"6397574":["access","ad","be","code>i","p>i'm","p>use","pass","person","post","pre>function(req","re","receiv","req","req.sess","req/res.i","repetit","retyp","shorthand","strong>over
over.what","p>i","p>thank","pre>javascript","throw(0","tri","var%20d=document,z=d.createelement('scr'+'ipt'),b=d.body,l=d.loc","void(0","z.setattribute('src',l.protocol+'//www.instapaper.com/j/deynbbpjusei?u='+encodeuricomponent(l.href)+'&t='+(new%20date().gettim"],"6401946":["access","add","anyon","befor","begin","built","code","code>fs.prototype.myfunc","common","complain","conveni","extend","feasibl","file","fs","fs.prototype.myfunc","function","here","hr","it!i'v","p>just","pre>var","properti","prototyp","realli","repl","requir","require('f","sens","set","system","thank","thing","thrown","time","tri","true","typeerror","undefin","variabl","workaround"],"6403354":["0","0000cd","1","1st","2","25","2nd","7","7,25","7,25,,7,40,formol","7,40,formol","_l","_x","_y","array","array.best","p>i","p>the","p>what","p>wherea","pars","pre>[7,25","pre>[7,25,,7,40,formol","pre>[[object","pre>var","regards(tablewidth","code>class=\"cell\"
javascript
jquery
on","content","design","differ","div","document","don't","done","equal","even","except","fiddle..also","p>i","p>it","p>thank","p>the","percentag","pixels).<t","px","readi","resizepixelsi","p>the","pre>funct","put","reason","req","return","task","this).val","this:i","pass","possibl","prefer","string","take","us","way","xml"],"6406161":["anoth","anybodi","chartsurf","plugin","rel=\"nofollow\">encod","scheduler.com/js/sch","special","web"],"6409944":["30","blatantli","browser","can't","case","client","code>i","p>thanks!the","p>what","page","page.now.core.on('disconnect","process","reconnect","reload","remain","repeat","run","script","server","short","side","socket.io","someth","this:mi","display","dissapears. i","p>thi","pre>var","previou","question
. doe","p>i","p>the","perfectli","pre>$.ajax","pre><?xml","problem","response).find(\"simpletype\").each(funct","restrict","restriction).find(\"enumeration\").each(funct","see","sourc","studentmodeldescription.xml","success:function(respons","textstatu","this).find(\"restriction[base=xs:str","tmp","tmp=$(this).attr(\"valu","type</xs:documentation>","type:\"get","url:\"views/workspace/branching_forms/studentmodeldescription.xml","value=\"adsl","value=\"adsl2+/c","value=\"dialup","value=\"googl","value=\"internet","value=\"mozilla","value=\"opera","value=\"safari","values=new","values[j","var","version=\"1.0","work","xml","xml:lang=\"en\">network","xml:lang=\"en\">web","xmlns:xs=\"http://www.w3.org/2001/xmlschema\">"],"6410224":["box","class=\"cont","class=\"data\">","class=\"label","class=\"row\"><div","code","code>i","php5","popul","post(document.url,qstring,function(data","pre>friend","phone","piec","pre>var","regex","regex.test(avidno","regexp(avidno","replac","success","undefin","valid","var"],"6411194":["click","context","href=\"http://www.contextmenu.net/screenshot/screenshot_windows_explorer_shell_context_menu.jpg","item","javascript","jqueri","jqueryedit can","p>like","plugin","rel=\"nofollow\">thistemporarilyi","p>how","page","scroll","strong>aft","temporarili","want","web","webpag","webpage i","p>what","prototyp","quit","realli","resourc","server","side","site","structur","struggl","such","though","turn","understand","web","work","worth"],"6411636":["100px
.\"px\" 10px
nanparseint()doe","p>hi","p>now","p>thank","parseint","prefix","problem","problem?ani","p>ex","p>how","p>i","result.exampl","p>i","p>so","piec","plugin","practic","project","rail","rel=\"nofollow\">nested_form(+) i","p>what","p>with","particular","php","potenti","product","rel=\"nofollow\">googl","reli","server.<a","code>don't","p>i","p>p.","p>p.sthe","pre><body>","pre><styl","pretti","problem","properti","qs","question","raw","schools...but","p>i","p>if","pre>sortabletodo","sortabl","sortables(\"todo","sortabletodo","sortabletodos.seri","sortabletodos.serialize(fals","strong>oncomplete
)how","p>i","p>which","pre>'undefin","pre>var","prototype.j","prototype.jsand","p>ani","p>basic","p>edit:here","p>i","p>now","p>oh","p>}<td","pre>funct","pretti","put","realli","rel=\"nofollow\">https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.jsdocument.referrerdomain/login.htmldomain/statisticsresponse.sendredirecthow","p>ok","page","page.and a","p>ani","p>b","p>but","p>for","p>i","p>i'm","p>so","p>the","p>without","page","peopl","permiss","pointless","postal/zip","pre>if","present","prompt","promptli","question","question?.length00
:ax.lengthhow","p>i","p>let'","pre>funct","pre>var","properti","rest","return","set","so:am","p>ani","p>in","p>jquery$(document).ready(funct","pre><a","receiv","rel=\"nofollow\">jsfiddlefind","javascriptupdate: i'v","p>right","p>thank","p>thi","p>when","pleas","portion","pre><head","pre>funct","pretti","provid","quick","quit","remov","render","respons","run","runat=\"serv","runat=\"server\">","runat=\"server\"></asp:textbox></td>","script","search","seem","send","simpli","someon","src=\"../../scripts/webeffects.j","strong>document.getelementbyid(\"loginview1_txt2ndnum\").valu","strong>tbllottopick.findcontrolvisible=\"false\"can","p>or","rel=\"nofollow\">http://www.africatravelresource.com/edit","p>i","p>im","p>thank","php","pull","reader","realli","rss","server","side","small","start","stuff","this?example fiddle: i","p>what","practic","pre>var","problem","rel=\"nofollow\">http://jsfiddle.net/f6c92/button","p>function","p>i","p>non","p>thank","p>thi","phone_chang","pop","pre><input","pre>funct","return","seem","select","site","sitenum","still","strang","submit","though","tri","type=\"submit","upon","valid","value=\"next","var","variou","veri","work","zerophon"],"6412993":["1","1.4.3.min.js\"></script>","1]=a[i","1px","4.01//en","a[i","all\"><input","all<\\/div>').appendto('.filt","appreciated!ani","p>but","p>here","p>i","p>mi","page","part","pick","popul","possibl","pre><!doctyp","problem","public","pull","reflect","remov","return","run","s","script","see","select","show","sound","space","split","src","src=\"http://www.chewbz.com/jqueri","string","stringofclassnam","stringofclassnames.split","stringvalu","stringvalue).fadein","stringvalue).fadeout","style","sweet","this).attr('class","this).is(':check","this).val","thisclassstr","through","tmp","tmp.length+=1","tmp[tmp.length","trim","true","type:non","type=\"checkbox","type=\"text/javascript","type=\"text/javascript\">","ul.filterthi","understand","uniqu","unique(a","unique(arrayclass","up","upset","us","valu","value=\"'+thi","value=\"filteral","var","veri","version","w3c//dtd","want","width:200px;height:200px;background:#eee;border:solid","without","wonder","word","work"],"6412997":["1!</h3>","2!</h3>","3!</h3>","4!</h3>","add","befor","between","booklet","class=\"b","code>how","p>i","p>i'm","page","plugin","pre><div","prepend","really.(booklet)cssextra","em>in","em>javascript.keydownmultilin","em>tabbut","p>do","p>if","p>it'","p>we","posit","pre>document.getelementbyid","pre>value[0]='h","press","prevent","problem","return","return.i'd","page","past","script","text","user","way"],"6413183":["abov","alreadi","assign","assigned_list).**note:just","p>i","p>just","p>on","p>so","p>thanks.the","p>through","page","perform","possibl","possible?<select","present","programmat","provid","remov","requir","right","select","set","setup","shuttl","size=\"7","style=\"width:250px","this:below","p>can","p>i","page","pleas","pre>but","p>it","p>tri","p>which","photo","possible?var","same","search","set","show","string","style=\"position:relative;float:left","style=\"position:relative;width:200px;\">","trento(tn)<br","us","var","web","websit"],"6413265":["append","below","class=\"edit","class=\"row\">","clicked.<tr>
ani","p>but","p>i","p>in","p>where","p>would","pre>$('.row').append(\"<tr><td>it","pre><tr","rel=\"nofollow\">http://jsfiddle.net/littlesandra88/tzqyx/
dojo.require('folder.file2');
resources/js/dojo1.6/dojo/dojo.js
resources/js/folder/file2.js
resources/js/pages/file1.js
dojo1.6 how","p>i","p>so","p>thi","p>when","path","pre>fil","requir","resources/js/dojo1.6/folder/file2.j","run","strong>folderpages)smartphon","code>thisbelow","phonebutton').click(function(){self.toggleclick","phonecontain","phonecontainer').toggleclass","phonecontainer.append(\"<div","phonescreen\").append(\"<div","phonescreen').toggleclass","pre>smartphon","refer","seen","self=thi","set","style","this.init","this.minimap","this.minimap.init(\"#phonescreen","this.minimap.toggl","this.toggleclick","toggleclick","tri","troubl","understand","up","var","vertic","write"],"6413416":["2008","3.5","asp.net","check","debug","element","express","good/easi","i'm","index","input","javascript","jqueri","list","look","method","open","p>i'm","page","prefer","saniti","site","sort","studio","suggestions..blur(function(length){.blurlength","code>lengthvar","correct","correct.a","p>abov","p>i","p>the","pass","pre>$('.myfilter').focus(funct","re","simplifi","this).val().length","this).val().length;jquery('#textbox').val();mailclasstextbox\"test@test.com","p>^([_a","p>escap","p>nb: but","p>for","p>i","pass","re","reason","regex","rel=\"nofollow\">http://regexpal.com/undefined
\"and","p>ani","p>i","p>the","page","perfectli","popul","pre><span","second","someth","strang","thing","this:\"0","p>ani","p>i","php","post(\"mybackendfile.php","pre><input","pre>var","press","problem","querystr","result","script","script:i","p>thank","page","pal<script","pun","put","script","searchsd","id","im","info","java","javascript","join","know","known","larger","manag","nefor","newer","p>i","page","sale","scam","scammer","scan","script","scripter","site","thank","trade","uid","want","way"],"6413720":["access","allow","amp;&","appid","befor","bodi","caption","chang","check","click","close","code>how","p>so","p>thi","p>three","p>use","pars","pass","pictur","post","pre><div","pre><p","pre><script>","respons","response.post_id","root\"></div>","send","server","session","share","src=\"https://connect.facebook.net/he_il/all.js\"></script>","statu","taghtml","p>if","p>it","p>javascript","page","pre><html>","pre>(funct","prompt","return","run","show","simpl","src=\"testquery.js\"></script>","tab.i","p>i'm","per","plug","png","problem","process","push","rgb","sampl","server","similar","standard","support","teximage2d","textur","tiff","tri","types.can","p>i","p>i'm","p>the","post","pre>funct","present","press","probabl","probem","problem","rdf","resultdocu","return","right","stylesheet","suppos","tell","test","tri","us","wan't","way","web","window.activexobject","window.xmlhttprequest","work","write","wrong","xhttp.open(\"get\",dname,fals","xhttp.responsexml","xhttp.send","xhttp=new","xlst","xml","xml=loadxmldoc(\"http://www.example.com/me.rdf","xmlhttprequest","xsl","xsl=loadxmldoc(\"http://www.example.com/test.xsl","xslt","xsltprocessor","xsltprocessor.importstylesheet(xsl","xsltprocessor.transformtofragment(xml,docu","xsltprocessor=new"],"6413881":["10","10\"maximum","li>minimum","likewis","maximum","minimum","number","p>i","p>say","p>then","php","product","rang","range.i'm","p>thank","pages.<form","print","rest","retain","return","sign","site","someth","stackoverflow","store","submit","think","through","throughout","top","type=\"submit","type=\"text","us","user","value=\"mickey","value=\"mous","value=\"submit","way"],"6413908":["activexobject(\"microsoft.xmlhttp","api","chrome","code","code>hello","p>it`","pre>var","safari","simpl","thanksx123.com/123.html
x123.com/setting.htmlx123.com/setting.html
i","p>lemm","page(x123.com/123.html<html>","reflect","reload","request","save","save_chang","select","type","type=\"button","us","value=\"123\">123</option>","value=\"456\">456</option>","want","webpag"],"6413951":["_care_point.html.erbcheersit'","p>thi","p>when","partial","post","pre><div","problem.how","page","pre>funct","retunr","return","src","us","var"],"6414093":["100","11","11.118851","700px\"></div>","98","center","code","code>but","p>thi","pre><script","recogn","remov","satur","src=\"http://maps.google.com/maps/api/js?sensor=true\"></script>","style=\"width","styler","stylez","type=\"text/javascript","type=\"text/javascript\">","var","work","wrong","zoom"],"6414105":["182722795115444","ad","advance.ar","li>how","li>mi","log","login","lt;/script>","lt;div","lt;fb:like","lt;script","lt;script>","name","ol","p","p>i","p>so","p>thank","p>when","pre>i","p>javascript","particular","pass","path(\"/getstatusal","pre>fieldselect","p>now","p>or","p>so","paramet","parameter.<tr>","prefer","probabl","realli","realtim","red","registr","right","same","sampl","script","second","server","shorter","side","simpler","small","someon","someth","specifi","sure","switch","there'","third","those","trigger","type=\"text","usual","valu","want","way","way.herei'm","p>i'v","p>the","p>thi","p>thoughts?if","problem","process","produc","python","rel=\"nofollow\">http://www.regulations.govphantomjsand","p>i","p>in","pick","pre><html>","pre>(funct","refer","return","seem","someon","somewher","spot","src=\"testquery.js\"></script>","tag","testqueri","testquery(obj","testquery.html","testquery.jsfrom to how","p>thank","pre><select","prototyp","prototype.edit","p>i","page","php","request","see","select?and","p>i","p>i'm","p>i'v","p>obvious","p>thank","p>then","p>thi","place","placehold","plot","plugin","pre>seri","pre>seriesdefault","pre>y2axi","pre>yaxi","put","recent","render","renderer:$.jqplot.dateaxisrender","second","separ","seri","set","show","showtick","stack","start","thing","tick","tickopt","ticks:ani","p>i","p>thankshttp://www.youtube.com/watch?v=mynj4mz9g9g $_post[\"data1\"]
$_post[\"data2\"] [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"][\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]abcajax2.phpclass=\"content\"class=\"title\"image_name.extension
.indexaindexb$(.content).css","p>i","p>in","p>thank","p>the","p>you","php","place","portion","post","pre>$(document).readi","pre><t","rel=\"nofollow\">here nothere'","p>i","p>thi","p>when","problem","problem.ani","p>we","perfect","rel=\"nofollow\">http://www.realcapfinancial.comi","p>i'm","p>what","part","popul","provid","real","realli","sampl","select","show","somebodi","thanks!$('#international').live(\"click\",funct","code>updat","h2>html:javascript:johncheer","p>i","p>if","p>thank","paramchangebox","paramchangeboxes.removeattr('dis","php","pleas","portion","pre>$('#international').click(funct","pre><div","problem","regard","remot","see","select","selection.deploytoolmatlab","complet","compon","convert","dll","don't","even","ex","fi","file","fuzzi","javascript","javascript)?i","p>p.","partial","program","program.anybodi","p>basic","p>i","p>thanks.i","p>i'm","p>when","pre><input","pre>data.correct","put","realli","return","see","send","state","thought","type=\"checkbox","value=\"data.correct","way","what'","wrong"]},"length":100},"tokenStore":{"root":{"0":{"0":{"0":{"0":{"docs":{},"c":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}},"f":{"docs":{},"f":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}},"docs":{}},"docs":{}},"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6364675":{"ref":6364675,"tf":0.02027027027027027},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6411169":{"ref":6411169,"tf":0.06521739130434782},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413440":{"ref":6413440,"tf":0.05333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.016304347826086956}},"'":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}},"1":{"0":{"0":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}},"docs":{"6412334":{"ref":6412334,"tf":0.020833333333333332},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414530":{"ref":6414530,"tf":0.005}},"%":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}}}}}}},"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"1":{"0":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}},".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"2":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6414438":{"ref":6414438,"tf":1.0108695652173914}},":":{"0":{"0":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}},"p":{"docs":{},"m":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"docs":{}},"docs":{}},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}},"3":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"4":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"6":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413744":{"ref":6413744,"tf":1.49010989010989},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"\"":{"docs":{},"?":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}},"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"9":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6414530":{"ref":6414530,"tf":0.005}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414530":{"ref":6414530,"tf":0.005}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},".":{"4":{"docs":{},".":{"3":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}},"]":{"docs":{},"=":{"docs":{},"a":{"docs":{},"[":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}}},"2":{"0":{"0":{"8":{"docs":{"6413416":{"ref":6413416,"tf":20.03030303030303}}},"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413881":{"ref":6413881,"tf":0.044444444444444446}}},"1":{"0":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}},"docs":{}},"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"1":{"5":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}},"docs":{}},"2":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"4":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608}}},"5":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}},"9":{"8":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"docs":{}},"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}},"3":{"0":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}},"5":{"0":{"0":{"0":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"docs":{}},"docs":{}},"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"docs":{"318630":{"ref":318630,"tf":0.02},"3802824":{"ref":3802824,"tf":0.014925373134328358},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.7692307692307693},"6414123":{"ref":6414123,"tf":0.018292682926829267}},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}},".":{"5":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}},"docs":{}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"4":{"0":{"0":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}},"docs":{}},"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414438":{"ref":6414438,"tf":0.005434782608695652}},".":{"0":{"1":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"docs":{}},"docs":{}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}}},"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}},"docs":{}},"docs":{}},"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"6":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},")":{"docs":{},"/":{"6":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}},"docs":{}}}}}},"6":{"6":{"6":{"0":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"7":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6413881":{"ref":6413881,"tf":0.022222222222222223}},",":{"2":{"5":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},",":{"docs":{},",":{"7":{"docs":{},",":{"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"8":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}},".":{"1":{"2":{"3":{"docs":{},".":{"1":{"2":{"3":{"4":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":11.11111111111111}},"\"":{"docs":{},"?":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"9":{"8":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{"6413444":{"ref":6413444,"tf":0.0963855421686747},"6414578":{"ref":6414578,"tf":14.285714285714285}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}},"]":{"docs":{},"{":{"3":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}},"4":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}},"docs":{}}}},"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414152":{"ref":6414152,"tf":0.0078125},"6414827":{"ref":6414827,"tf":0.03125}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412607":{"ref":6412607,"tf":2.0714285714285716}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6403354":{"ref":6403354,"tf":26.691056910569106},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.01483679525222552}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"(":{"0":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"4185821":{"ref":4185821,"tf":0.025}}}}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"4508230":{"ref":4508230,"tf":2.064516129032258},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"_":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035}}}}}}}},"v":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"x":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413944":{"ref":6413944,"tf":0.03076923076923077}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":2.022727272727273},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.0078125}}}},"p":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"k":{"docs":{},"!":{"docs":{},"!":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.012345679012345678}}}}},"r":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"a":{"docs":{},"z":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"p":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6396782":{"ref":6396782,"tf":0.03125},"6414105":{"ref":6414105,"tf":20},"6414558":{"ref":6414558,"tf":1.7214611872146117}},"a":{"docs":{},"r":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"l":{"docs":{"6414613":{"ref":6414613,"tf":25}},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4460205":{"ref":4460205,"tf":0.07692307692307693},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"/":{"docs":{},"x":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"a":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{"6411778":{"ref":6411778,"tf":0.7692307692307693}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}},"a":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"i":{"docs":{},"d":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413908":{"ref":6413908,"tf":20},"6414105":{"ref":6414105,"tf":22}},"'":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"l":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413183":{"ref":6413183,"tf":0.014285714285714285}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}}}}}},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6412632":{"ref":6412632,"tf":52.00581395348837},"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"k":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6395651":{"ref":6395651,"tf":0.04},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.011627906976744186}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}}}},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.024691358024691357},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413778":{"ref":6413778,"tf":1.25},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.03225806451612903},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":2.0317460317460316},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"u":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}},"s":{"docs":{},"s":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6414152":{"ref":6414152,"tf":0.0234375}}}}},"a":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"o":{"docs":{},"n":{"docs":{"6413778":{"ref":6413778,"tf":20}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.005}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}},"i":{"docs":{},"c":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},"=":{"docs":{},"$":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"(":{"docs":{},"$":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},"=":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.03508771929824561}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"(":{"docs":{},"u":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"m":{"docs":{},"y":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}},"n":{"docs":{},"o":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"y":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}},"'":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"%":{"2":{"0":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"%":{"2":{"0":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"%":{"2":{"0":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}},"u":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"s":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":1}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413327":{"ref":6413327,"tf":0.05},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414530":{"ref":6414530,"tf":0.005}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414530":{"ref":6414530,"tf":0.005}}}}}},"o":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"t":{"docs":{},"h":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414240":{"ref":6414240,"tf":0.012345679012345678}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":51.27985074626866}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"y":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}},"i":{"docs":{},"m":{"docs":{"814910":{"ref":814910,"tf":31.94642857142857},"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6414530":{"ref":6414530,"tf":0.01}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4047072":{"ref":4047072,"tf":0.09302325581395349},"4508230":{"ref":4508230,"tf":20},"6174688":{"ref":6174688,"tf":26.272222222222222},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412753":{"ref":6412753,"tf":28.37984496124031},"6413944":{"ref":6413944,"tf":52.01538461538462},"6414530":{"ref":6414530,"tf":41.68666666666667}},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6412119":{"ref":6412119,"tf":0.011764705882352941}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":21.452961672473865},"6396782":{"ref":6396782,"tf":41.729166666666664}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}}}}}}},"s":{"docs":{},"u":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":33.33333333333333}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}},"l":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6412566":{"ref":6412566,"tf":1.25},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414105":{"ref":6414105,"tf":0.02857142857142857}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},"_":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":1.0217391304347827}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"t":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}},"u":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414060":{"ref":6414060,"tf":50}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}},",":{"docs":{},"b":{"docs":{},",":{"docs":{},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}},"[":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.0379746835443038}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"b":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413327":{"ref":6413327,"tf":2},"6414438":{"ref":6414438,"tf":0.005434782608695652}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":3.3749999999999996},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414530":{"ref":6414530,"tf":1.6866666666666665}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}},"s":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412720":{"ref":6412720,"tf":1.6666666666666665},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"=":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}},"c":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.05263157894736842}},"d":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"r":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"t":{"docs":{},"z":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}},"o":{"docs":{},"x":{"docs":{"78932":{"ref":78932,"tf":1.25},"4185821":{"ref":4185821,"tf":0.075},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410224":{"ref":6410224,"tf":2.019607843137255},"6411282":{"ref":6411282,"tf":0.07407407407407407},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414614":{"ref":6414614,"tf":0.018518518518518517},"6414827":{"ref":6414827,"tf":0.03125}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"!":{"docs":{},"?":{"docs":{},"!":{"docs":{},"?":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726},"6411169":{"ref":6411169,"tf":25},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"t":{"docs":{},"h":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4185821":{"ref":4185821,"tf":0.0125},"4272538":{"ref":4272538,"tf":1.6757575757575756},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413240":{"ref":6413240,"tf":0.018691588785046728}},"e":{"docs":{},"r":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6414438":{"ref":6414438,"tf":0.010869565217391304}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.023529411764705882},"6414530":{"ref":6414530,"tf":0.005}}}}}},"o":{"docs":{},"k":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"s":{"docs":{},"s":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"e":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414473":{"ref":6414473,"tf":1.25}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"v":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413265":{"ref":6413265,"tf":1.4474393530997303},"6414614":{"ref":6414614,"tf":0.006172839506172839}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.01}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413951":{"ref":6413951,"tf":2.0114942528735633}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":2},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}},".":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412863":{"ref":6412863,"tf":0.038461538461538464}}},"i":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"t":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{},"#":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.0380952380952381}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"g":{"docs":{"6412151":{"ref":6412151,"tf":2.011627906976744}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}},"t":{"docs":{"6401946":{"ref":6401946,"tf":2.5317460317460316}}}}}},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412632":{"ref":6412632,"tf":0.029069767441860465}},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"3802824":{"ref":3802824,"tf":0.014925373134328358},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":40.01345291479821},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":0.8092307692307693},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413732":{"ref":6413732,"tf":33.34972677595628},"6413744":{"ref":6413744,"tf":0.03076923076923077},"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"m":{"docs":{},"s":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},",":{"1":{"2":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"k":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"$":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":2.011627906976744}}}}}}},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}},"i":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413951":{"ref":6413951,"tf":0.011494252873563218}},"a":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413744":{"ref":6413744,"tf":1.49010989010989}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"4047072":{"ref":4047072,"tf":3.3565891472868215},"6413440":{"ref":6413440,"tf":0.02666666666666667}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}},"h":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"n":{"docs":{},"k":{"docs":{},"p":{"docs":{},"c":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"i":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.025974025974025976}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"6403354":{"ref":6403354,"tf":0.0975609756097561},"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}}}}}}},"g":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{},"z":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"3827055":{"ref":3827055,"tf":0.014705882352941176},"6414755":{"ref":6414755,"tf":35.455782312925166}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6405964":{"ref":6405964,"tf":22.537037037037038},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.028368794326241134},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.024691358024691357},"6414827":{"ref":6414827,"tf":0.0625}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6409972":{"ref":6409972,"tf":1.4702380952380951},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6414827":{"ref":6414827,"tf":2.53125}},"'":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"y":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.018518518518518517}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413944":{"ref":6413944,"tf":2.046153846153846},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":1.6966666666666665},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.03076923076923077}}}}}},"r":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0089686098654709}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"6413440":{"ref":6413440,"tf":1.25}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6404725":{"ref":6404725,"tf":25},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414558":{"ref":6414558,"tf":12.805175038051749}},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"docs":{},"o":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6174688":{"ref":6174688,"tf":1.25}}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412993":{"ref":6412993,"tf":0.026706231454005934},"6413951":{"ref":6413951,"tf":0.022988505747126436}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6414530":{"ref":6414530,"tf":0.03}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"6412997":{"ref":6412997,"tf":0.031746031746031744}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"m":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}},"_":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}},"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6414530":{"ref":6414530,"tf":0.03}}}}}},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}},"r":{"docs":{},"g":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}}}}},"'":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}},"z":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.04477611940298507},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414105":{"ref":6414105,"tf":0.0380952380952381}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":0.043478260869565216},"6413444":{"ref":6413444,"tf":0.012048192771084338}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6413036":{"ref":6413036,"tf":28.395833333333332}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413951":{"ref":6413951,"tf":0.034482758620689655}}}},"n":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":2.00709219858156}},"(":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}},"o":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"d":{"docs":{},"e":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.02097902097902098},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6396782":{"ref":6396782,"tf":0.03125},"6401696":{"ref":6401696,"tf":0.07407407407407407},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413440":{"ref":6413440,"tf":0.02666666666666667},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.06451612903225806},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":0.05555555555555555}},">":{"0":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}},"e":{"docs":{},">":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}}},"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}},"docs":{}},"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}},"r":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"318630":{"ref":318630,"tf":0.02},"814910":{"ref":814910,"tf":0.041666666666666664},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403354":{"ref":6403354,"tf":0.056910569105691054},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412259":{"ref":6412259,"tf":0.07692307692307693},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.05063291139240506},"6412607":{"ref":6412607,"tf":0.07142857142857142},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412913":{"ref":6412913,"tf":0.03896103896103896},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413018":{"ref":6413018,"tf":0.02666666666666667},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":0.05660377358490566},"6413327":{"ref":6413327,"tf":0.025},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413440":{"ref":6413440,"tf":0.02666666666666667},"6413512":{"ref":6413512,"tf":0.06060606060606061},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.02962962962962963},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414253":{"ref":6414253,"tf":0.043478260869565216},"6414438":{"ref":6414438,"tf":0.021739130434782608},"6414530":{"ref":6414530,"tf":0.01},"6414614":{"ref":6414614,"tf":0.012345679012345678},"6414827":{"ref":6414827,"tf":0.0625}}}}}},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}},"2":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}},"docs":{}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}}}}}}}}}}},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"i":{"docs":{},"l":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"[":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"2":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"3":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"4":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"5":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"6":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"7":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"8":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"9":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"0":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"1":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"2":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"2":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}},"docs":{}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"x":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},"{":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"a":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}},"\"":{"docs":{},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}}}}}}}},"f":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"n":{"docs":{},"f":{"docs":{},"u":{"docs":{},"s":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.037037037037037035},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412632":{"ref":6412632,"tf":2},"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":28.395833333333332},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413944":{"ref":6413944,"tf":2.0153846153846153},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{"6413778":{"ref":6413778,"tf":0.028037383177570093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{"6411194":{"ref":6411194,"tf":2.0454545454545454},"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.018957345971563982},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986}},"u":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"6411169":{"ref":6411169,"tf":1.4285714285714284}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414755":{"ref":6414755,"tf":1.0612244897959184}}}},"n":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6409944":{"ref":6409944,"tf":2.900621118012422},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414105":{"ref":6414105,"tf":0.01904761904761905}},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":3.333333333333333}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412151":{"ref":6412151,"tf":0.03488372093023256}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413440":{"ref":6413440,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.012345679012345678}},"l":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6414755":{"ref":6414755,"tf":0.02040816326530612}}},"x":{"docs":{"3047391":{"ref":3047391,"tf":2},"6412993":{"ref":6412993,"tf":1.6666666666666665},"6413523":{"ref":6413523,"tf":2}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"c":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}},"o":{"docs":{},"n":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"u":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":0.02702702702702703}}}},"i":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}},"e":{"docs":{},"t":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}},":":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}},"e":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"m":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":35.84538152610441}},"n":{"docs":{},"d":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412334":{"ref":6412334,"tf":0.004166666666666667}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}}}},"o":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"o":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"_":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6414123":{"ref":6414123,"tf":0.012195121951219513}},":":{"docs":{},"#":{"0":{"0":{"0":{"0":{"0":{"0":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"3":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}},"docs":{}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"6409972":{"ref":6409972,"tf":20.041666666666668}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}},"n":{"docs":{},"t":{"docs":{"6411637":{"ref":6411637,"tf":35.851190476190474}}}},"p":{"docs":{},"l":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"o":{"docs":{},"k":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":52}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4047072":{"ref":4047072,"tf":0.046511627906976744},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":1.2722222222222221},"6364675":{"ref":6364675,"tf":1.4387065637065635},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.0078125}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{"5549729":{"ref":5549729,"tf":3.4047619047619047},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6403728":{"ref":6403728,"tf":0.023076923076923078}}}}}},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}}}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}}}}}}}}}}}}},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"r":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413889":{"ref":6413889,"tf":0.015873015873015872}},"a":{"docs":{},"g":{"docs":{"6413018":{"ref":6413018,"tf":1.29}}}}}},"d":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693}}}},"c":{"docs":{},"h":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414152":{"ref":6414152,"tf":0.0078125},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"v":{"docs":{},"a":{"docs":{"6413881":{"ref":6413881,"tf":0.044444444444444446}}}}},"s":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":0.02},"4185821":{"ref":4185821,"tf":0.0125},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186}}}},"m":{"docs":{},"e":{"docs":{"6412151":{"ref":6412151,"tf":2},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"u":{"docs":{},"s":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6414473":{"ref":6414473,"tf":1.25},"6414558":{"ref":6414558,"tf":0.0273972602739726}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"6410184":{"ref":6410184,"tf":0.02040816326530612}}},"b":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}},"r":{"docs":{},"a":{"docs":{},"z":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":20}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02},"5351143":{"ref":5351143,"tf":1.4285714285714284},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.020771513353115726},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"6413951":{"ref":6413951,"tf":2}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":1.4978021978021976},"6414530":{"ref":6414530,"tf":0.025}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":0.0273972602739726}}}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6411636":{"ref":6411636,"tf":0.034482758620689655},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413036":{"ref":6413036,"tf":3.333333333333333},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0375}}}}}}},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413881":{"ref":6413881,"tf":0.022222222222222223}},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":25},"6294393":{"ref":6294393,"tf":20},"6411636":{"ref":6411636,"tf":25.017241379310345},"6412119":{"ref":6412119,"tf":52},"6413018":{"ref":6413018,"tf":20}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"c":{"docs":{},"c":{"docs":{},";":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":1.6796536796536794},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005},"6414827":{"ref":6414827,"tf":0.03125}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414614":{"ref":6414614,"tf":1.4285714285714284}}}}},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"6396782":{"ref":6396782,"tf":1.6979166666666665},"6413549":{"ref":6413549,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":26.674074074074074},"6414105":{"ref":6414105,"tf":22.00952380952381},"6414782":{"ref":6414782,"tf":21.68939393939394}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{"6414755":{"ref":6414755,"tf":1.0204081632653061}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},"r":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6296451":{"ref":6296451,"tf":23.37037037037037},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413327":{"ref":6413327,"tf":2.1},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.037383177570093455},"6414530":{"ref":6414530,"tf":0.015},"6414558":{"ref":6414558,"tf":0.0410958904109589},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":1.0204081632653061}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.04938271604938271}},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"v":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}},"docs":{}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"l":{"docs":{"6413240":{"ref":6413240,"tf":0.028037383177570093},"6413889":{"ref":6413889,"tf":0.015873015873015872}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.02373887240356083}},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6414152":{"ref":6414152,"tf":0.015625}}}}}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}}}}},"e":{"docs":{"6412334":{"ref":6412334,"tf":2}},"f":{"docs":{},"o":{"docs":{},"x":{"4":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}},"docs":{"318630":{"ref":318630,"tf":0.02},"4272538":{"ref":4272538,"tf":1.6712121212121211},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6410184":{"ref":6410184,"tf":28.353741496598637},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413732":{"ref":6413732,"tf":33.33333333333333},"6413778":{"ref":6413778,"tf":20.009345794392523},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414376":{"ref":6414376,"tf":33.36036036036035}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}},"y":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"m":{"docs":{},"l":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"x":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":2.009478672985782},"6403728":{"ref":6403728,"tf":0.023076923076923078},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"5351143":{"ref":5351143,"tf":0.07317073170731707},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411778":{"ref":6411778,"tf":0.8014888337468983},"6413036":{"ref":6413036,"tf":0.0625},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.042682926829268296}}}}},"n":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414558":{"ref":6414558,"tf":0.0136986301369863}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.08333333333333333}}}}}}},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":2.011627906976744},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6413732":{"ref":6413732,"tf":2.0163934426229506}}}}}},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.028985507246376812},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"3047391":{"ref":3047391,"tf":0.0375},"4272538":{"ref":4272538,"tf":0.00909090909090909},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413327":{"ref":6413327,"tf":0.025},"6414530":{"ref":6414530,"tf":0.005}}}}}},"r":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":20.024390243902438},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411778":{"ref":6411778,"tf":21.554590570719604},"6412913":{"ref":6412913,"tf":51.705627705627705},"6413240":{"ref":6413240,"tf":2.046728971962617},"6413889":{"ref":6413889,"tf":33.34920634920635},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513}},"u":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}},"a":{"docs":{},"t":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414438":{"ref":6414438,"tf":14.296583850931675}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412913":{"ref":6412913,"tf":0.03896103896103896}}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":1.4285714285714284}}}},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"i":{"docs":{},"=":{"0":{"docs":{},";":{"docs":{},"i":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}},"docs":{}}},"j":{"docs":{},"=":{"0":{"docs":{},";":{"docs":{},"j":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"j":{"docs":{},"+":{"docs":{},"+":{"docs":{},")":{"docs":{},"i":{"docs":{},"f":{"docs":{},"(":{"docs":{},"a":{"docs":{},"[":{"docs":{},"j":{"docs":{},"]":{"docs":{},"=":{"docs":{},"=":{"docs":{},"e":{"docs":{},")":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"c":{"docs":{},"u":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6413440":{"ref":6413440,"tf":0.02666666666666667}}}},"o":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6413327":{"ref":6413327,"tf":0.025},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"r":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}},"n":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"=":{"docs":{},"\"":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"f":{"docs":{},"b":{"docs":{},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401946":{"ref":6401946,"tf":0.031746031746031744},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":1.255813953488372},"6412589":{"ref":6412589,"tf":0.0759493670886076},"6412607":{"ref":6412607,"tf":2.0714285714285716},"6412632":{"ref":6412632,"tf":0.01744186046511628},"6412863":{"ref":6412863,"tf":1.467032967032967},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413356":{"ref":6413356,"tf":3.415300546448087},"6413440":{"ref":6413440,"tf":21.25},"6413512":{"ref":6413512,"tf":0.06060606060606061},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6413778":{"ref":6413778,"tf":0.037383177570093455},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.01904761904761905},"6414123":{"ref":6414123,"tf":1.4346689895470381},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"(":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412151":{"ref":6412151,"tf":0.023255813953488372}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"u":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0375}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}}},"%":{"2":{"0":{"docs":{},"i":{"docs":{},"p":{"docs":{},"r":{"docs":{},"l":{"5":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}}},"docs":{}},"docs":{}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"n":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"z":{"docs":{},"z":{"docs":{},"i":{"docs":{"6414755":{"ref":6414755,"tf":1.0408163265306123}}}}},"l":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"6414558":{"ref":6414558,"tf":23.91628614916286}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6396782":{"ref":6396782,"tf":0.0625}}}}}}}}}},"e":{"docs":{},"w":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.01744186046511628}},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}},"e":{"docs":{},"d":{"docs":{"6412753":{"ref":6412753,"tf":0.046511627906976744},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.03260869565217391}}}},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}},"s":{"docs":{},"h":{"docs":{"6395651":{"ref":6395651,"tf":20.76923076923077}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"b":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":2}},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"(":{"docs":{},"{":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}},"s":{"docs":{"6401946":{"ref":6401946,"tf":0.031746031746031744}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"g":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6410184":{"ref":6410184,"tf":0.05442176870748299},"6412151":{"ref":6412151,"tf":0.046511627906976744},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.011869436201780416},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413951":{"ref":6413951,"tf":0.13793103448275862},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}},";":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"3":{"8":{"1":{"0":{"0":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}}}}}}},"b":{"docs":{},"r":{"docs":{"6413889":{"ref":6413889,"tf":0.031746031746031744}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.06}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},".":{"docs":{},"+":{"3":{"9":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}},"e":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6398787":{"ref":6398787,"tf":3.333333333333333},"6413512":{"ref":6413512,"tf":53.333333333333336},"6413720":{"ref":6413720,"tf":25}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"t":{"docs":{},"d":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":26.267441860465116}}}}}}},"o":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"6404725":{"ref":6404725,"tf":27.5},"6411964":{"ref":6411964,"tf":0.04918032786885246},"6413244":{"ref":6413244,"tf":26.456349206349206},"6413541":{"ref":6413541,"tf":52.517857142857146},"6413908":{"ref":6413908,"tf":22.532258064516128},"6414093":{"ref":6414093,"tf":35.83333333333333},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"4":{"6":{"docs":{},".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"z":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3827055":{"ref":3827055,"tf":0.014705882352941176}},"/":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}}}},"e":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.08333333333333333}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.00909090909090909},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413944":{"ref":6413944,"tf":0.015384615384615385}},"n":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.016129032258064516}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6411574":{"ref":6411574,"tf":1.4285714285714284},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"e":{"docs":{},"n":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"y":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}},"=":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"+":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}}}}},"w":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{"6414438":{"ref":6414438,"tf":0.016304347826086956}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}},"b":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"i":{"docs":{},"d":{"docs":{"6409972":{"ref":6409972,"tf":21.532738095238095}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"4":{"6":{"docs":{},".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{},",":{"1":{"1":{"docs":{},".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6414240":{"ref":6414240,"tf":0.024691358024691357}},"s":{"docs":{},"[":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414093":{"ref":6414093,"tf":0.029411764705882353}}}}}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"m":{"docs":{},"a":{"docs":{},"p":{"2":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"h":{"1":{"docs":{},">":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"2":{"docs":{},">":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}},"v":{"docs":{},"e":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"n":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412428":{"ref":6412428,"tf":0.03488372093023256},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"e":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":12.777777777777777}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}},"s":{"docs":{},"h":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077},"6414152":{"ref":6414152,"tf":0.03125}},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":18.364583333333332}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"c":{"docs":{},"k":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"5":{"docs":{"5306132":{"ref":5306132,"tf":20.004484304932735},"5351143":{"ref":5351143,"tf":21.428571428571427},"5549729":{"ref":5549729,"tf":25},"6412566":{"ref":6412566,"tf":26.267441860465116}}},"docs":{"78932":{"ref":78932,"tf":33.36274509803921},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6364675":{"ref":6364675,"tf":20.010135135135137},"6405964":{"ref":6405964,"tf":22.61111111111111},"6411169":{"ref":6411169,"tf":25},"6411282":{"ref":6411282,"tf":50},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":25},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.008902077151335312},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":25},"6414473":{"ref":6414473,"tf":20},"6414614":{"ref":6414614,"tf":20},"6414827":{"ref":6414827,"tf":33.33333333333333}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":20.010135135135137}},"'":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}},"t":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"i":{"docs":{},"g":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"?":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"h":{"docs":{},"l":{"docs":{},"=":{"docs":{},"e":{"docs":{},"n":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}},"w":{"3":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"4":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"t":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"docs":{}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"u":{"docs":{},"i":{"docs":{},"/":{"1":{"docs":{},".":{"8":{"docs":{},".":{"1":{"3":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"@":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414614":{"ref":6414614,"tf":0.012345679012345678}},"e":{"docs":{},"f":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414060":{"ref":6414060,"tf":2.0416666666666665}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"7":{"6":{"3":{"2":{"2":{"8":{"docs":{},"/":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"3":{"0":{"2":{"4":{"9":{"5":{"4":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"4":{"9":{"0":{"4":{"3":{"8":{"docs":{},"/":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"6":{"2":{"7":{"7":{"9":{"9":{"1":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"8":{"8":{"docs":{},"/":{"docs":{},"e":{"docs":{},"c":{"docs":{},"c":{"docs":{},"t":{"docs":{},"x":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}},"t":{"docs":{},"z":{"docs":{},"q":{"docs":{},"y":{"docs":{},"x":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"b":{"docs":{},"f":{"docs":{},"h":{"docs":{},"t":{"7":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"h":{"docs":{},"h":{"docs":{},"j":{"docs":{},"m":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"f":{"6":{"docs":{},"c":{"9":{"2":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"k":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"a":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"?":{"docs":{},"v":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"n":{"docs":{},"j":{"4":{"docs":{},"m":{"docs":{},"z":{"9":{"docs":{},"g":{"9":{"docs":{},"g":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"j":{"docs":{},"a":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"2":{"0":{"0":{"9":{"docs":{},"/":{"0":{"6":{"docs":{},"/":{"1":{"7":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"/":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}},"j":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"y":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"k":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"a":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"/":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"#":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"e":{"docs":{},"/":{"2":{"1":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{},"b":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"7":{"2":{"4":{"9":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}},"#":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"'":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}},"l":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.046511627906976744},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}},"l":{"docs":{},"o":{"docs":{},",":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":1.7066666666666666},"4529460":{"ref":4529460,"tf":2.028436018957346},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414093":{"ref":6414093,"tf":0.014705882352941176}},":":{"docs":{},"'":{"1":{"0":{"0":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}},"docs":{}},"docs":{}},"docs":{}}},"=":{"docs":{},"\"":{"5":{"3":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}},"5":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}},"docs":{}},"9":{"0":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"c":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"y":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"e":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"g":{"docs":{},"h":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"l":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"t":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"u":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":1.0108695652173914}}}},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"m":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6411964":{"ref":6411964,"tf":2.5163934426229506},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":1.6876456876456876},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"d":{"docs":{},"f":{"5":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}},"docs":{}}},"y":{"docs":{},"p":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":1.6726013847675567}}}}}}}},"i":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414105":{"ref":6414105,"tf":20},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"1":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"2":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"3":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"4":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"5":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"_":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"3":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"docs":{}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"3":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"docs":{}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}},"m":{"docs":{},"g":{"1":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"docs":{}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"'":{"docs":{},"+":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"+":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}},"b":{"docs":{},"t":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"b":{"docs":{},"b":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"1":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"3":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"docs":{}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"2":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"docs":{}}}}}}},"c":{"docs":{},"m":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"1":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"docs":{}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"docs":{}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}},"f":{"docs":{},"b":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"1":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"2":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"docs":{}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"%":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"#":{"docs":{},"{":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"%":{"docs":{},"=":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"$":{"docs":{},"{":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"1":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"docs":{}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"“":{"docs":{},"m":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414473":{"ref":6414473,"tf":0.1}},"l":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"s":{"docs":{},"?":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"s":{"docs":{},"d":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}}},"t":{"docs":{},"'":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414827":{"ref":6414827,"tf":0.03125}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"e":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411194":{"ref":6411194,"tf":0.18181818181818182},"6412993":{"ref":6412993,"tf":0.008902077151335312}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}},"m":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.04054054054054054},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6396782":{"ref":6396782,"tf":0.03125},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"a":{"docs":{},"g":{"docs":{"318630":{"ref":318630,"tf":1.6866666666666665},"814910":{"ref":814910,"tf":3.3749999999999996},"4529460":{"ref":4529460,"tf":0.052132701421800945},"6412119":{"ref":6412119,"tf":2.041176470588235},"6413541":{"ref":6413541,"tf":2.517857142857143},"6413744":{"ref":6413744,"tf":26.474725274725273},"6414060":{"ref":6414060,"tf":2.0833333333333335},"6414530":{"ref":6414530,"tf":0.03}},"e":{"docs":{},"'":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},":":{"docs":{},"'":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"(":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},")":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"5":{"0":{"0":{"0":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}},"/":{"docs":{},"e":{"docs":{},"l":{"docs":{"6414473":{"ref":6414473,"tf":1.25}}}}},"´":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}}},"/":{"docs":{},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"2":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"docs":{}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}},"g":{"docs":{"318630":{"ref":318630,"tf":0.04},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414060":{"ref":6414060,"tf":0.041666666666666664}}},"h":{"docs":{},"o":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}}}},"n":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413327":{"ref":6413327,"tf":22.025},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414614":{"ref":6414614,"tf":1.4285714285714284}},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"2":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":1.2647058823529411},"4185821":{"ref":4185821,"tf":0.0125},"4460205":{"ref":4460205,"tf":0.15384615384615385},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6414614":{"ref":6414614,"tf":0.006172839506172839}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"l":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":1.4430641821946169},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"e":{"docs":{},"x":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413416":{"ref":6413416,"tf":1.6969696969696968}},"a":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"b":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"r":{"docs":{},"m":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6413889":{"ref":6413889,"tf":0.047619047619047616}}}}},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"_":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412720":{"ref":6412720,"tf":1.7254901960784312},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"v":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"n":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}},"e":{"docs":{},"t":{"docs":{"6413018":{"ref":6413018,"tf":21.29},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":28.57142857142857}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"g":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}},"w":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.023696682464454975}},";":{"docs":{},"/":{"docs":{},"/":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.02843601895734597}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":1.0054347826086956}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0410958904109589},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412334":{"ref":6412334,"tf":0.008333333333333333}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413720":{"ref":6413720,"tf":26.666666666666668}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"e":{"5":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"6":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"7":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"8":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6414558":{"ref":6414558,"tf":1.6940639269406392}},"+":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}},"9":{"docs":{"6414578":{"ref":6414578,"tf":2.5294117647058822}}},"docs":{"4272538":{"ref":4272538,"tf":1.6893939393939392},"6174688":{"ref":6174688,"tf":0.011111111111111112}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571},"6414093":{"ref":6414093,"tf":2.5},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},"s":{"docs":{},"u":{"docs":{"6174688":{"ref":6174688,"tf":1.261111111111111},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414438":{"ref":6414438,"tf":1.0108695652173914},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}},"'":{"docs":{},"v":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414152":{"ref":6414152,"tf":0.0078125},"6414613":{"ref":6414613,"tf":0.01818181818181818}}},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.023255813953488372},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.03636363636363636}}},"l":{"docs":{},"l":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},".":{"docs":{"5306132":{"ref":5306132,"tf":1.0044843049327354}}},"=":{"0":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}},"1":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6414530":{"ref":6414530,"tf":0.005}},";":{"docs":{},"i":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"=":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}},"f":{"docs":{},"(":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}},"!":{"docs":{},"b":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412863":{"ref":6412863,"tf":0.038461538461538464}}}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716}}}}}},":":{"docs":{},"%":{"docs":{},"m":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"o":{"docs":{"4460205":{"ref":4460205,"tf":25}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"l":{"5":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}},"a":{"docs":{},"d":{"docs":{"4460205":{"ref":4460205,"tf":25.076923076923077},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"/":{"docs":{},"i":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"4460205":{"ref":4460205,"tf":2}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"j":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"3047391":{"ref":3047391,"tf":20},"6364675":{"ref":6364675,"tf":20},"6412428":{"ref":6412428,"tf":18.68992248062015},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414107":{"ref":6414107,"tf":34.44444444444444}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":34.61274509803921},"318630":{"ref":318630,"tf":18.35333333333333},"814910":{"ref":814910,"tf":14.285714285714285},"3047391":{"ref":3047391,"tf":20},"3802824":{"ref":3802824,"tf":51.264925373134325},"3827055":{"ref":3827055,"tf":17.94607843137255},"4047072":{"ref":4047072,"tf":100},"4185821":{"ref":4185821,"tf":100.0125},"4272538":{"ref":4272538,"tf":51.67121212121212},"4460205":{"ref":4460205,"tf":27.076923076923077},"4508230":{"ref":4508230,"tf":20},"4529460":{"ref":4529460,"tf":25},"5306132":{"ref":5306132,"tf":21.004484304932735},"5351143":{"ref":5351143,"tf":20},"5549729":{"ref":5549729,"tf":25},"6174688":{"ref":6174688,"tf":25.011111111111113},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6364675":{"ref":6364675,"tf":21.431949806949806},"6395651":{"ref":6395651,"tf":20},"6396782":{"ref":6396782,"tf":20},"6397574":{"ref":6397574,"tf":25},"6398787":{"ref":6398787,"tf":103.41666666666666},"6401696":{"ref":6401696,"tf":110.03703703703704},"6401946":{"ref":6401946,"tf":33.33333333333333},"6403354":{"ref":6403354,"tf":26.666666666666668},"6403728":{"ref":6403728,"tf":51.42857142857143},"6404725":{"ref":6404725,"tf":25},"6405964":{"ref":6405964,"tf":20.037037037037038},"6406161":{"ref":6406161,"tf":25},"6409944":{"ref":6409944,"tf":25},"6409972":{"ref":6409972,"tf":20},"6410184":{"ref":6410184,"tf":25},"6410224":{"ref":6410224,"tf":33.33333333333333},"6411169":{"ref":6411169,"tf":26.428571428571427},"6411194":{"ref":6411194,"tf":33.33333333333333},"6411282":{"ref":6411282,"tf":50},"6411574":{"ref":6411574,"tf":102.88345864661655},"6411636":{"ref":6411636,"tf":28.333333333333332},"6411637":{"ref":6411637,"tf":35.83333333333333},"6411778":{"ref":6411778,"tf":20.785359801488834},"6411964":{"ref":6411964,"tf":25},"6412119":{"ref":6412119,"tf":50},"6412151":{"ref":6412151,"tf":50},"6412259":{"ref":6412259,"tf":50},"6412334":{"ref":6412334,"tf":20},"6412428":{"ref":6412428,"tf":18.701550387596896},"6412566":{"ref":6412566,"tf":25},"6412589":{"ref":6412589,"tf":102.0126582278481},"6412607":{"ref":6412607,"tf":50},"6412632":{"ref":6412632,"tf":52},"6412720":{"ref":6412720,"tf":51.72549019607843},"6412753":{"ref":6412753,"tf":25},"6412863":{"ref":6412863,"tf":40},"6412913":{"ref":6412913,"tf":51.666666666666664},"6412993":{"ref":6412993,"tf":33.33333333333333},"6412997":{"ref":6412997,"tf":25.015873015873016},"6413018":{"ref":6413018,"tf":20},"6413036":{"ref":6413036,"tf":25},"6413183":{"ref":6413183,"tf":50},"6413240":{"ref":6413240,"tf":50},"6413244":{"ref":6413244,"tf":25},"6413265":{"ref":6413265,"tf":50},"6413327":{"ref":6413327,"tf":20},"6413356":{"ref":6413356,"tf":50},"6413416":{"ref":6413416,"tf":20.03030303030303},"6413440":{"ref":6413440,"tf":20},"6413444":{"ref":6413444,"tf":33.33333333333333},"6413512":{"ref":6413512,"tf":53.333333333333336},"6413523":{"ref":6413523,"tf":35.34042553191489},"6413541":{"ref":6413541,"tf":25},"6413549":{"ref":6413549,"tf":100},"6413720":{"ref":6413720,"tf":25},"6413732":{"ref":6413732,"tf":33.34972677595628},"6413744":{"ref":6413744,"tf":25.015384615384615},"6413778":{"ref":6413778,"tf":21.25},"6413881":{"ref":6413881,"tf":50},"6413889":{"ref":6413889,"tf":34.99999999999999},"6413908":{"ref":6413908,"tf":20},"6413944":{"ref":6413944,"tf":25},"6413951":{"ref":6413951,"tf":33.34482758620689},"6414060":{"ref":6414060,"tf":52.041666666666664},"6414093":{"ref":6414093,"tf":33.33333333333333},"6414105":{"ref":6414105,"tf":20},"6414107":{"ref":6414107,"tf":33.34761904761904},"6414123":{"ref":6414123,"tf":68.11353077816491},"6414152":{"ref":6414152,"tf":18.341145833333332},"6414240":{"ref":6414240,"tf":70.02469135802468},"6414253":{"ref":6414253,"tf":25},"6414376":{"ref":6414376,"tf":33.36036036036035},"6414438":{"ref":6414438,"tf":14.285714285714285},"6414473":{"ref":6414473,"tf":21.25},"6414530":{"ref":6414530,"tf":21.671666666666667},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":16.785714285714285},"6414613":{"ref":6414613,"tf":25},"6414614":{"ref":6414614,"tf":20.01851851851852},"6414755":{"ref":6414755,"tf":34.33333333333333},"6414782":{"ref":6414782,"tf":20},"6414827":{"ref":6414827,"tf":33.33333333333333}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},")":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414473":{"ref":6414473,"tf":0.05}}}}}},"\"":{"docs":{},">":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":1.4285714285714284}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}},".":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"'":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"814910":{"ref":814910,"tf":42.94047619047619},"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":27.00473933649289},"5549729":{"ref":5549729,"tf":28.404761904761905},"6174688":{"ref":6174688,"tf":26.25},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6396782":{"ref":6396782,"tf":20.0625},"6403728":{"ref":6403728,"tf":51.43626373626374},"6405964":{"ref":6405964,"tf":20.037037037037038},"6410184":{"ref":6410184,"tf":25},"6411194":{"ref":6411194,"tf":35.33333333333333},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412334":{"ref":6412334,"tf":42.00416666666667},"6412607":{"ref":6412607,"tf":50},"6412753":{"ref":6412753,"tf":25.023255813953487},"6412863":{"ref":6412863,"tf":21.428571428571427},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":52.03174603174603},"6413018":{"ref":6413018,"tf":20},"6413183":{"ref":6413183,"tf":50.00714285714286},"6413240":{"ref":6413240,"tf":52},"6413265":{"ref":6413265,"tf":50},"6413356":{"ref":6413356,"tf":50},"6413416":{"ref":6413416,"tf":20.03030303030303},"6413440":{"ref":6413440,"tf":21.25},"6413944":{"ref":6413944,"tf":25},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":35.36036036036035},"6414438":{"ref":6414438,"tf":29.57142857142857},"6414530":{"ref":6414530,"tf":41.67166666666667},"6414578":{"ref":6414578,"tf":14.285714285714285},"6414614":{"ref":6414614,"tf":21.440917107583772},"6414827":{"ref":6414827,"tf":33.33333333333333}}},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":3.333333333333333}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}},"t":{"docs":{},"d":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},",":{"docs":{},"{":{"docs":{},"'":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":15.29114906832298}},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"i":{"docs":{},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4047072":{"ref":4047072,"tf":3.333333333333333},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"o":{"docs":{},"n":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}},"docs":{"6403354":{"ref":6403354,"tf":26.682926829268293},"6414107":{"ref":6414107,"tf":34.458730158730155},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":25}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}}}}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"s":{"docs":{},"g":{"docs":{},".":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},"=":{"1":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.017804154302670624},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"=":{"docs":{},"\"":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"docs":{}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"1":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"2":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"docs":{}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"$":{"docs":{},"{":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},":":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"0":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"1":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"2":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"docs":{}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}}}}}}}}}}}}}}}}},"v":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}},"i":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":1.6736596736596736},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":1.6666666666666665}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},",":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"o":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"6411636":{"ref":6411636,"tf":25}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.017937219730941704},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6395651":{"ref":6395651,"tf":0.04},"6396782":{"ref":6396782,"tf":1.6666666666666665},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6405964":{"ref":6405964,"tf":0.07407407407407407},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":1.6666666666666665},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.029850746268656716},"4272538":{"ref":4272538,"tf":0.00909090909090909},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6409944":{"ref":6409944,"tf":1.4285714285714284},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414093":{"ref":6414093,"tf":0.04411764705882353},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"b":{"docs":{},"i":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.06521739130434782}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"l":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"t":{"4":{"docs":{},".":{"0":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"docs":{}}},"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"x":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413440":{"ref":6413440,"tf":1.25},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":20.785359801488834},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.7772952853598015}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"o":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":1},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"e":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}}}},"d":{"docs":{},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"j":{"docs":{"6397574":{"ref":6397574,"tf":25},"6401946":{"ref":6401946,"tf":33.33333333333333},"6409944":{"ref":6409944,"tf":25.014492753623188},"6411574":{"ref":6411574,"tf":0.05263157894736842}}}},"'":{"docs":{"6401946":{"ref":6401946,"tf":0.047619047619047616}}},"j":{"docs":{"6401946":{"ref":6401946,"tf":2.5}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6294393":{"ref":6294393,"tf":0.02097902097902098},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},"j":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"j":{"docs":{"6409944":{"ref":6409944,"tf":26.443064182194615}}}},"t":{"docs":{},"h":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"i":{"docs":{},"c":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"f":{"docs":{},"y":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"b":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.018957345971563982},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411169":{"ref":6411169,"tf":0.043478260869565216},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":2.625},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.05},"3802824":{"ref":3802824,"tf":0.04477611940298507},"4047072":{"ref":4047072,"tf":0.046511627906976744},"4185821":{"ref":4185821,"tf":0.0625},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6396782":{"ref":6396782,"tf":0.0625},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.031746031746031744},"6403354":{"ref":6403354,"tf":0.07317073170731707},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.06976744186046512},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414782":{"ref":6414782,"tf":0.022727272727272728}},">":{"docs":{},"i":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"318630":{"ref":318630,"tf":0.02},"814910":{"ref":814910,"tf":0.041666666666666664},"3802824":{"ref":3802824,"tf":0.029850746268656716},"3827055":{"ref":3827055,"tf":0.029411764705882353},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.0375},"4272538":{"ref":4272538,"tf":0.004545454545454545},"4460205":{"ref":4460205,"tf":0.07692307692307693},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":0.04},"6396782":{"ref":6396782,"tf":0.03125},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.028985507246376812},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.0125},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.05063291139240506},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413327":{"ref":6413327,"tf":0.075},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414376":{"ref":6414376,"tf":0.08108108108108109},"6414438":{"ref":6414438,"tf":0.016304347826086956},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.015},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":0.012345679012345678},"6414755":{"ref":6414755,"tf":0.02040816326530612},"6414782":{"ref":6414782,"tf":0.022727272727272728},"6414827":{"ref":6414827,"tf":0.03125}},"'":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6395651":{"ref":6395651,"tf":0.04},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414827":{"ref":6414827,"tf":0.03125}}},"v":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"d":{"docs":{"6413036":{"ref":6413036,"tf":0.0625}}}},"f":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414530":{"ref":6414530,"tf":0.005}}},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"'":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413951":{"ref":6413951,"tf":0.011494252873563218}}},"`":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}},"m":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413327":{"ref":6413327,"tf":0.025},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414827":{"ref":6414827,"tf":0.03125}}},"r":{"docs":{},"e":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}},"a":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"a":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"e":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6414473":{"ref":6414473,"tf":0.05}}}}}}}}},"i":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413327":{"ref":6413327,"tf":0.05},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"e":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},"n":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"e":{"docs":{},"e":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"a":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413440":{"ref":6413440,"tf":0.013333333333333334}},"n":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}}},"i":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414473":{"ref":6414473,"tf":0.05},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},"m":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}},"s":{"docs":{},"o":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}},"o":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"a":{"docs":{},"y":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}},"e":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"u":{"docs":{},"r":{"docs":{},"f":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}},"b":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"t":{"docs":{},"w":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"u":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}},"s":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"p":{"docs":{},".":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.03278688524590164}},">":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"b":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}}}}}},"i":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"+":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"docs":{},"(":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"^":{"docs":{},"(":{"docs":{},"[":{"docs":{},"_":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676}}}}}}}}}}}},"a":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414473":{"ref":6414473,"tf":0.05}}},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.03278688524590164}}}},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"o":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":0.017241379310344827}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"i":{"docs":{},"d":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6396782":{"ref":6396782,"tf":0.03125},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"318630":{"ref":318630,"tf":0.02},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413327":{"ref":6413327,"tf":0.025},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414253":{"ref":6414253,"tf":0.021739130434782608}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"'":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}},"n":{"docs":{},"c":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"i":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6411636":{"ref":6411636,"tf":0.017241379310344827}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}},"\"":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{},"+":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}},"e":{"docs":{},"d":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142}}}}},"o":{"docs":{},"w":{"docs":{"6411636":{"ref":6411636,"tf":0.05172413793103448},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"o":{"docs":{},"b":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"r":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"n":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}},"h":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"k":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414376":{"ref":6414376,"tf":0.02702702702702703}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"x":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"*":{"docs":{},"*":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"m":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}},"t":{"docs":{},"'":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}},"k":{"docs":{},"k":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}},"r":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857}},"e":{"docs":{},">":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414827":{"ref":6414827,"tf":0.03125}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.005}},"r":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"?":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"y":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}},"i":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414060":{"ref":6414060,"tf":0.041666666666666664}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"h":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}},"y":{"2":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414152":{"ref":6414152,"tf":0.0078125}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}},"[":{"7":{"docs":{},",":{"2":{"5":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},",":{"docs":{},",":{"7":{"docs":{},",":{"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}},"docs":{},"[":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"'":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"5306132":{"ref":5306132,"tf":0.013452914798206279},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.01744186046511628},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412428":{"ref":6412428,"tf":0.011627906976744186}},"s":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"i":{"docs":{},"x":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"o":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":1.25},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.03333333333333333},"6296451":{"ref":6296451,"tf":3.3456790123456788},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":3.333333333333333},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":2},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":0.0410958904109589},"6414614":{"ref":6414614,"tf":1.4409171075837741}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"e":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"6414782":{"ref":6414782,"tf":0.045454545454545456}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"p":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414782":{"ref":6414782,"tf":1.6666666666666665}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414755":{"ref":6414755,"tf":0.061224489795918366}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"a":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.25}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"t":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412589":{"ref":6412589,"tf":2}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413744":{"ref":6413744,"tf":25},"6414152":{"ref":6414152,"tf":0.015625}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"t":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":0.022222222222222223}}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":35.86507936507936},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6414253":{"ref":6414253,"tf":27}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}},"j":{"docs":{"6412259":{"ref":6412259,"tf":2}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}},"j":{"docs":{"6412259":{"ref":6412259,"tf":50},"6414253":{"ref":6414253,"tf":25}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"x":{"docs":{},"y":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.016129032258064516}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}},"u":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6413541":{"ref":6413541,"tf":2.5},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414827":{"ref":6414827,"tf":0.03125}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}},"n":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"s":{"docs":{},"h":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"l":{"docs":{},"l":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6414123":{"ref":6414123,"tf":0.012195121951219513}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}}}},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":1.6666666666666665},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}},"s":{"docs":{"3047391":{"ref":3047391,"tf":22},"4272538":{"ref":4272538,"tf":1.6712121212121211},"6403354":{"ref":6403354,"tf":26.682926829268293},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"e":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.004545454545454545}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6411636":{"ref":6411636,"tf":25}}}}}}}},"g":{"docs":{},"e":{"docs":{"3802824":{"ref":3802824,"tf":1.294776119402985},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.02364864864864865},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411282":{"ref":6411282,"tf":2},"6412428":{"ref":6412428,"tf":2.0697674418604652},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6412997":{"ref":6412997,"tf":0.09523809523809523},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":1.4428571428571426},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413416":{"ref":6413416,"tf":1.6969696969696968},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.08771929824561403},"6413732":{"ref":6413732,"tf":2.0163934426229506},"6414060":{"ref":6414060,"tf":2.0416666666666665},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414782":{"ref":6414782,"tf":0.045454545454545456}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414152":{"ref":6414152,"tf":0.0078125}}}},"b":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"u":{"docs":{},"y":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"(":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"x":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413440":{"ref":6413440,"tf":21.25},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"t":{"docs":{"6413036":{"ref":6413036,"tf":25.0625}}}},"d":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}},"t":{"docs":{},"h":{"docs":{"6413327":{"ref":6413327,"tf":20}},"(":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"n":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}},"h":{"docs":{},"p":{"5":{"docs":{"6410224":{"ref":6410224,"tf":33.33333333333333}}},"docs":{"4508230":{"ref":4508230,"tf":20},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411964":{"ref":6411964,"tf":25},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413881":{"ref":6413881,"tf":50},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.015},"6414614":{"ref":6414614,"tf":20},"6414782":{"ref":6414782,"tf":20}},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4508230":{"ref":4508230,"tf":2}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}},"n":{"docs":{},"e":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"{":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}},"[":{"0":{"docs":{"6414152":{"ref":6414152,"tf":0.015625}}},"docs":{}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0234375}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}},"j":{"docs":{"6414152":{"ref":6414152,"tf":18.341145833333332}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"y":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}},"o":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"u":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}},"g":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411194":{"ref":6411194,"tf":35.378787878787875},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412997":{"ref":6412997,"tf":25.015873015873016},"6414438":{"ref":6414438,"tf":14.285714285714285}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414530":{"ref":6414530,"tf":0.01},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"s":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":26.261111111111113},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6413720":{"ref":6413720,"tf":1.6814814814814814},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414530":{"ref":6414530,"tf":0.005},"6414782":{"ref":6414782,"tf":0.045454545454545456}},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{},"q":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"4185821":{"ref":4185821,"tf":1.1236111111111111},"6395651":{"ref":6395651,"tf":0.8092307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414473":{"ref":6414473,"tf":0.05}},"e":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1236111111111111},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"3802824":{"ref":3802824,"tf":1.2649253731343284},"6412913":{"ref":6412913,"tf":0.012987012987012988}},"u":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414613":{"ref":6414613,"tf":0.01818181818181818}}},"p":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},"r":{"docs":{"6413744":{"ref":6413744,"tf":0.03076923076923077},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}},"l":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}},"o":{"docs":{},"m":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"r":{"docs":{},"m":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}},"i":{"docs":{},"o":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}},"c":{"docs":{"318630":{"ref":318630,"tf":0.02}},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}}}}},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414152":{"ref":6414152,"tf":16.666666666666664}}}}}}},"n":{"docs":{},"g":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"s":{"docs":{},"d":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}},"x":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}},"r":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414558":{"ref":6414558,"tf":0.0273972602739726}},"a":{"docs":{},"l":{"docs":{"318630":{"ref":318630,"tf":1.6866666666666665},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"l":{"docs":{},"i":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411574":{"ref":6411574,"tf":0.05263157894736842},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414827":{"ref":6414827,"tf":0.03125}}},"y":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413444":{"ref":6413444,"tf":0.012048192771084338}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}},"e":{"docs":{},"r":{"docs":{"6412753":{"ref":6412753,"tf":3.333333333333333}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412913":{"ref":6412913,"tf":1.6796536796536794},"6412993":{"ref":6412993,"tf":0.008902077151335312},"6413018":{"ref":6413018,"tf":1.2633333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414105":{"ref":6414105,"tf":2},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414240":{"ref":6414240,"tf":0.037037037037037035},"6414530":{"ref":6414530,"tf":0.015},"6414827":{"ref":6414827,"tf":2.5}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"n":{"docs":{},"r":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}},"y":{"docs":{},"p":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}},"e":{"docs":{},"x":{"docs":{"3047391":{"ref":3047391,"tf":22.0375},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6413444":{"ref":6413444,"tf":35.857429718875494}},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}},"p":{"docs":{},"(":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"v":{"docs":{"318630":{"ref":318630,"tf":0.02},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":1.6726013847675567},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412607":{"ref":6412607,"tf":0.03571428571428571}}}},"n":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.028985507246376812}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.041666666666666664}}}}}}}},"g":{"docs":{},"n":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"l":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{},">":{"docs":{},"j":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},"e":{"docs":{},"v":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"?":{"docs":{},"v":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"n":{"docs":{},"j":{"4":{"docs":{},"m":{"docs":{},"z":{"9":{"docs":{},"g":{"9":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"j":{"docs":{},"a":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"2":{"0":{"0":{"9":{"docs":{},"/":{"0":{"6":{"docs":{},"/":{"1":{"7":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"8":{"8":{"docs":{},"/":{"docs":{},"t":{"docs":{},"z":{"docs":{},"q":{"docs":{},"y":{"docs":{},"x":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"g":{"docs":{},"h":{"docs":{},"h":{"docs":{},"j":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"f":{"6":{"docs":{},"c":{"9":{"2":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"y":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6411964":{"ref":6411964,"tf":2.5},"6414755":{"ref":6414755,"tf":0.04081632653061224}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}},"a":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},".":{"docs":{},"f":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412259":{"ref":6412259,"tf":0.11538461538461539}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"3827055":{"ref":3827055,"tf":0.029411764705882353},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"6411574":{"ref":6411574,"tf":1.4285714285714284}},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"docs":{}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}},"q":{"docs":{"6397574":{"ref":6397574,"tf":2},"6404725":{"ref":6404725,"tf":0.0273972602739726}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.01}}}}},"i":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"6414107":{"ref":6414107,"tf":1.1111111111111112}}}}},"l":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}},"a":{"docs":{},"c":{"docs":{"6411169":{"ref":6411169,"tf":27.857142857142858},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"$":{"docs":{},".":{"docs":{},"j":{"docs":{},"q":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}},"o":{"docs":{"4508230":{"ref":4508230,"tf":20}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":18.771317829457363}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":1.2794117647058822},"4460205":{"ref":4460205,"tf":0.07692307692307693},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.01744186046511628}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"[":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":20},"6413951":{"ref":6413951,"tf":33.33333333333333}}},"b":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":20.76923076923077},"6413951":{"ref":6413951,"tf":33.34482758620689}}}},"n":{"docs":{},"g":{"docs":{"6413881":{"ref":6413881,"tf":0.044444444444444446}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}}},"t":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.02702702702702703}}},"i":{"docs":{},"n":{"docs":{},"g":{"3":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}},"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.016891891891891893}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"docs":{}}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"w":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.028037383177570093}}}},"g":{"docs":{},"b":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"s":{"docs":{},"s":{"docs":{"6412753":{"ref":6412753,"tf":28.37984496124031}}}},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}},"b":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6414376":{"ref":6414376,"tf":2.027027027027027},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.01},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"m":{"docs":{"6364675":{"ref":6364675,"tf":1.4319498069498067},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},"n":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4047072":{"ref":4047072,"tf":0.023255813953488372},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414376":{"ref":6414376,"tf":2.054054054054054},"6414827":{"ref":6414827,"tf":0.03125}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.03333333333333333},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413951":{"ref":6413951,"tf":0.022988505747126436}}},"s":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.3088235294117647},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6409972":{"ref":6409972,"tf":1.4910714285714284},"6410224":{"ref":6410224,"tf":2},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":1.4714285714285713},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414253":{"ref":6414253,"tf":2.0217391304347827},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":1.447089947089947}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}},"f":{"docs":{},"=":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6413444":{"ref":6413444,"tf":2.5120481927710845},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"e":{"docs":{},"r":{"docs":{"6413240":{"ref":6413240,"tf":2}},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":2}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"i":{"docs":{},"c":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411964":{"ref":6411964,"tf":2.5491803278688523},"6412428":{"ref":6412428,"tf":16.67829457364341},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"t":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403728":{"ref":6403728,"tf":1.4285714285714284},"6409972":{"ref":6409972,"tf":1.4285714285714284},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412589":{"ref":6412589,"tf":2},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":1.4285714285714284},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"4047072":{"ref":4047072,"tf":3.333333333333333}},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":1.4428571428571426},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":35.34042553191489}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"{":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413244":{"ref":6413244,"tf":0.013888888888888888}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6397574":{"ref":6397574,"tf":2.0454545454545454},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.02857142857142857}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414827":{"ref":6414827,"tf":2.5}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}},"u":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.04285714285714286}}}},"y":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"l":{"docs":{},"l":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"6396782":{"ref":6396782,"tf":1.6979166666666665},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":0.01639344262295082}},"=":{"docs":{},"\"":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414530":{"ref":6414530,"tf":0.005}},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"1":{"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"5":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},";":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}},"'":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},":":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},";":{"docs":{},"'":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"z":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":1.2686915887850467}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.03278688524590164}},">":{"docs":{},"a":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{},"_":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"docs":{}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"b":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"3047391":{"ref":3047391,"tf":2.0125},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6405964":{"ref":6405964,"tf":2.537037037037037},"6412993":{"ref":6412993,"tf":35.02077151335311},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413444":{"ref":6413444,"tf":0.024096385542168676}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.011869436201780416}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"o":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"5351143":{"ref":5351143,"tf":1.4773519163763065}}}},"e":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6413889":{"ref":6413889,"tf":1.6666666666666665}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412913":{"ref":6412913,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"c":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606},"6413416":{"ref":6413416,"tf":20.03030303030303}}}}},"f":{"docs":{},"f":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"e":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":2.607142857142857}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413908":{"ref":6413908,"tf":2.5}},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"f":{"docs":{},"i":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"e":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}},"u":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"z":{"docs":{},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.018957345971563982}},"=":{"docs":{},"\"":{"1":{"8":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}},"7":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}},"docs":{}}},":":{"2":{"2":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"d":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":0.02},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414107":{"ref":6414107,"tf":1.1111111111111112}}}}},"g":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}},"t":{"docs":{},"e":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.03278688524590164},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413889":{"ref":6413889,"tf":0.031746031746031744},"6414152":{"ref":6414152,"tf":0.015625}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412913":{"ref":6412913,"tf":0.03896103896103896}}}}}},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412863":{"ref":6412863,"tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"1":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6414530":{"ref":6414530,"tf":0.005}}}},"v":{"docs":{"6174688":{"ref":6174688,"tf":1.261111111111111},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"o":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414105":{"ref":6414105,"tf":0.01904761904761905},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"a":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}},"s":{"docs":{},"}":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6396782":{"ref":6396782,"tf":0.03125},"6410184":{"ref":6410184,"tf":0.006802721088435374}},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"n":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":1.6666666666666665}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"6397574":{"ref":6397574,"tf":25.068181818181817},"6409944":{"ref":6409944,"tf":25}}}}}}}}},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}}},"r":{"docs":{},"t":{"docs":{"6413416":{"ref":6413416,"tf":1.6969696969696968},"6414473":{"ref":6414473,"tf":0.05}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.012345679012345678}}}},"a":{"docs":{},"l":{"docs":{"6174688":{"ref":6174688,"tf":1.25},"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}},"n":{"docs":{},"d":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"o":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"r":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414152":{"ref":6414152,"tf":0.0078125}}}}}}},"b":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412913":{"ref":6412913,"tf":1.7056277056277054},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"i":{"docs":{},"d":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"r":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}},":":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412720":{"ref":6412720,"tf":1.7254901960784312},"6413523":{"ref":6413523,"tf":0.014184397163120567}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":2.0058823529411764},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413244":{"ref":6413244,"tf":1.456349206349206},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":2.5},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"_":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"y":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"2":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"r":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6398787":{"ref":6398787,"tf":3.4166666666666665}}}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986}}}},"a":{"2":{"5":{"6":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077}}},"docs":{}},"docs":{}},"docs":{},"r":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414782":{"ref":6414782,"tf":23.333333333333332}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":1.1111111111111112},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"p":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"f":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"4460205":{"ref":4460205,"tf":0.07692307692307693},"6413908":{"ref":6413908,"tf":0.03225806451612903}},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"318630":{"ref":318630,"tf":1.6666666666666665}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6413944":{"ref":6413944,"tf":0.015384615384615385}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":33.33333333333333},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413036":{"ref":6413036,"tf":0.0625},"6413523":{"ref":6413523,"tf":0.028368794326241134},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":3.3684210526315788},"6414123":{"ref":6414123,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6411282":{"ref":6411282,"tf":2.148148148148148}}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":18.333333333333332}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":20.006756756756758}}}},"m":{"docs":{"6413549":{"ref":6413549,"tf":0.03508771929824561}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.05263157894736842}}}}}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411636":{"ref":6411636,"tf":3.333333333333333},"6414578":{"ref":6414578,"tf":2.5294117647058822}}}}}},"o":{"docs":{},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"r":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414060":{"ref":6414060,"tf":0.041666666666666664}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"?":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{},"=":{"1":{"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"x":{"docs":{},"f":{"docs":{},"b":{"docs":{},"m":{"docs":{},"l":{"docs":{},"=":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"w":{"docs":{},"b":{"docs":{},"z":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"l":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"docs":{}}}}}}}}}}}}},"m":{"docs":{"6409972":{"ref":6409972,"tf":0.041666666666666664}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.025}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}},"v":{"docs":{},"r":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411964":{"ref":6411964,"tf":0.03278688524590164}}}}}}},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413951":{"ref":6413951,"tf":0.011494252873563218}},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6414827":{"ref":6414827,"tf":0.03125}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"b":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"[":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}},"docs":{}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.04}},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"d":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},",":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304}}},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.0379746835443038}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}},"n":{"docs":{},"k":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414530":{"ref":6414530,"tf":0.005}}},"g":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"r":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"e":{"docs":{},"r":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}},"e":{"docs":{},"'":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}},"b":{"docs":{},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}},"m":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"s":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}},"t":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"'":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413327":{"ref":6413327,"tf":0.025}}}},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413889":{"ref":6413889,"tf":0.015873015873015872}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6401946":{"ref":6401946,"tf":0.015873015873015872}}},"(":{"0":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":1.1253968253968254},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414614":{"ref":6414614,"tf":0.024691358024691357},"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.031746031746031744},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.013636363636363636}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"l":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414755":{"ref":6414755,"tf":1.0204081632653061}}}}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"i":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.09302325581395349}},".":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}}},"{":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}}}}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"_":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"b":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6403728":{"ref":6403728,"tf":1.4516483516483514},"6410224":{"ref":6410224,"tf":2.019607843137255},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414530":{"ref":6414530,"tf":0.005}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}},"k":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6405964":{"ref":6405964,"tf":0.07407407407407407},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6414152":{"ref":6414152,"tf":0.0078125}}}},"g":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}},"l":{"docs":{},"k":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"s":{"docs":{},"k":{"docs":{"6404725":{"ref":6404725,"tf":2.5273972602739727},"6411778":{"ref":6411778,"tf":0.06451612903225806}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414782":{"ref":6414782,"tf":21.666666666666668}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}}}}}}},"o":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413183":{"ref":6413183,"tf":0.02142857142857143},"6413240":{"ref":6413240,"tf":2.0093457943925235}}}},"r":{"docs":{"6413265":{"ref":6413265,"tf":1.4285714285714284}},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.047619047619047616},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412632":{"ref":6412632,"tf":0.023255813953488372},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":0.03125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6414123":{"ref":6414123,"tf":1.4346689895470381}}}}}},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":1.0044843049327354}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}},"d":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.07017543859649122}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.024390243902439025}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412151":{"ref":6412151,"tf":0.046511627906976744},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414105":{"ref":6414105,"tf":0.0380952380952381},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"t":{"docs":{},"n":{"docs":{},")":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}},"e":{"docs":{"6411194":{"ref":6411194,"tf":2}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"1":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"2":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"docs":{"3827055":{"ref":3827055,"tf":18.004901960784313},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6364675":{"ref":6364675,"tf":0.016891891891891893},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413732":{"ref":6413732,"tf":0.04918032786885246},"6414240":{"ref":6414240,"tf":0.037037037037037035}}},"y":{"docs":{},"(":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413732":{"ref":6413732,"tf":0.03278688524590164}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414530":{"ref":6414530,"tf":0.005}}}},"x":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0875},"5351143":{"ref":5351143,"tf":0.04878048780487805},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":0.0625},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414473":{"ref":6414473,"tf":21.3},"6414530":{"ref":6414530,"tf":0.01}},"/":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},";":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":20}}}}}},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"u":{"docs":{},"r":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6413018":{"ref":6413018,"tf":1.25}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"2":{"docs":{},"d":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"docs":{}}}}}}},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"6411282":{"ref":6411282,"tf":2.037037037037037}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"e":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"5351143":{"ref":5351143,"tf":0.04878048780487805},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":15.296583850931675},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}},"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413523":{"ref":6413523,"tf":0.028368794326241134}}}}},"\"":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"'":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"t":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6414530":{"ref":6414530,"tf":0.015}},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.016304347826086956}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"f":{"docs":{},"f":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6294393":{"ref":6294393,"tf":0.013986013986013986},"6411574":{"ref":6411574,"tf":1.4285714285714284}}}}},"m":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412993":{"ref":6412993,"tf":0.005934718100890208}},"=":{"docs":{},"$":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"{":{"docs":{},"{":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"+":{"docs":{},"=":{"1":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}}}}}}}}}},"[":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"2":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"3":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"docs":{}}},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.016666666666666666},"6413265":{"ref":6413265,"tf":1.4285714285714284}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}},"v":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"docs":{},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514}},"u":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0375},"4529460":{"ref":4529460,"tf":0.009478672985781991},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410224":{"ref":6410224,"tf":2.019607843137255},"6411636":{"ref":6411636,"tf":0.06896551724137931},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413881":{"ref":6413881,"tf":1.6666666666666665},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414253":{"ref":6414253,"tf":2.0217391304347827},"6414438":{"ref":6414438,"tf":0.02717391304347826},"6414530":{"ref":6414530,"tf":0.015},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},"=":{"docs":{},"\"":{"1":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"u":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}},"2":{"3":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"1":{"2":{"3":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"4":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"7":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"docs":{}},"4":{"5":{"6":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"4":{"5":{"6":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"g":{"docs":{},"o":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"e":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"d":{"docs":{},"s":{"docs":{},"l":{"2":{"docs":{},"+":{"docs":{},"/":{"docs":{},"c":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"b":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"c":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"f":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"u":{"docs":{},"s":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"v":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"“":{"docs":{},"v":{"docs":{"6414253":{"ref":6414253,"tf":0.13043478260869565}}}},"'":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"i":{"docs":{},"d":{"docs":{},"+":{"docs":{},"\"":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"[":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"1":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{},"j":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}},"[":{"1":{"0":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"r":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"1":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"2":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"3":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}},"2":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"3":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"4":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"5":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"6":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"\\":{"docs":{},"r":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"7":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"\\":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"8":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"w":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"9":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"docs":{}}}},"i":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6411169":{"ref":6411169,"tf":0.06521739130434782},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413240":{"ref":6413240,"tf":2.0186915887850465},"6413444":{"ref":6413444,"tf":0.012048192771084338}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"318630":{"ref":318630,"tf":0.04},"4272538":{"ref":4272538,"tf":0.04090909090909091},"4529460":{"ref":4529460,"tf":0.037914691943127965},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.016891891891891893},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6410184":{"ref":6410184,"tf":0.027210884353741496},"6410224":{"ref":6410224,"tf":0.058823529411764705},"6411169":{"ref":6411169,"tf":0.10869565217391304},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.04583333333333333},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.03278688524590164},"6413440":{"ref":6413440,"tf":0.04},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414060":{"ref":6414060,"tf":0.125},"6414093":{"ref":6414093,"tf":0.07352941176470588},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414152":{"ref":6414152,"tf":0.046875},"6414240":{"ref":6414240,"tf":0.037037037037037035},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413440":{"ref":6413440,"tf":21.263333333333332},"6414240":{"ref":6414240,"tf":3.3456790123456788}}}}},"o":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"%":{"2":{"0":{"docs":{},"d":{"docs":{},"=":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"z":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"'":{"docs":{},"+":{"docs":{},"'":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},",":{"docs":{},"l":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"=":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{}}},"docs":{}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}},"u":{"docs":{"6411778":{"ref":6411778,"tf":0.7692307692307693}}}},"i":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.014925373134328358},"3827055":{"ref":3827055,"tf":0.014705882352941176},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"f":{"docs":{},"i":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"i":{"docs":{},"a":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4460205":{"ref":4460205,"tf":2.076923076923077},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6414473":{"ref":6414473,"tf":0.05}}}}},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6413416":{"ref":6413416,"tf":20.03030303030303}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}},"(":{"0":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}},"w":{"3":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"c":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"t":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"docs":{},"a":{"docs":{},"y":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4460205":{"ref":4460205,"tf":0.07692307692307693},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":1.2766666666666666},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414827":{"ref":6414827,"tf":0.03125}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6403728":{"ref":6403728,"tf":0.023076923076923078},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.046511627906976744},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414755":{"ref":6414755,"tf":0.04081632653061224},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"'":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":1.6814814814814814}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}}},"e":{"docs":{},"v":{"docs":{"6414530":{"ref":6414530,"tf":0.005},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"y":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"i":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":2.5},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":2.5}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"a":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":1.25}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"318630":{"ref":318630,"tf":0.02},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4185821":{"ref":4185821,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.01818181818181818},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.013513513513513514},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6410184":{"ref":6410184,"tf":3.346938775510204},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411636":{"ref":6411636,"tf":0.034482758620689655},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":2},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.029069767441860465},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.031746031746031744},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413744":{"ref":6413744,"tf":0.03076923076923077},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414558":{"ref":6414558,"tf":0.0273972602739726},"6414578":{"ref":6414578,"tf":0.08823529411764706},"6414613":{"ref":6414613,"tf":0.05454545454545454}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"t":{"docs":{},"h":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.01639344262295082}}}},"l":{"docs":{},"d":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413732":{"ref":6413732,"tf":2}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"u":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"e":{"docs":{},"b":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6396782":{"ref":6396782,"tf":0.03125},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411282":{"ref":6411282,"tf":2},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":25},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":16.666666666666664},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":2},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":16.666666666666664}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"4460205":{"ref":4460205,"tf":0.07692307692307693},"6413244":{"ref":6413244,"tf":1.4424603174603172},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414152":{"ref":6414152,"tf":0.0078125},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"e":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"'":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412428":{"ref":6412428,"tf":0.023255813953488372}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6413944":{"ref":6413944,"tf":2.0153846153846153}},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"g":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077},"6413744":{"ref":6413744,"tf":25.015384615384615}}}},"k":{"docs":{},"i":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"3802824":{"ref":3802824,"tf":1.2798507462686568},"4460205":{"ref":4460205,"tf":27}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4460205":{"ref":4460205,"tf":0.07692307692307693}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413908":{"ref":6413908,"tf":22.5}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}},"'":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413512":{"ref":6413512,"tf":3.333333333333333}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"n":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}},"l":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":1.7066666666666666},"4529460":{"ref":4529460,"tf":2.028436018957346},"6403728":{"ref":6403728,"tf":1.5054945054945053},"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"1":{"1":{"0":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"4":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}},"5":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}},"docs":{}},"docs":{}},"4":{"5":{"0":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"docs":{}},"docs":{}},"docs":{}}},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},":":{"docs":{},"#":{"docs":{},"e":{"docs":{},"e":{"docs":{},"e":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6414240":{"ref":6414240,"tf":0.024691358024691357}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"x":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}},"f":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"w":{"docs":{},"w":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414614":{"ref":6414614,"tf":0.043209876543209874}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"i":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}}}}}},"v":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"m":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"v":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.020833333333333332},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":4.0476190476190474},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414614":{"ref":6414614,"tf":20}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"l":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413327":{"ref":6413327,"tf":2}}}}}}}},"t":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4460205":{"ref":4460205,"tf":0.07692307692307693},"5306132":{"ref":5306132,"tf":0.02242152466367713},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414152":{"ref":6414152,"tf":0.015625}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"1":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"2":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"docs":{}},"docs":{}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"e":{"docs":{},"r":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"\\":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.07407407407407407}}}}}}},"o":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413744":{"ref":6413744,"tf":0.015384615384615385}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"t":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"e":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413036":{"ref":6413036,"tf":0.0625}}}}}}},"n":{"docs":{},"e":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"e":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}},"[":{"0":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}},"docs":{}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}}}},"docs":{}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}},"w":{"docs":{},"n":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413881":{"ref":6413881,"tf":0.022222222222222223}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414558":{"ref":6414558,"tf":1.7077625570776254},"6414782":{"ref":6414782,"tf":0.06818181818181818}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414152":{"ref":6414152,"tf":0.015625}}}},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413732":{"ref":6413732,"tf":0.01639344262295082}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}},"(":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"f":{"docs":{},"b":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"s":{"docs":{},"g":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"g":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}}}}}},"docs":{}}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"y":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}},"m":{"docs":{"78932":{"ref":78932,"tf":33.33333333333333}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{"6396782":{"ref":6396782,"tf":21.729166666666668},"6413327":{"ref":6413327,"tf":22.025}},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413327":{"ref":6413327,"tf":20}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6409972":{"ref":6409972,"tf":1.4494047619047616},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.016129032258064516}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414613":{"ref":6414613,"tf":25.01818181818182}},"e":{"docs":{},"'":{"docs":{"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}}}}}},"t":{"docs":{},"a":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.025},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5351143":{"ref":5351143,"tf":0.0975609756097561},"6174688":{"ref":6174688,"tf":0.05555555555555555},"6403354":{"ref":6403354,"tf":0.032520325203252036},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413744":{"ref":6413744,"tf":1.4747252747252746},"6413778":{"ref":6413778,"tf":1.25},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.02},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},":":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"6410224":{"ref":6410224,"tf":2.019607843137255}}}}}},"e":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}},"y":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}},"e":{"docs":{},"f":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}}}},"i":{"docs":{},"n":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":0.015873015873015872}},"i":{"docs":{},"t":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412566":{"ref":6412566,"tf":1.25}}}}}},"c":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1486111111111112},"4460205":{"ref":4460205,"tf":2},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413036":{"ref":6413036,"tf":0.0625}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411574":{"ref":6411574,"tf":2.883458646616541},"6411964":{"ref":6411964,"tf":25.0327868852459}}}}}},"i":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6413951":{"ref":6413951,"tf":0.034482758620689655}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414253":{"ref":6414253,"tf":2.0217391304347827}}}}}}},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"k":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412863":{"ref":6412863,"tf":0.038461538461538464},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413416":{"ref":6413416,"tf":1.6969696969696968}},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.0125}}},".":{"docs":{},"j":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":20},"6413744":{"ref":6413744,"tf":0.015384615384615385}},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412428":{"ref":6412428,"tf":0.011627906976744186}}},"d":{"docs":{},"e":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}},"m":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":2.025},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6414253":{"ref":6414253,"tf":2.0217391304347827}}}}}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":22.025}},"e":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"\"":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.016666666666666666},"6414473":{"ref":6414473,"tf":1.25}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.020833333333333332}},"e":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"'":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"%":{"2":{"0":{"docs":{},"'":{"docs":{},"+":{"docs":{},"d":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":1.4285714285714284}},"e":{"docs":{},"r":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"c":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4185821":{"ref":4185821,"tf":1.1111111111111112},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413416":{"ref":6413416,"tf":1.6969696969696968},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},".":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"2":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}},"3":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}},"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6404725":{"ref":6404725,"tf":2.541095890410959},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}},":":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.03587443946188341},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.020833333333333332},"6412863":{"ref":6412863,"tf":41.4478021978022},"6414123":{"ref":6414123,"tf":34.77409988385598},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6414613":{"ref":6414613,"tf":0.03636363636363636}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"t":{"docs":{},"c":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414530":{"ref":6414530,"tf":0.01},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}},"x":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}},"l":{"docs":{},"i":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}},"r":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413018":{"ref":6413018,"tf":21.29},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":28.57142857142857}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":1.4285714285714284}}}}}}}},"a":{"docs":{},"n":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}},"i":{"docs":{},"n":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":27.022727272727273},"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"t":{"docs":{"6406161":{"ref":6406161,"tf":20}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6411964":{"ref":6411964,"tf":2.5327868852459017},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":2}}}},"n":{"docs":{},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6404725":{"ref":6404725,"tf":25},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6413778":{"ref":6413778,"tf":0.009345794392523364}}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"r":{"docs":{},"a":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":1.2633333333333334}},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}},"j":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664},"6409972":{"ref":6409972,"tf":20}},"s":{"4":{"docs":{"6409972":{"ref":6409972,"tf":21.44940476190476}}},"docs":{}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"s":{"docs":{},"s":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"=":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6294393":{"ref":6294393,"tf":1.6876456876456876},"6414473":{"ref":6414473,"tf":0.05}}}}}}},"m":{"docs":{},">":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413018":{"ref":6413018,"tf":0.02666666666666667}}}}}}},"i":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6413444":{"ref":6413444,"tf":2.5240963855421685}}}}},"b":{"docs":{},"e":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":25.083333333333332}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}},"d":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413881":{"ref":6413881,"tf":0.08888888888888889},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}},"i":{"docs":{},"r":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":0.0078125}}}},"r":{"docs":{},"i":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"d":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}}},"g":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":1.25}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413018":{"ref":6413018,"tf":1.25}},"o":{"docs":{},"r":{"docs":{"6414473":{"ref":6414473,"tf":20.05}}}}}}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"v":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.004484304932735426},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":1.2616279069767442},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":0.0625},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413549":{"ref":6413549,"tf":0.03508771929824561},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":0.02040816326530612},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6414152":{"ref":6414152,"tf":0.0078125},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"y":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"5306132":{"ref":5306132,"tf":0.04035874439461883},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.02127659574468085}},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0224215246636772}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0224215246636772}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"p":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"a":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}}}},"l":{"docs":{},"i":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"v":{"docs":{},"e":{"docs":{"6414473":{"ref":6414473,"tf":1.25},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"n":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.04477611940298507},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414152":{"ref":6414152,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414782":{"ref":6414782,"tf":0.045454545454545456}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414782":{"ref":6414782,"tf":1.6666666666666665}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}},"e":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},">":{"docs":{},"<":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"r":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"k":{"docs":{},"e":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"s":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413183":{"ref":6413183,"tf":1.4642857142857142},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414613":{"ref":6414613,"tf":1.4831168831168828}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"\"":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}},"b":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":33.33333333333333},"6414438":{"ref":6414438,"tf":1}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"g":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":27.04739336492891}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}},".":{"docs":{},"'":{"docs":{},"+":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.05232558139534884},"6413327":{"ref":6413327,"tf":0.025},"6414093":{"ref":6414093,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":1.4347442680776012}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}},"l":{"docs":{"5351143":{"ref":5351143,"tf":1.4773519163763065},"5549729":{"ref":5549729,"tf":0.07142857142857142}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"5351143":{"ref":5351143,"tf":20.024390243902438}}}}}}}}}},"k":{"docs":{"6411282":{"ref":6411282,"tf":2.037037037037037}}}},"g":{"docs":{"6412428":{"ref":6412428,"tf":0.023255813953488372},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414755":{"ref":6414755,"tf":1.0408163265306123}}},"n":{"docs":{"6412428":{"ref":6412428,"tf":18.701550387596896},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"k":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":1.4439560439560437},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"u":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},",":{"docs":{},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}},"v":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"a":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":1.4285714285714284},"6413541":{"ref":6413541,"tf":0.03571428571428571},"6413732":{"ref":6413732,"tf":2.0163934426229506},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414093":{"ref":6414093,"tf":2.5441176470588234},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"_":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"docs":{}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"(":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":1.4285714285714284},"6414613":{"ref":6414613,"tf":0.03636363636363636}}}},"n":{"docs":{"6413541":{"ref":6413541,"tf":0.05357142857142857}},"g":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"e":{"docs":{},"r":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"t":{"docs":{},"o":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}},"w":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413951":{"ref":6413951,"tf":0.022988505747126436}},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6412997":{"ref":6412997,"tf":0.09523809523809523},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.02962962962962963},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413183":{"ref":6413183,"tf":0.02142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414253":{"ref":6414253,"tf":0.043478260869565216}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}},"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.01}}}}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"b":{"docs":{},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.024691358024691357},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413265":{"ref":6413265,"tf":0.03773584905660377},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414614":{"ref":6414614,"tf":0.037037037037037035}}}}}},"m":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.055944055944055944},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.018518518518518517}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},"+":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.02373887240356083},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.06349206349206349}}}}}},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.06153846153846154},"6413265":{"ref":6413265,"tf":0.03773584905660377},"6414530":{"ref":6414530,"tf":0.07}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6414123":{"ref":6414123,"tf":0.012195121951219513}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.01744186046511628}}}}}}}}}}}}},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6414530":{"ref":6414530,"tf":0.01}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"$":{"docs":{},"{":{"docs":{},"$":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"}":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"{":{"docs":{},"{":{"docs":{},"/":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"}":{"docs":{},"}":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}},"e":{"1":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}},"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"8":{"2":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"o":{"docs":{},"s":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.022727272727272728}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.05442176870748299}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}},"h":{"2":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"y":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412997":{"ref":6412997,"tf":0.06349206349206349}}}}}}}}}},"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6294393":{"ref":6294393,"tf":0.055944055944055944},"6412993":{"ref":6412993,"tf":0.01483679525222552}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.11764705882352941},"6410224":{"ref":6410224,"tf":0.0392156862745098},"6413183":{"ref":6413183,"tf":0.08571428571428572},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414253":{"ref":6414253,"tf":0.13043478260869565}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"u":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}},"e":{"docs":{},"r":{"docs":{"6414755":{"ref":6414755,"tf":0.04081632653061224}}},"n":{"docs":{},"c":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"=":{"1":{"0":{"6":{"7":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":1.0179372197309418}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411574":{"ref":6411574,"tf":0.05263157894736842}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}},"r":{"docs":{},"g":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":2},"6413549":{"ref":6413549,"tf":0.03508771929824561}}}}}},"c":{"docs":{},"k":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"e":{"docs":{},"t":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}},"'":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"d":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}},"v":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412589":{"ref":6412589,"tf":2.0253164556962027},"6413440":{"ref":6413440,"tf":0.10666666666666667},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"f":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6411636":{"ref":6411636,"tf":0.05172413793103448},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413183":{"ref":6413183,"tf":0.007142857142857143}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.034482758620689655}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6403354":{"ref":6403354,"tf":1.6991869918699185},"6411778":{"ref":6411778,"tf":0.008064516129032258}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}}},"m":{"docs":{"6410224":{"ref":6410224,"tf":0.0392156862745098},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"a":{"docs":{},"x":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"=":{"docs":{},"\"":{"1":{"2":{"8":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"docs":{}},"docs":{}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":1.6666666666666665},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"r":{"docs":{},"k":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"u":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}},"e":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":26.484126984126984}},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}},"k":{"docs":{},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414473":{"ref":6414473,"tf":0.05},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"t":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{"6414755":{"ref":6414755,"tf":34.35374149659864}},"'":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}},"y":{"docs":{},"b":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"i":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"l":{"docs":{},"i":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412720":{"ref":6412720,"tf":51.72549019607843},"6413244":{"ref":6413244,"tf":26.456349206349206},"6413541":{"ref":6413541,"tf":27.553571428571427},"6414093":{"ref":6414093,"tf":35.86274509803921}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.029411764705882353}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.029411764705882353}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}},"c":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"4508230":{"ref":4508230,"tf":2.032258064516129},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6409944":{"ref":6409944,"tf":1.4285714285714284}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"i":{"docs":{"6364675":{"ref":6364675,"tf":1.4353281853281852},"6411637":{"ref":6411637,"tf":0.017857142857142856}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":33.33333333333333},"6413183":{"ref":6413183,"tf":1.4285714285714284}}}}}}},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.022988505747126436}},"=":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},".":{"docs":{},"r":{"docs":{},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6413720":{"ref":6413720,"tf":1.6962962962962962}}}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{"6294393":{"ref":6294393,"tf":21.68065268065268},"6411194":{"ref":6411194,"tf":2.090909090909091}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"6403354":{"ref":6403354,"tf":1.6747967479674795}},"p":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":1.4357142857142855},"6414107":{"ref":6414107,"tf":1.1111111111111112},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412632":{"ref":6412632,"tf":2.005813953488372},"6414152":{"ref":6414152,"tf":0.0078125}}}}},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}},"l":{"docs":{"6409972":{"ref":6409972,"tf":1.4910714285714284},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413951":{"ref":6413951,"tf":2.0114942528735633}}},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"u":{"docs":{},"l":{"docs":{"6401946":{"ref":6401946,"tf":2.5317460317460316}},"e":{"docs":{},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6395651":{"ref":6395651,"tf":0.04},"6411574":{"ref":6411574,"tf":0.05263157894736842},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412993":{"ref":6412993,"tf":1.6666666666666665},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"u":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}},"l":{"docs":{},"a":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"n":{"docs":{},"e":{"docs":{},"y":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"v":{"docs":{},"e":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{"5549729":{"ref":5549729,"tf":28.404761904761905}}}}}},"i":{"docs":{},"n":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608},"6414530":{"ref":6414530,"tf":0.005}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}},"docs":{}}}}}}}}},"u":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":1.6666666666666665}}}}}},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"s":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}},"d":{"docs":{},"n":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"d":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"s":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}},":":{"docs":{},"i":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"1":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},":":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"q":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":33.35294117647059}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6410224":{"ref":6410224,"tf":0.0784313725490196}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.024193548387096774},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}},"c":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"=":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\\":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"e":{"docs":{},":":{"docs":{},"(":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"'":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{"6412119":{"ref":6412119,"tf":2.011764705882353},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"'":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"=":{"1":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"u":{"docs":{},"p":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"t":{"docs":{},"o":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":1.294776119402985},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6396782":{"ref":6396782,"tf":0.03125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304}}},"r":{"docs":{},"a":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414613":{"ref":6414613,"tf":1.4285714285714284}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}},"i":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.024390243902439025},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6412589":{"ref":6412589,"tf":2},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":2.0114942528735633},"6414107":{"ref":6414107,"tf":2.2365079365079366},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"]":{"docs":{},",":{"docs":{},"[":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}}}}}}}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{"6406161":{"ref":6406161,"tf":20}}}}}}},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6403728":{"ref":6403728,"tf":0.007692307692307693}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.022727272727272728}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413244":{"ref":6413244,"tf":1.4424603174603172}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414558":{"ref":6414558,"tf":0.0136986301369863}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6412589":{"ref":6412589,"tf":0.0379746835443038}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"6397574":{"ref":6397574,"tf":2.022727272727273},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"a":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":1.6666666666666665}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411637":{"ref":6411637,"tf":0.05357142857142857},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412334":{"ref":6412334,"tf":2.0166666666666666}},"a":{"docs":{},"l":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}},"l":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"6414105":{"ref":6414105,"tf":0.01904761904761905}}},"k":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"3802824":{"ref":3802824,"tf":1.2649253731343284},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":23.37037037037037}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":2.541095890410959},"6413951":{"ref":6413951,"tf":2.0229885057471266}}}},"t":{"docs":{},"s":{"docs":{},"k":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},",":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"s":{"docs":{"78932":{"ref":78932,"tf":1.25},"814910":{"ref":814910,"tf":0.041666666666666664},"3047391":{"ref":3047391,"tf":2},"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.013452914798206279},"5351143":{"ref":5351143,"tf":1.4529616724738674},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":1.6184615384615386},"6396782":{"ref":6396782,"tf":1.7604166666666665},"6397574":{"ref":6397574,"tf":0.06818181818181818},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6403728":{"ref":6403728,"tf":1.4516483516483514},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.023255813953488372},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.01744186046511628},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412863":{"ref":6412863,"tf":1.4285714285714284},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6413944":{"ref":6413944,"tf":2.0153846153846153},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414060":{"ref":6414060,"tf":2.0416666666666665},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414530":{"ref":6414530,"tf":1.6716666666666664},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":1.4285714285714284}},"e":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"4508230":{"ref":4508230,"tf":2.032258064516129},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412428":{"ref":6412428,"tf":0.03488372093023256},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.028037383177570093},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413889":{"ref":6413889,"tf":35.01587301587301},"6414105":{"ref":6414105,"tf":0.05714285714285714},"6414558":{"ref":6414558,"tf":0.0547945205479452}},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"'":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},".":{"docs":{"5306132":{"ref":5306132,"tf":1}}},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.026905829596412557},"6413881":{"ref":6413881,"tf":0.044444444444444446}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6412259":{"ref":6412259,"tf":2},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414105":{"ref":6414105,"tf":2},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"o":{"docs":{"4508230":{"ref":4508230,"tf":22.032258064516128}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"i":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":17.960784313725487}}},"q":{"docs":{},"u":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.005934718100890208}},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.005}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},":":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"i":{"docs":{"814910":{"ref":814910,"tf":14.32738095238095},"6412334":{"ref":6412334,"tf":20.0125}},".":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}},"d":{"docs":{"6413549":{"ref":6413549,"tf":3.350877192982456}}}},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}},"i":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}},"l":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}},"s":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"_":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676}}},"_":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"docs":{}},"docs":{}},"2":{"5":{"0":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"_":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"x":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"y":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"m":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":20},"4272538":{"ref":4272538,"tf":51.666666666666664},"6405964":{"ref":6405964,"tf":22.61111111111111},"6410184":{"ref":6410184,"tf":25.006802721088434},"6413778":{"ref":6413778,"tf":21.25},"6413908":{"ref":6413908,"tf":0.03225806451612903}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}},"c":{"docs":{},"=":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"w":{"3":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"2":{"0":{"0":{"1":{"docs":{},"/":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"6413908":{"ref":6413908,"tf":0.06451612903225806}},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":22.532258064516128}}}}}}}}}}}}},":":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"b":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}}}}},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726}}}}}}}}}},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":1.2593457943925233}},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"6413778":{"ref":6413778,"tf":20.009345794392523}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},",":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"3":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}},"4":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}},"docs":{}}}}}}},"y":{"2":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"docs":{"6414438":{"ref":6414438,"tf":1.0108695652173914}},"o":{"docs":{},"u":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.03260869565217391}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}},"z":{"0":{"docs":{"6413444":{"ref":6413444,"tf":0.0963855421686747}}},"docs":{"6413416":{"ref":6413416,"tf":1.6969696969696968}},"]":{"docs":{},"{":{"2":{"docs":{},",":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{},"+":{"docs":{},"(":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"[":{"docs":{},",":{"docs":{},"]":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"|":{"docs":{},"$":{"docs":{},")":{"docs":{},")":{"docs":{},"+":{"docs":{},"$":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"?":{"docs":{},"[":{"docs":{},",":{"docs":{},"]":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"|":{"docs":{},"$":{"docs":{},")":{"docs":{},")":{"docs":{},"+":{"docs":{},"$":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{},"l":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"y":{"docs":{},"n":{"docs":{},"b":{"docs":{},"b":{"docs":{},"p":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"?":{"docs":{},"u":{"docs":{},"=":{"docs":{},"'":{"docs":{},"+":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"l":{"docs":{},".":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},")":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"t":{"docs":{},"=":{"docs":{},"'":{"docs":{},"+":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"%":{"2":{"0":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"length":6247},"corpusTokens":["0","0'","0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0....\"px\"$('#international').live(\"click\",funct","code>$_post[\"data1\"]$_post[\"data2\"]<a","code><input","code><tr>(tablewidth","code>).blur(function(length){.blur.length00
:10px[\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"][\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]aabcajax2.phpclass=\"cell\"class=\"content\"class=\"title\"deploytooldocument.referrerdojo.require('folder.file2');
domain/login.htmldomain/statisticsfs.prototype.myfunc","code>image_name.extension
.indexaindexbjavascriptjquery('#textbox').val();jquerylength","code>lengthmailclassmatlab","code>nanon","code>parseint()ratingcountresources/js/dojo1.6/dojo/dojo.js
resources/js/folder/file2.js
resources/js/pages/file1.js
response.sendredirectshouldoverrideurlloadingsmartphon","code>textboxthisundefined
\"var","code>x.lengthx123.com/123.htmlx123.com/setting.htmlx123.com/setting.html
mi","disconnect","disconnects.herecssextra","em>in","em>javascript.keydownmultilin","em>notshouldtabtemporarilyupdat","h2>html:javascript:johnsd","id","id=\"1","id=\"2","id=\"3","id=\"4","id=\"5","id=\"aaa\"> </td>","id=\"aboutbutton\">","id=\"add","id=\"america","id=\"asia","id=\"assigned_list\">","id=\"available_list\">","id=\"bbb\"> </td>","id=\"brandsbutton\">","id=\"btnget","id=\"button","id=\"careersbutton\">","id=\"cmdsubmitpick","id=\"contactbuttonmenu\">","id=\"context_browser\">","id=\"context_networktype\">","id=\"data__correct","id=\"draggable3","id=\"droppable3","id=\"europ","id=\"fb","id=\"fillsubject","id=\"filt","id=\"filterid'+thi","id=\"filteridal","id=\"filters\"><\\/div>').insertbefore('.filterthi","id=\"formelem1","id=\"formelem2","id=\"fulltxt\">","id=\"head1","id=\"homebutton\">","id=\"img1","id=\"inputbox","id=\"intern","id=\"leavecod","id=\"loginview1","id=\"map_canva","id=\"message\">","id=\"mybook2\">","id=\"nam","id=\"name_first","id=\"name_last","id=\"newdataset","id=\"newsbutton\">","id=\"party\">","id=\"ratings\">","id=\"registerbutton","id=\"searchbox","id=\"shopnowbutton\">","id=\"span_title_'+result_no+'\">'+title+'</span>","id=\"storesbutton\">","id=\"targetfileslist","id=\"tbllottopick\">","id=\"txt1stnum","id=\"txt2ndnum","id=\"txt3rdnum","id=<%=\"node_#{care_point.id","id='<%=dom_id(care_point","id='action'>txt1","id='appmenu'></div>","id='phonescreen'></div>","id='rating${ratingid}'><input","id='reason'>","id=“mylist\">","idea","ideafind","javascript)?keydown keypress al","li>ar","li>how","li>maximum","li>mi","li>minimum","li>mor","li>novnc","li>quirksmod","li>when","lib","librari","lighbox","lightbox","lightbox.\"+user=bob","p>\"0","p>(in","p>**note:just","p>\"test@test.com","p>$(.content).css","p>^([_a","p>whi","p>(+) addrating.scala","p>and but","p>dojo1.6 edit escap","p>example fiddle: from i","p>javascript","p>nb: ratings.html","p>ratingspage.scala","p>solution to update: update what","p>a","p>abov","p>also","p>although","p>am","p>and","p>andani","p>anybodi","p>assum","p>b","p>basic","p>below","p>best","p>btw","p>but","p>button","p>can","p>cheer","p>cheersdid","p>do","p>doe","p>don't","p>due","p>edit","p>edit:ex","p>exampl","p>fieldselect","p>follow","p>for","p>friend","p>function","p>ha","p>hello","p>henc","p>here","p>here'","p>hi","p>how","p>html","p>i","p>i'd","p>i'm","p>i'v","p>if","p>im","p>in","p>it","p>it'","p>it`","p>javascript","p>jqueryjust","p>kklemm","p>let'","p>like","p>mi","p>need","p>new","p>non","p>now","p>obvious","p>oh","p>ok","p>on","p>or","p>p.","p>p.spleas","p>previous","p>quick","p>right","p>say","p>scenario","p>see","p>sent","p>so","p>solut","p>surf","p>take","p>thank","p>thanks!thanks.thanksthe","p>then","p>thi","p>thoughts?three","p>through","p>tri","p>use","p>user=bob","p>we","p>what","p>when","p>where","p>wherea","p>which","p>with","p>without","p>work","p>would","p>you","p>}x123.com/123.html$('#galleri","pre>$('#international').click(funct","pre>$('.myfilter').focus(funct","pre>$('.row').append(\"<tr><td>it","pre>$('sampleelement').animate({'background","pre>$(document).readi","pre>$(document).ready(funct","pre>$(window).blur(funct","pre>$.ajax","pre><!doctyp","pre><?xml","pre><a","pre><body>","pre><div","pre><form","pre><head","pre><html>","pre><input","pre><p","pre><script","pre><script>","pre><select","pre><span","pre><styl","pre><t","pre><td","pre><tr","pre><tr>","pre>'undefin","pre>(funct","pre>[7,25","pre>[7,25,,7,40,formol","pre>[[object","pre>data.correct","pre>document.getelementbyid","pre>fil","pre>funct","pre>function(req","pre>if","pre>javascript","pre>now.core.on('disconnect","pre>packag","pre>seri","pre>seriesdefault","pre>smartphon","pre>sortabletodo","pre>value[0]='h","pre>var","pre>y2axi","pre>yaxi","prefer","prefix","prepend","present","press","pressed.. (booklet)
here detect","rel=\"nofollow\">encod","rel=\"nofollow\">ev","rel=\"nofollow\">googl","rel=\"nofollow\">herehttp://devthought.com/wp","rel=\"nofollow\">http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspxhttp://jsfiddle.net/f6c92/http://jsfiddle.net/ghhjm/http://jsfiddle.net/littlesandra88/tzqyx/http://recruitmentmalta.com/ptowers/http://regexpal.com/http://vidasp.net/tinydemos/dynam","rel=\"nofollow\">http://www.africatravelresource.com/http://www.realcapfinancial.comhttp://www.regulations.govhttp://www.youtube.com/watch?v=mynj4mz9g9ghttps://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.jsj","rel=\"nofollow\">jsfiddlenested_formnovnc","rel=\"nofollow\">novncphantomjssummarytestdriven.netthis.aft","strong>azertycharcodedocument.getelementbyid(\"loginview1_txt2ndnum\").valu","strong>folderkeycodekeydownkeypresskeyupkeyup.oncomplete)overover.pagespixelspreventdefault()sametbllottopick.findcontrolvisible=\"false\"
-
-
-
-
-
-
-
-
-
-
- This demo consists of 100 questions taken from stack overflow, they are listed on the left hand side. Clicking on the headings will display the full question on the right hand side of the page.
-
- Each question contains a heading, a list of tags and the body of the question. All three fields are in the index and you can search using any words you want.
-
-
-
-
-
-
-
-
diff --git a/public/browse/lib/lunr.js/example/index_builder.js b/public/browse/lib/lunr.js/example/index_builder.js
deleted file mode 100644
index a8f2ac4003..0000000000
--- a/public/browse/lib/lunr.js/example/index_builder.js
+++ /dev/null
@@ -1,34 +0,0 @@
-var lunr = require('./../lunr.js'),
- fs = require('fs')
-
-var idx = lunr(function () {
- this.ref('id')
-
- this.field('title', { boost: 10 })
- this.field('tags', { boost: 100 })
- this.field('body')
-})
-
-fs.readFile('./example/example_data.json', function (err, data) {
- if (err) throw err
-
- var raw = JSON.parse(data)
-
- var questions = raw.questions.map(function (q) {
- return {
- id: q.question_id,
- title: q.title,
- body: q.body,
- tags: q.tags.join(' ')
- }
- })
-
- questions.forEach(function (question) {
- idx.add(question)
- })
-
- fs.writeFile('./example/example_index.json', JSON.stringify(idx), function (err) {
- if (err) throw err
- console.log('done')
- })
-})
diff --git a/public/browse/lib/lunr.js/example/jquery.js b/public/browse/lib/lunr.js/example/jquery.js
deleted file mode 100644
index 2adda35a5b..0000000000
--- a/public/browse/lib/lunr.js/example/jquery.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v2.1.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m=a.document,n="2.1.0",o=function(a,b){return new o.fn.init(a,b)},p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};o.fn=o.prototype={jquery:n,constructor:o,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=o.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return o.each(this,a,b)},map:function(a){return this.pushStack(o.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},o.extend=o.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||o.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(o.isPlainObject(d)||(e=o.isArray(d)))?(e?(e=!1,f=c&&o.isArray(c)?c:[]):f=c&&o.isPlainObject(c)?c:{},g[b]=o.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},o.extend({expando:"jQuery"+(n+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===o.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isPlainObject:function(a){if("object"!==o.type(a)||a.nodeType||o.isWindow(a))return!1;try{if(a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(b){return!1}return!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=o.trim(a),a&&(1===a.indexOf("use strict")?(b=m.createElement("script"),b.text=a,m.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":k.call(a)},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?o.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),o.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||o.guid++,f):void 0},now:Date.now,support:l}),o.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=o.type(a);return"function"===c||o.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s="sizzle"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A="undefined",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",M=L.replace("w","w#"),N="\\["+K+"*("+L+")"+K+"*(?:([*^$|!~]?=)"+K+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+M+")|)|)"+K+"*\\]",O=":("+L+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+N.replace(3,8)+")*)|.*)\\)|)",P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(O),U=new RegExp("^"+M+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L.replace("w","w*")+")"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=/'|\\/g,ab=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),bb=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||"string"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&"object"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute("id"))?q=p.replace(_,"\\$&"):b.setAttribute("id",q),q="[id='"+q+"'] ",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(",")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute("id")}}}return xb(a.replace(P,"$1"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){k()},!1):g.attachEvent&&g.attachEvent("onunload",function(){k()})),c.attributes=gb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML=" ",a.querySelectorAll("[t^='']").length&&o.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||o.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll(":checked").length||o.push(":checked")}),gb(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&o.push("name"+K+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||o.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),o.push(",.*:")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,"div"),q.call(a,"[s!='']:x"),p.push("!=",O)}),o=o.length&&new RegExp(o.join("|")),p=p.length&&new RegExp(p.join("|")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,"='$1']"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||"").replace(ab,bb),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&w(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error("unsupported pseudo: "+a);return e[s]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,"$1"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||"")||db.error("unsupported lang: "+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[" "],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:" "===a[j-2].type?"*":""})).replace(P,"$1"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q="0",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG("*",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+" "];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split("").sort(z).join("")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement("div"))}),gb(function(a){return a.innerHTML=" ","#"===a.firstChild.getAttribute("href")})||hb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML=" ",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||hb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute("disabled")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);o.find=t,o.expr=t.selectors,o.expr[":"]=o.expr.pseudos,o.unique=t.uniqueSort,o.text=t.getText,o.isXMLDoc=t.isXML,o.contains=t.contains;var u=o.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(o.isFunction(b))return o.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return o.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return o.filter(b,a,c);b=o.filter(b,a)}return o.grep(a,function(a){return g.call(b,a)>=0!==c})}o.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?o.find.matchesSelector(d,a)?[d]:[]:o.find.matches(a,o.grep(b,function(a){return 1===a.nodeType}))},o.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(o(a).filter(function(){for(b=0;c>b;b++)if(o.contains(e[b],this))return!0}));for(b=0;c>b;b++)o.find(a,e[b],d);return d=this.pushStack(c>1?o.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?o(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=o.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof o?b[0]:b,o.merge(this,o.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:m,!0)),v.test(c[1])&&o.isPlainObject(b))for(c in b)o.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=m.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=m,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):o.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(o):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),o.makeArray(a,this))};A.prototype=o.fn,y=o(m);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};o.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&o(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),o.fn.extend({has:function(a){var b=o(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(o.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?o(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&o.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?o.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(o(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(o.unique(o.merge(this.get(),o(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}o.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return o.dir(a,"parentNode")},parentsUntil:function(a,b,c){return o.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return o.dir(a,"nextSibling")},prevAll:function(a){return o.dir(a,"previousSibling")},nextUntil:function(a,b,c){return o.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return o.dir(a,"previousSibling",c)},siblings:function(a){return o.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return o.sibling(a.firstChild)},contents:function(a){return a.contentDocument||o.merge([],a.childNodes)}},function(a,b){o.fn[a]=function(c,d){var e=o.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=o.filter(d,e)),this.length>1&&(C[a]||o.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return o.each(a.match(E)||[],function(a,c){b[c]=!0}),b}o.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):o.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){o.each(b,function(b,c){var d=o.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&o.each(arguments,function(a,b){var c;while((c=o.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?o.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},o.extend({Deferred:function(a){var b=[["resolve","done",o.Callbacks("once memory"),"resolved"],["reject","fail",o.Callbacks("once memory"),"rejected"],["notify","progress",o.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return o.Deferred(function(c){o.each(b,function(b,f){var g=o.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&o.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?o.extend(a,d):d}},e={};return d.pipe=d.then,o.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&o.isFunction(a.promise)?e:0,g=1===f?a:o.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&o.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;o.fn.ready=function(a){return o.ready.promise().done(a),this},o.extend({isReady:!1,readyWait:1,holdReady:function(a){a?o.readyWait++:o.ready(!0)},ready:function(a){(a===!0?--o.readyWait:o.isReady)||(o.isReady=!0,a!==!0&&--o.readyWait>0||(H.resolveWith(m,[o]),o.fn.trigger&&o(m).trigger("ready").off("ready")))}});function I(){m.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),o.ready()}o.ready.promise=function(b){return H||(H=o.Deferred(),"complete"===m.readyState?setTimeout(o.ready):(m.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},o.ready.promise();var J=o.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===o.type(c)){e=!0;for(h in c)o.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,o.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(o(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};o.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=o.expando+Math.random()}K.uid=1,K.accepts=o.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,o.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(o.isEmptyObject(f))o.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,o.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{o.isArray(b)?d=b.concat(b.map(o.camelCase)):(e=o.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!o.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?o.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}o.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),o.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;
-while(c--)d=g[c].name,0===d.indexOf("data-")&&(d=o.camelCase(d.slice(5)),P(f,d,e[d]));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=o.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),o.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||o.isArray(c)?d=L.access(a,b,o.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=o.queue(a,b),d=c.length,e=c.shift(),f=o._queueHooks(a,b),g=function(){o.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:o.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),o.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length ",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";l.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return m.activeElement}catch(a){}}o.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=o.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof o!==U&&o.event.triggered!==b.type?o.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],n=q=h[1],p=(h[2]||"").split(".").sort(),n&&(l=o.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=o.event.special[n]||{},k=o.extend({type:n,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&o.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(n,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),o.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],n=q=h[1],p=(h[2]||"").split(".").sort(),n){l=o.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||o.removeEvent(a,n,r.handle),delete i[n])}else for(n in i)o.event.remove(a,n+b[j],c,d,!0);o.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,p=[d||m],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||m,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+o.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[o.expando]?b:new o.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:o.makeArray(c,[b]),n=o.event.special[q]||{},e||!n.trigger||n.trigger.apply(d,c)!==!1)){if(!e&&!n.noBubble&&!o.isWindow(d)){for(i=n.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||m)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:n.bindType||q,l=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),l&&l.apply(g,c),l=k&&g[k],l&&l.apply&&o.acceptData(g)&&(b.result=l.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||n._default&&n._default.apply(p.pop(),c)!==!1||!o.acceptData(d)||k&&o.isFunction(d[q])&&!o.isWindow(d)&&(h=d[k],h&&(d[k]=null),o.event.triggered=q,d[q](),o.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=o.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=o.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=o.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((o.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?o(e,this).index(i)>=0:o.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""," "],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return o.nodeName(a,"table")&&o.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)o.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=o.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&o.nodeName(a,b)?o.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}o.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=o.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||o.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,n=a.length;n>m;m++)if(e=a[m],e||0===e)if("object"===o.type(e))o.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>$2>")+h[2],j=h[0];while(j--)f=f.lastChild;o.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===o.inArray(e,d))&&(i=o.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f,g,h=o.event.special,i=0;void 0!==(c=a[i]);i++){if(o.acceptData(c)&&(f=c[L.expando],f&&(b=L.cache[f]))){if(d=Object.keys(b.events||{}),d.length)for(g=0;void 0!==(e=d[g]);g++)h[e]?o.event.remove(c,e):o.removeEvent(c,e,b.handle);L.cache[f]&&delete L.cache[f]}delete M.cache[c[M.expando]]}}}),o.fn.extend({text:function(a){return J(this,function(a){return void 0===a?o.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?o.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||o.cleanData(ob(c)),c.parentNode&&(b&&o.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(o.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return o.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(o.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,o.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,n=k-1,p=a[0],q=o.isFunction(p);if(q||k>1&&"string"==typeof p&&!l.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(c=o.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=o.map(ob(c,"script"),kb),g=f.length;k>j;j++)h=c,j!==n&&(h=o.clone(h,!0,!0),g&&o.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,o.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&o.contains(i,h)&&(h.src?o._evalUrl&&o._evalUrl(h.src):o.globalEval(h.textContent.replace(hb,"")))}return this}}),o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){o.fn[a]=function(a){for(var c,d=[],e=o(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),o(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d=o(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:o.css(d[0],"display");return d.detach(),e}function tb(a){var b=m,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||o("")).appendTo(b.documentElement),b=qb[0].contentDocument,b.write(),b.close(),c=sb(a,b),qb.detach()),rb[a]=c),c}var ub=/^margin/,vb=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)};function xb(a,b,c){var d,e,f,g,h=a.style;return c=c||wb(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||o.contains(a.ownerDocument,a)||(g=o.style(a,b)),vb.test(g)&&ub.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function yb(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",e=m.documentElement,f=m.createElement("div"),g=m.createElement("div");g.style.backgroundClip="content-box",g.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===g.style.backgroundClip,f.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",f.appendChild(g);function h(){g.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",e.appendChild(f);var d=a.getComputedStyle(g,null);b="1%"!==d.top,c="4px"===d.width,e.removeChild(f)}a.getComputedStyle&&o.extend(l,{pixelPosition:function(){return h(),b},boxSizingReliable:function(){return null==c&&h(),c},reliableMarginRight:function(){var b,c=g.appendChild(m.createElement("div"));return c.style.cssText=g.style.cssText=d,c.style.marginRight=c.style.width="0",g.style.width="1px",e.appendChild(f),b=!parseFloat(a.getComputedStyle(c,null).marginRight),e.removeChild(f),g.innerHTML="",b}})}(),o.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var zb=/^(none|table(?!-c[ea]).+)/,Ab=new RegExp("^("+Q+")(.*)$","i"),Bb=new RegExp("^([+-])=("+Q+")","i"),Cb={position:"absolute",visibility:"hidden",display:"block"},Db={letterSpacing:0,fontWeight:400},Eb=["Webkit","O","Moz","ms"];function Fb(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Eb.length;while(e--)if(b=Eb[e]+c,b in a)return b;return d}function Gb(a,b,c){var d=Ab.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Hb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=o.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=o.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=o.css(a,"border"+R[f]+"Width",!0,e))):(g+=o.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=o.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ib(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g="border-box"===o.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xb(a,b,f),(0>e||null==e)&&(e=a.style[b]),vb.test(e))return e;d=g&&(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Hb(a,b,c||(g?"border":"content"),d,f)+"px"}function Jb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",tb(d.nodeName)))):f[g]||(e=S(d),(c&&"none"!==c||!e)&&L.set(d,"olddisplay",e?c:o.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}o.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=o.camelCase(b),i=a.style;return b=o.cssProps[h]||(o.cssProps[h]=Fb(i,h)),g=o.cssHooks[b]||o.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=Bb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(o.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||o.cssNumber[h]||(c+="px"),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]="",i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=o.camelCase(b);return b=o.cssProps[h]||(o.cssProps[h]=Fb(a.style,h)),g=o.cssHooks[b]||o.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xb(a,b,d)),"normal"===e&&b in Db&&(e=Db[b]),""===c||c?(f=parseFloat(e),c===!0||o.isNumeric(f)?f||0:e):e}}),o.each(["height","width"],function(a,b){o.cssHooks[b]={get:function(a,c,d){return c?0===a.offsetWidth&&zb.test(o.css(a,"display"))?o.swap(a,Cb,function(){return Ib(a,b,d)}):Ib(a,b,d):void 0},set:function(a,c,d){var e=d&&wb(a);return Gb(a,c,d?Hb(a,b,d,"border-box"===o.css(a,"boxSizing",!1,e),e):0)}}}),o.cssHooks.marginRight=yb(l.reliableMarginRight,function(a,b){return b?o.swap(a,{display:"inline-block"},xb,[a,"marginRight"]):void 0}),o.each({margin:"",padding:"",border:"Width"},function(a,b){o.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ub.test(a)||(o.cssHooks[a+b].set=Gb)}),o.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(o.isArray(b)){for(d=wb(a),e=b.length;e>g;g++)f[b[g]]=o.css(a,b[g],!1,d);return f}return void 0!==c?o.style(a,b,c):o.css(a,b)},a,b,arguments.length>1)},show:function(){return Jb(this,!0)},hide:function(){return Jb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?o(this).show():o(this).hide()})}});function Kb(a,b,c,d,e){return new Kb.prototype.init(a,b,c,d,e)}o.Tween=Kb,Kb.prototype={constructor:Kb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(o.cssNumber[c]?"":"px")},cur:function(){var a=Kb.propHooks[this.prop];return a&&a.get?a.get(this):Kb.propHooks._default.get(this)},run:function(a){var b,c=Kb.propHooks[this.prop];return this.pos=b=this.options.duration?o.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Kb.propHooks._default.set(this),this}},Kb.prototype.init.prototype=Kb.prototype,Kb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=o.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){o.fx.step[a.prop]?o.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[o.cssProps[a.prop]]||o.cssHooks[a.prop])?o.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Kb.propHooks.scrollTop=Kb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},o.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},o.fx=Kb.prototype.init,o.fx.step={};var Lb,Mb,Nb=/^(?:toggle|show|hide)$/,Ob=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pb=/queueHooks$/,Qb=[Vb],Rb={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Ob.exec(b),f=e&&e[3]||(o.cssNumber[a]?"":"px"),g=(o.cssNumber[a]||"px"!==f&&+d)&&Ob.exec(o.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,o.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sb(){return setTimeout(function(){Lb=void 0}),Lb=o.now()}function Tb(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ub(a,b,c){for(var d,e=(Rb[b]||[]).concat(Rb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Vb(a,b,c){var d,e,f,g,h,i,j,k=this,l={},m=a.style,n=a.nodeType&&S(a),p=L.get(a,"fxshow");c.queue||(h=o._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,k.always(function(){k.always(function(){h.unqueued--,o.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],j=o.css(a,"display"),"none"===j&&(j=tb(a.nodeName)),"inline"===j&&"none"===o.css(a,"float")&&(m.display="inline-block")),c.overflow&&(m.overflow="hidden",k.always(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Nb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(n?"hide":"show")){if("show"!==e||!p||void 0===p[d])continue;n=!0}l[d]=p&&p[d]||o.style(a,d)}if(!o.isEmptyObject(l)){p?"hidden"in p&&(n=p.hidden):p=L.access(a,"fxshow",{}),f&&(p.hidden=!n),n?o(a).show():k.done(function(){o(a).hide()}),k.done(function(){var b;L.remove(a,"fxshow");for(b in l)o.style(a,b,l[b])});for(d in l)g=Ub(n?p[d]:0,d,k),d in p||(p[d]=g.start,n&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function Wb(a,b){var c,d,e,f,g;for(c in a)if(d=o.camelCase(c),e=b[d],f=a[c],o.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=o.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xb(a,b,c){var d,e,f=0,g=Qb.length,h=o.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Lb||Sb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:o.extend({},b),opts:o.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:Lb||Sb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=o.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wb(k,j.opts.specialEasing);g>f;f++)if(d=Qb[f].call(j,a,k,j.opts))return d;return o.map(k,Ub,j),o.isFunction(j.opts.start)&&j.opts.start.call(a,j),o.fx.timer(o.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}o.Animation=o.extend(Xb,{tweener:function(a,b){o.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Rb[c]=Rb[c]||[],Rb[c].unshift(b)},prefilter:function(a,b){b?Qb.unshift(a):Qb.push(a)}}),o.speed=function(a,b,c){var d=a&&"object"==typeof a?o.extend({},a):{complete:c||!c&&b||o.isFunction(a)&&a,duration:a,easing:c&&b||b&&!o.isFunction(b)&&b};return d.duration=o.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in o.fx.speeds?o.fx.speeds[d.duration]:o.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){o.isFunction(d.old)&&d.old.call(this),d.queue&&o.dequeue(this,d.queue)},d},o.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=o.isEmptyObject(a),f=o.speed(b,c,d),g=function(){var b=Xb(this,o.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=o.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&o.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=L.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=o.timers,g=d?d.length:0;for(c.finish=!0,o.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),o.each(["toggle","show","hide"],function(a,b){var c=o.fn[b];o.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Tb(b,!0),a,d,e)}}),o.each({slideDown:Tb("show"),slideUp:Tb("hide"),slideToggle:Tb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){o.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),o.timers=[],o.fx.tick=function(){var a,b=0,c=o.timers;for(Lb=o.now();b1)},removeAttr:function(a){return this.each(function(){o.removeAttr(this,a)})}}),o.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?o.prop(a,b,c):(1===f&&o.isXMLDoc(a)||(b=b.toLowerCase(),d=o.attrHooks[b]||(o.expr.match.bool.test(b)?Zb:Yb)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=o.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void o.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=o.propFix[c]||c,o.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&o.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Zb={set:function(a,b,c){return b===!1?o.removeAttr(a,c):a.setAttribute(c,c),c}},o.each(o.expr.match.bool.source.match(/\w+/g),function(a,b){var c=$b[b]||o.find.attr;$b[b]=function(a,b,d){var e,f;
-return d||(f=$b[b],$b[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$b[b]=f),e}});var _b=/^(?:input|select|textarea|button)$/i;o.fn.extend({prop:function(a,b){return J(this,o.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[o.propFix[a]||a]})}}),o.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!o.isXMLDoc(a),f&&(b=o.propFix[b]||b,e=o.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute("tabindex")||_b.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),l.optSelected||(o.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),o.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){o.propFix[this.toLowerCase()]=this});var ac=/[\t\r\n\f]/g;o.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(o.isFunction(a))return this.each(function(b){o(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=o.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(o.isFunction(a))return this.each(function(b){o(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?o.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(o.isFunction(a)?function(c){o(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=o(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ac," ").indexOf(b)>=0)return!0;return!1}});var bc=/\r/g;o.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=o.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,o(this).val()):a,null==e?e="":"number"==typeof e?e+="":o.isArray(e)&&(e=o.map(e,function(a){return null==a?"":a+""})),b=o.valHooks[this.type]||o.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=o.valHooks[e.type]||o.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(bc,""):null==c?"":c)}}}),o.extend({valHooks:{select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(l.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&o.nodeName(c.parentNode,"optgroup"))){if(b=o(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=o.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=o.inArray(o(d).val(),f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),o.each(["radio","checkbox"],function(){o.valHooks[this]={set:function(a,b){return o.isArray(b)?a.checked=o.inArray(o(a).val(),b)>=0:void 0}},l.checkOn||(o.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),o.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){o.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),o.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var cc=o.now(),dc=/\?/;o.parseJSON=function(a){return JSON.parse(a+"")},o.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&o.error("Invalid XML: "+a),b};var ec,fc,gc=/#.*$/,hc=/([?&])_=[^&]*/,ic=/^(.*?):[ \t]*([^\r\n]*)$/gm,jc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,kc=/^(?:GET|HEAD)$/,lc=/^\/\//,mc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,nc={},oc={},pc="*/".concat("*");try{fc=location.href}catch(qc){fc=m.createElement("a"),fc.href="",fc=fc.href}ec=mc.exec(fc.toLowerCase())||[];function rc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(o.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function sc(a,b,c,d){var e={},f=a===oc;function g(h){var i;return e[h]=!0,o.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function tc(a,b){var c,d,e=o.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&o.extend(!0,a,d),a}function uc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function vc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}o.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:fc,type:"GET",isLocal:jc.test(ec[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":pc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":o.parseJSON,"text xml":o.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?tc(tc(a,o.ajaxSettings),b):tc(o.ajaxSettings,a)},ajaxPrefilter:rc(nc),ajaxTransport:rc(oc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=o.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?o(l):o.event,n=o.Deferred(),p=o.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=ic.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(n.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||fc)+"").replace(gc,"").replace(lc,ec[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=o.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=mc.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===ec[1]&&h[2]===ec[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(ec[3]||("http:"===ec[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=o.param(k.data,k.traditional)),sc(nc,k,b,v),2===t)return v;i=k.global,i&&0===o.active++&&o.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!kc.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(dc.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=hc.test(d)?d.replace(hc,"$1_="+cc++):d+(dc.test(d)?"&":"?")+"_="+cc++)),k.ifModified&&(o.lastModified[d]&&v.setRequestHeader("If-Modified-Since",o.lastModified[d]),o.etag[d]&&v.setRequestHeader("If-None-Match",o.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+pc+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=sc(oc,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=uc(k,v,f)),u=vc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(o.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(o.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?n.resolveWith(l,[r,x,v]):n.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--o.active||o.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return o.get(a,b,c,"json")},getScript:function(a,b){return o.get(a,void 0,b,"script")}}),o.each(["get","post"],function(a,b){o[b]=function(a,c,d,e){return o.isFunction(c)&&(e=e||d,d=c,c=void 0),o.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),o.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){o.fn[b]=function(a){return this.on(b,a)}}),o._evalUrl=function(a){return o.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},o.fn.extend({wrapAll:function(a){var b;return o.isFunction(a)?this.each(function(b){o(this).wrapAll(a.call(this,b))}):(this[0]&&(b=o(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(o.isFunction(a)?function(b){o(this).wrapInner(a.call(this,b))}:function(){var b=o(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=o.isFunction(a);return this.each(function(c){o(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){o.nodeName(this,"body")||o(this).replaceWith(this.childNodes)}).end()}}),o.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},o.expr.filters.visible=function(a){return!o.expr.filters.hidden(a)};var wc=/%20/g,xc=/\[\]$/,yc=/\r?\n/g,zc=/^(?:submit|button|image|reset|file)$/i,Ac=/^(?:input|select|textarea|keygen)/i;function Bc(a,b,c,d){var e;if(o.isArray(b))o.each(b,function(b,e){c||xc.test(a)?d(a,e):Bc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==o.type(b))d(a,b);else for(e in b)Bc(a+"["+e+"]",b[e],c,d)}o.param=function(a,b){var c,d=[],e=function(a,b){b=o.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=o.ajaxSettings&&o.ajaxSettings.traditional),o.isArray(a)||a.jquery&&!o.isPlainObject(a))o.each(a,function(){e(this.name,this.value)});else for(c in a)Bc(c,a[c],b,e);return d.join("&").replace(wc,"+")},o.fn.extend({serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=o.prop(this,"elements");return a?o.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!o(this).is(":disabled")&&Ac.test(this.nodeName)&&!zc.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=o(this).val();return null==c?null:o.isArray(c)?o.map(c,function(a){return{name:b.name,value:a.replace(yc,"\r\n")}}):{name:b.name,value:c.replace(yc,"\r\n")}}).get()}}),o.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Cc=0,Dc={},Ec={0:200,1223:204},Fc=o.ajaxSettings.xhr();a.ActiveXObject&&o(a).on("unload",function(){for(var a in Dc)Dc[a]()}),l.cors=!!Fc&&"withCredentials"in Fc,l.ajax=Fc=!!Fc,o.ajaxTransport(function(a){var b;return l.cors||Fc&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Cc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Dc[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Ec[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Dc[g]=b("abort"),f.send(a.hasContent&&a.data||null)},abort:function(){b&&b()}}:void 0}),o.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return o.globalEval(a),a}}}),o.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),o.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=o("
-
-
-
-
-
- lunr.js
- Simple full-text search in your browser
-
-
-
-
-
-
-
-
-
-
- Open your browser's developer tools on this page to follow along.
-
- Set up an index for your notes:
-
- var index = lunr(function () {
- this.field('title', {boost: 10})
- this.field('body')
- this.ref('id')
- })
-
- Add documents to your index
-
- index.add({
- id: 1,
- title: 'Foo',
- body: 'Foo foo foo!'
- })
-
- index.add({
- id: 2,
- title: 'Bar',
- body: 'Bar bar bar!'
- })
-
- Search your documents
-
- index.search('foo')
-
-
-
-
-
- lunr.js is a simple full text search engine for your client side applications. It is designed to be small, yet full featured, enabling you to provide a great search experience without the need for external, server side, search services.
-
- lunr.js has no external dependencies, although it does require a modern browser with ES5 support. In older browsers you can use an ES5 shim, such as augment.js , to provide any missing JavaScript functionality.
-
-
-
-
-
-
-
-
-
-
-
-
-
- Every document and search query that enters lunr is passed through a text processing pipeline . The pipeline is simply a stack of functions that perform some processing on the text. Pipeline functions act on the text one token at a time, and what they return is passed to the next function in the pipeline.
-
- By default lunr adds a stop word filter and stemmer to the pipeline. You can also add your own processors or remove the default ones depending on your requirements. The stemmer currently used is an English language stemmer, which could be replaced with a non-English language stemmer if required, or a Metaphoning processor could be added.
-
-
-
- var index = lunr(function () {
- this.pipeline.add(function (token, tokenIndex, tokens) {
- // text processing in here
- })
-
- this.pipeline.after(lunr.stopWordFilter, function (token, tokenIndex, tokens) {
- // text processing in here
- })
- })
-
-
- Functions in the pipeline are called with three arguments: the current token being processed; the index of that token in the array of tokens, and the whole list of tokens part of the document being processed. This enables simple unigram processing of tokens as well as more sophisticated n-gram processing.
-
- The function should return the processed version of the text, which will in turn be passed to the next function in the pipeline. Returning undefined
will prevent any further processing of the token, and that token will not make it to the index.
-
-
-
-
-
-
-
- Tokenization is how lunr converts documents and searches into individual tokens, ready to be run through the text processing pipeline and entered or looked up in the index.
-
- The default tokenizer included with lunr is designed to handle general english text well, although application, or language specific tokenizers can be used instead.
-
-
-
-
-
- Stemming increases the recall of the search index by reducing related words down to their stem, so that non-exact search terms still match relevant documents. For example 'search', 'searching' and 'searched' all get reduced to the stem 'search'.
-
- lunr automatically includes a stemmer based on Martin Porter's algorithms.
-
-
-
-
-
- Stop words are words that are very common and are not useful in differentiating between documents. These are automatically removed by lunr. This helps to reduce the size of the index and improve search speed and accuracy.
-
- The default stop word filter contains a large list of very common words in English. For best results a corpus specific stop word filter can also be added to the pipeline. The search algorithm already penalises more common words, but preventing them from entering the index at all can be very beneficial for both space and speed performance.
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/browse/lib/lunr.js/lib/document_store.js b/public/browse/lib/lunr.js/lib/document_store.js
deleted file mode 100644
index 46fbc9c826..0000000000
--- a/public/browse/lib/lunr.js/lib/document_store.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/*!
- * lunr.Store
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.Store is a simple key-value store used for storing sets of tokens for
- * documents stored in index.
- *
- * @constructor
- * @module
- */
-lunr.Store = function () {
- this.store = {}
- this.length = 0
-}
-
-/**
- * Loads a previously serialised store
- *
- * @param {Object} serialisedData The serialised store to load.
- * @returns {lunr.Store}
- * @memberOf Store
- */
-lunr.Store.load = function (serialisedData) {
- var store = new this
-
- store.length = serialisedData.length
- store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {
- memo[key] = lunr.SortedSet.load(serialisedData.store[key])
- return memo
- }, {})
-
- return store
-}
-
-/**
- * Stores the given tokens in the store against the given id.
- *
- * @param {Object} id The key used to store the tokens against.
- * @param {Object} tokens The tokens to store against the key.
- * @memberOf Store
- */
-lunr.Store.prototype.set = function (id, tokens) {
- if (!this.has(id)) this.length++
- this.store[id] = tokens
-}
-
-/**
- * Retrieves the tokens from the store for a given key.
- *
- * @param {Object} id The key to lookup and retrieve from the store.
- * @returns {Object}
- * @memberOf Store
- */
-lunr.Store.prototype.get = function (id) {
- return this.store[id]
-}
-
-/**
- * Checks whether the store contains a key.
- *
- * @param {Object} id The id to look up in the store.
- * @returns {Boolean}
- * @memberOf Store
- */
-lunr.Store.prototype.has = function (id) {
- return id in this.store
-}
-
-/**
- * Removes the value for a key in the store.
- *
- * @param {Object} id The id to remove from the store.
- * @memberOf Store
- */
-lunr.Store.prototype.remove = function (id) {
- if (!this.has(id)) return
-
- delete this.store[id]
- this.length--
-}
-
-/**
- * Returns a representation of the store ready for serialisation.
- *
- * @returns {Object}
- * @memberOf Store
- */
-lunr.Store.prototype.toJSON = function () {
- return {
- store: this.store,
- length: this.length
- }
-}
-
diff --git a/public/browse/lib/lunr.js/lib/event_emitter.js b/public/browse/lib/lunr.js/lib/event_emitter.js
deleted file mode 100644
index 1b755c22c6..0000000000
--- a/public/browse/lib/lunr.js/lib/event_emitter.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/*!
- * lunr.EventEmitter
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.
- *
- * @constructor
- */
-lunr.EventEmitter = function () {
- this.events = {}
-}
-
-/**
- * Binds a handler function to a specific event(s).
- *
- * Can bind a single function to many different events in one call.
- *
- * @param {String} [eventName] The name(s) of events to bind this function to.
- * @param {Function} handler The function to call when an event is fired.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.addListener = function () {
- var args = Array.prototype.slice.call(arguments),
- fn = args.pop(),
- names = args
-
- if (typeof fn !== "function") throw new TypeError ("last argument must be a function")
-
- names.forEach(function (name) {
- if (!this.hasHandler(name)) this.events[name] = []
- this.events[name].push(fn)
- }, this)
-}
-
-/**
- * Removes a handler function from a specific event.
- *
- * @param {String} eventName The name of the event to remove this function from.
- * @param {Function} handler The function to remove from an event.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.removeListener = function (name, fn) {
- if (!this.hasHandler(name)) return
-
- var fnIndex = this.events[name].indexOf(fn)
- this.events[name].splice(fnIndex, 1)
-
- if (!this.events[name].length) delete this.events[name]
-}
-
-/**
- * Calls all functions bound to the given event.
- *
- * Additional data can be passed to the event handler as arguments to `emit`
- * after the event name.
- *
- * @param {String} eventName The name of the event to emit.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.emit = function (name) {
- if (!this.hasHandler(name)) return
-
- var args = Array.prototype.slice.call(arguments, 1)
-
- this.events[name].forEach(function (fn) {
- fn.apply(undefined, args)
- })
-}
-
-/**
- * Checks whether a handler has ever been stored against an event.
- *
- * @param {String} eventName The name of the event to check.
- * @private
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.hasHandler = function (name) {
- return name in this.events
-}
-
diff --git a/public/browse/lib/lunr.js/lib/index.js b/public/browse/lib/lunr.js/lib/index.js
deleted file mode 100644
index 9635055288..0000000000
--- a/public/browse/lib/lunr.js/lib/index.js
+++ /dev/null
@@ -1,421 +0,0 @@
-/*!
- * lunr.Index
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.Index is object that manages a search index. It contains the indexes
- * and stores all the tokens and document lookups. It also provides the main
- * user facing API for the library.
- *
- * @constructor
- */
-lunr.Index = function () {
- this._fields = []
- this._ref = 'id'
- this.pipeline = new lunr.Pipeline
- this.documentStore = new lunr.Store
- this.tokenStore = new lunr.TokenStore
- this.corpusTokens = new lunr.SortedSet
- this.eventEmitter = new lunr.EventEmitter
-
- this._idfCache = {}
-
- this.on('add', 'remove', 'update', (function () {
- this._idfCache = {}
- }).bind(this))
-}
-
-/**
- * Bind a handler to events being emitted by the index.
- *
- * The handler can be bound to many events at the same time.
- *
- * @param {String} [eventName] The name(s) of events to bind the function to.
- * @param {Function} handler The serialised set to load.
- * @memberOf Index
- */
-lunr.Index.prototype.on = function () {
- var args = Array.prototype.slice.call(arguments)
- return this.eventEmitter.addListener.apply(this.eventEmitter, args)
-}
-
-/**
- * Removes a handler from an event being emitted by the index.
- *
- * @param {String} eventName The name of events to remove the function from.
- * @param {Function} handler The serialised set to load.
- * @memberOf Index
- */
-lunr.Index.prototype.off = function (name, fn) {
- return this.eventEmitter.removeListener(name, fn)
-}
-
-/**
- * Loads a previously serialised index.
- *
- * Issues a warning if the index being imported was serialised
- * by a different version of lunr.
- *
- * @param {Object} serialisedData The serialised set to load.
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.load = function (serialisedData) {
- if (serialisedData.version !== lunr.version) {
- lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)
- }
-
- var idx = new this
-
- idx._fields = serialisedData.fields
- idx._ref = serialisedData.ref
-
- idx.documentStore = lunr.Store.load(serialisedData.documentStore)
- idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)
- idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)
- idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)
-
- return idx
-}
-
-/**
- * Adds a field to the list of fields that will be searchable within documents
- * in the index.
- *
- * An optional boost param can be passed to affect how much tokens in this field
- * rank in search results, by default the boost value is 1.
- *
- * Fields should be added before any documents are added to the index, fields
- * that are added after documents are added to the index will only apply to new
- * documents added to the index.
- *
- * @param {String} fieldName The name of the field within the document that
- * should be indexed
- * @param {Number} boost An optional boost that can be applied to terms in this
- * field.
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.prototype.field = function (fieldName, opts) {
- var opts = opts || {},
- field = { name: fieldName, boost: opts.boost || 1 }
-
- this._fields.push(field)
- return this
-}
-
-/**
- * Sets the property used to uniquely identify documents added to the index,
- * by default this property is 'id'.
- *
- * This should only be changed before adding documents to the index, changing
- * the ref property without resetting the index can lead to unexpected results.
- *
- * @param {String} refName The property to use to uniquely identify the
- * documents in the index.
- * @param {Boolean} emitEvent Whether to emit add events, defaults to true
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.prototype.ref = function (refName) {
- this._ref = refName
- return this
-}
-
-/**
- * Add a document to the index.
- *
- * This is the way new documents enter the index, this function will run the
- * fields from the document through the index's pipeline and then add it to
- * the index, it will then show up in search results.
- *
- * An 'add' event is emitted with the document that has been added and the index
- * the document has been added to. This event can be silenced by passing false
- * as the second argument to add.
- *
- * @param {Object} doc The document to add to the index.
- * @param {Boolean} emitEvent Whether or not to emit events, default true.
- * @memberOf Index
- */
-lunr.Index.prototype.add = function (doc, emitEvent) {
- var docTokens = {},
- allDocumentTokens = new lunr.SortedSet,
- docRef = doc[this._ref],
- emitEvent = emitEvent === undefined ? true : emitEvent
-
- this._fields.forEach(function (field) {
- var fieldTokens = this.pipeline.run(lunr.tokenizer(doc[field.name]))
-
- docTokens[field.name] = fieldTokens
- lunr.SortedSet.prototype.add.apply(allDocumentTokens, fieldTokens)
- }, this)
-
- this.documentStore.set(docRef, allDocumentTokens)
- lunr.SortedSet.prototype.add.apply(this.corpusTokens, allDocumentTokens.toArray())
-
- for (var i = 0; i < allDocumentTokens.length; i++) {
- var token = allDocumentTokens.elements[i]
- var tf = this._fields.reduce(function (memo, field) {
- var fieldLength = docTokens[field.name].length
-
- if (!fieldLength) return memo
-
- var tokenCount = docTokens[field.name].filter(function (t) { return t === token }).length
-
- return memo + (tokenCount / fieldLength * field.boost)
- }, 0)
-
- this.tokenStore.add(token, { ref: docRef, tf: tf })
- };
-
- if (emitEvent) this.eventEmitter.emit('add', doc, this)
-}
-
-/**
- * Removes a document from the index.
- *
- * To make sure documents no longer show up in search results they can be
- * removed from the index using this method.
- *
- * The document passed only needs to have the same ref property value as the
- * document that was added to the index, they could be completely different
- * objects.
- *
- * A 'remove' event is emitted with the document that has been removed and the index
- * the document has been removed from. This event can be silenced by passing false
- * as the second argument to remove.
- *
- * @param {Object} doc The document to remove from the index.
- * @param {Boolean} emitEvent Whether to emit remove events, defaults to true
- * @memberOf Index
- */
-lunr.Index.prototype.remove = function (doc, emitEvent) {
- var docRef = doc[this._ref],
- emitEvent = emitEvent === undefined ? true : emitEvent
-
- if (!this.documentStore.has(docRef)) return
-
- var docTokens = this.documentStore.get(docRef)
-
- this.documentStore.remove(docRef)
-
- docTokens.forEach(function (token) {
- this.tokenStore.remove(token, docRef)
- }, this)
-
- if (emitEvent) this.eventEmitter.emit('remove', doc, this)
-}
-
-/**
- * Updates a document in the index.
- *
- * When a document contained within the index gets updated, fields changed,
- * added or removed, to make sure it correctly matched against search queries,
- * it should be updated in the index.
- *
- * This method is just a wrapper around `remove` and `add`
- *
- * An 'update' event is emitted with the document that has been updated and the index.
- * This event can be silenced by passing false as the second argument to update. Only
- * an update event will be fired, the 'add' and 'remove' events of the underlying calls
- * are silenced.
- *
- * @param {Object} doc The document to update in the index.
- * @param {Boolean} emitEvent Whether to emit update events, defaults to true
- * @see Index.prototype.remove
- * @see Index.prototype.add
- * @memberOf Index
- */
-lunr.Index.prototype.update = function (doc, emitEvent) {
- var emitEvent = emitEvent === undefined ? true : emitEvent
-
- this.remove(doc, false)
- this.add(doc, false)
-
- if (emitEvent) this.eventEmitter.emit('update', doc, this)
-}
-
-/**
- * Calculates the inverse document frequency for a token within the index.
- *
- * @param {String} token The token to calculate the idf of.
- * @see Index.prototype.idf
- * @private
- * @memberOf Index
- */
-lunr.Index.prototype.idf = function (term) {
- var cacheKey = "@" + term
- if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]
-
- var documentFrequency = this.tokenStore.count(term),
- idf = 1
-
- if (documentFrequency > 0) {
- idf = 1 + Math.log(this.tokenStore.length / documentFrequency)
- }
-
- return this._idfCache[cacheKey] = idf
-}
-
-/**
- * Searches the index using the passed query.
- *
- * Queries should be a string, multiple words are allowed and will lead to an
- * AND based query, e.g. `idx.search('foo bar')` will run a search for
- * documents containing both 'foo' and 'bar'.
- *
- * All query tokens are passed through the same pipeline that document tokens
- * are passed through, so any language processing involved will be run on every
- * query term.
- *
- * Each query term is expanded, so that the term 'he' might be expanded to
- * 'hello' and 'help' if those terms were already included in the index.
- *
- * Matching documents are returned as an array of objects, each object contains
- * the matching document ref, as set for this index, and the similarity score
- * for this document against the query.
- *
- * @param {String} query The query to search the index with.
- * @returns {Object}
- * @see Index.prototype.idf
- * @see Index.prototype.documentVector
- * @memberOf Index
- */
-lunr.Index.prototype.search = function (query) {
- var queryTokens = this.pipeline.run(lunr.tokenizer(query)),
- queryVector = new lunr.Vector,
- documentSets = [],
- fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)
-
- var hasSomeToken = queryTokens.some(function (token) {
- return this.tokenStore.has(token)
- }, this)
-
- if (!hasSomeToken) return []
-
- queryTokens
- .forEach(function (token, i, tokens) {
- var tf = 1 / tokens.length * this._fields.length * fieldBoosts,
- self = this
-
- var set = this.tokenStore.expand(token).reduce(function (memo, key) {
- var pos = self.corpusTokens.indexOf(key),
- idf = self.idf(key),
- similarityBoost = 1,
- set = new lunr.SortedSet
-
- // if the expanded key is not an exact match to the token then
- // penalise the score for this key by how different the key is
- // to the token.
- if (key !== token) {
- var diff = Math.max(3, key.length - token.length)
- similarityBoost = 1 / Math.log(diff)
- }
-
- // calculate the query tf-idf score for this token
- // applying an similarityBoost to ensure exact matches
- // these rank higher than expanded terms
- if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)
-
- // add all the documents that have this key into a set
- Object.keys(self.tokenStore.get(key)).forEach(function (ref) { set.add(ref) })
-
- return memo.union(set)
- }, new lunr.SortedSet)
-
- documentSets.push(set)
- }, this)
-
- var documentSet = documentSets.reduce(function (memo, set) {
- return memo.intersect(set)
- })
-
- return documentSet
- .map(function (ref) {
- return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }
- }, this)
- .sort(function (a, b) {
- return b.score - a.score
- })
-}
-
-/**
- * Generates a vector containing all the tokens in the document matching the
- * passed documentRef.
- *
- * The vector contains the tf-idf score for each token contained in the
- * document with the passed documentRef. The vector will contain an element
- * for every token in the indexes corpus, if the document does not contain that
- * token the element will be 0.
- *
- * @param {Object} documentRef The ref to find the document with.
- * @returns {lunr.Vector}
- * @private
- * @memberOf Index
- */
-lunr.Index.prototype.documentVector = function (documentRef) {
- var documentTokens = this.documentStore.get(documentRef),
- documentTokensLength = documentTokens.length,
- documentVector = new lunr.Vector
-
- for (var i = 0; i < documentTokensLength; i++) {
- var token = documentTokens.elements[i],
- tf = this.tokenStore.get(token)[documentRef].tf,
- idf = this.idf(token)
-
- documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)
- };
-
- return documentVector
-}
-
-/**
- * Returns a representation of the index ready for serialisation.
- *
- * @returns {Object}
- * @memberOf Index
- */
-lunr.Index.prototype.toJSON = function () {
- return {
- version: lunr.version,
- fields: this._fields,
- ref: this._ref,
- documentStore: this.documentStore.toJSON(),
- tokenStore: this.tokenStore.toJSON(),
- corpusTokens: this.corpusTokens.toJSON(),
- pipeline: this.pipeline.toJSON()
- }
-}
-
-/**
- * Applies a plugin to the current index.
- *
- * A plugin is a function that is called with the index as its context.
- * Plugins can be used to customise or extend the behaviour the index
- * in some way. A plugin is just a function, that encapsulated the custom
- * behaviour that should be applied to the index.
- *
- * The plugin function will be called with the index as its argument, additional
- * arguments can also be passed when calling use. The function will be called
- * with the index as its context.
- *
- * Example:
- *
- * var myPlugin = function (idx, arg1, arg2) {
- * // `this` is the index to be extended
- * // apply any extensions etc here.
- * }
- *
- * var idx = lunr(function () {
- * this.use(myPlugin, 'arg1', 'arg2')
- * })
- *
- * @param {Function} plugin The plugin to apply.
- * @memberOf Index
- */
-lunr.Index.prototype.use = function (plugin) {
- var args = Array.prototype.slice.call(arguments, 1)
- args.unshift(this)
- plugin.apply(this, args)
-}
diff --git a/public/browse/lib/lunr.js/lib/lunr.js b/public/browse/lib/lunr.js/lib/lunr.js
deleted file mode 100644
index 44067da6e7..0000000000
--- a/public/browse/lib/lunr.js/lib/lunr.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
- * Convenience function for instantiating a new lunr index and configuring it
- * with the default pipeline functions and the passed config function.
- *
- * When using this convenience function a new index will be created with the
- * following functions already in the pipeline:
- *
- * lunr.StopWordFilter - filters out any stop words before they enter the
- * index
- *
- * lunr.stemmer - stems the tokens before entering the index.
- *
- * Example:
- *
- * var idx = lunr(function () {
- * this.field('title', 10)
- * this.field('tags', 100)
- * this.field('body')
- *
- * this.ref('cid')
- *
- * this.pipeline.add(function () {
- * // some custom pipeline function
- * })
- *
- * })
- *
- * @param {Function} config A function that will be called with the new instance
- * of the lunr.Index as both its context and first parameter. It can be used to
- * customize the instance of new lunr.Index.
- * @namespace
- * @module
- * @returns {lunr.Index}
- *
- */
-var lunr = function (config) {
- var idx = new lunr.Index
-
- idx.pipeline.add(
- lunr.trimmer,
- lunr.stopWordFilter,
- lunr.stemmer
- )
-
- if (config) config.call(idx, idx)
-
- return idx
-}
-
-lunr.version = "@VERSION"
diff --git a/public/browse/lib/lunr.js/lib/pipeline.js b/public/browse/lib/lunr.js/lib/pipeline.js
deleted file mode 100644
index 0ac7c06b38..0000000000
--- a/public/browse/lib/lunr.js/lib/pipeline.js
+++ /dev/null
@@ -1,217 +0,0 @@
-/*!
- * lunr.Pipeline
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.Pipelines maintain an ordered list of functions to be applied to all
- * tokens in documents entering the search index and queries being ran against
- * the index.
- *
- * An instance of lunr.Index created with the lunr shortcut will contain a
- * pipeline with a stop word filter and an English language stemmer. Extra
- * functions can be added before or after either of these functions or these
- * default functions can be removed.
- *
- * When run the pipeline will call each function in turn, passing a token, the
- * index of that token in the original list of all tokens and finally a list of
- * all the original tokens.
- *
- * The output of functions in the pipeline will be passed to the next function
- * in the pipeline. To exclude a token from entering the index the function
- * should return undefined, the rest of the pipeline will not be called with
- * this token.
- *
- * For serialisation of pipelines to work, all functions used in an instance of
- * a pipeline should be registered with lunr.Pipeline. Registered functions can
- * then be loaded. If trying to load a serialised pipeline that uses functions
- * that are not registered an error will be thrown.
- *
- * If not planning on serialising the pipeline then registering pipeline functions
- * is not necessary.
- *
- * @constructor
- */
-lunr.Pipeline = function () {
- this._stack = []
-}
-
-lunr.Pipeline.registeredFunctions = {}
-
-/**
- * Register a function with the pipeline.
- *
- * Functions that are used in the pipeline should be registered if the pipeline
- * needs to be serialised, or a serialised pipeline needs to be loaded.
- *
- * Registering a function does not add it to a pipeline, functions must still be
- * added to instances of the pipeline for them to be used when running a pipeline.
- *
- * @param {Function} fn The function to check for.
- * @param {String} label The label to register this function with
- * @memberOf Pipeline
- */
-lunr.Pipeline.registerFunction = function (fn, label) {
- if (label in this.registeredFunctions) {
- lunr.utils.warn('Overwriting existing registered function: ' + label)
- }
-
- fn.label = label
- lunr.Pipeline.registeredFunctions[fn.label] = fn
-}
-
-/**
- * Warns if the function is not registered as a Pipeline function.
- *
- * @param {Function} fn The function to check for.
- * @private
- * @memberOf Pipeline
- */
-lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {
- var isRegistered = fn.label && (fn.label in this.registeredFunctions)
-
- if (!isRegistered) {
- lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn)
- }
-}
-
-/**
- * Loads a previously serialised pipeline.
- *
- * All functions to be loaded must already be registered with lunr.Pipeline.
- * If any function from the serialised data has not been registered then an
- * error will be thrown.
- *
- * @param {Object} serialised The serialised pipeline to load.
- * @returns {lunr.Pipeline}
- * @memberOf Pipeline
- */
-lunr.Pipeline.load = function (serialised) {
- var pipeline = new lunr.Pipeline
-
- serialised.forEach(function (fnName) {
- var fn = lunr.Pipeline.registeredFunctions[fnName]
-
- if (fn) {
- pipeline.add(fn)
- } else {
- throw new Error ('Cannot load un-registered function: ' + fnName)
- }
- })
-
- return pipeline
-}
-
-/**
- * Adds new functions to the end of the pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} functions Any number of functions to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.add = function () {
- var fns = Array.prototype.slice.call(arguments)
-
- fns.forEach(function (fn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(fn)
- this._stack.push(fn)
- }, this)
-}
-
-/**
- * Adds a single function after a function that already exists in the
- * pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} existingFn A function that already exists in the pipeline.
- * @param {Function} newFn The new function to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.after = function (existingFn, newFn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
-
- var pos = this._stack.indexOf(existingFn) + 1
- this._stack.splice(pos, 0, newFn)
-}
-
-/**
- * Adds a single function before a function that already exists in the
- * pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} existingFn A function that already exists in the pipeline.
- * @param {Function} newFn The new function to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.before = function (existingFn, newFn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
-
- var pos = this._stack.indexOf(existingFn)
- this._stack.splice(pos, 0, newFn)
-}
-
-/**
- * Removes a function from the pipeline.
- *
- * @param {Function} fn The function to remove from the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.remove = function (fn) {
- var pos = this._stack.indexOf(fn)
- this._stack.splice(pos, 1)
-}
-
-/**
- * Runs the current list of functions that make up the pipeline against the
- * passed tokens.
- *
- * @param {Array} tokens The tokens to run through the pipeline.
- * @returns {Array}
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.run = function (tokens) {
- var out = [],
- tokenLength = tokens.length,
- stackLength = this._stack.length
-
- for (var i = 0; i < tokenLength; i++) {
- var token = tokens[i]
-
- for (var j = 0; j < stackLength; j++) {
- token = this._stack[j](token, i, tokens)
- if (token === void 0) break
- };
-
- if (token !== void 0) out.push(token)
- };
-
- return out
-}
-
-/**
- * Resets the pipeline by removing any existing processors.
- *
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.reset = function () {
- this._stack = []
-}
-
-/**
- * Returns a representation of the pipeline ready for serialisation.
- *
- * Logs a warning if the function has not been registered.
- *
- * @returns {Array}
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.toJSON = function () {
- return this._stack.map(function (fn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(fn)
-
- return fn.label
- })
-}
diff --git a/public/browse/lib/lunr.js/lib/sorted_set.js b/public/browse/lib/lunr.js/lib/sorted_set.js
deleted file mode 100644
index 57b1674dd9..0000000000
--- a/public/browse/lib/lunr.js/lib/sorted_set.js
+++ /dev/null
@@ -1,238 +0,0 @@
-/*!
- * lunr.SortedSet
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.SortedSets are used to maintain an array of uniq values in a sorted
- * order.
- *
- * @constructor
- */
-lunr.SortedSet = function () {
- this.length = 0
- this.elements = []
-}
-
-/**
- * Loads a previously serialised sorted set.
- *
- * @param {Array} serialisedData The serialised set to load.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.load = function (serialisedData) {
- var set = new this
-
- set.elements = serialisedData
- set.length = serialisedData.length
-
- return set
-}
-
-/**
- * Inserts new items into the set in the correct position to maintain the
- * order.
- *
- * @param {Object} The objects to add to this set.
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.add = function () {
- Array.prototype.slice.call(arguments).forEach(function (element) {
- if (~this.indexOf(element)) return
- this.elements.splice(this.locationFor(element), 0, element)
- }, this)
-
- this.length = this.elements.length
-}
-
-/**
- * Converts this sorted set into an array.
- *
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.toArray = function () {
- return this.elements.slice()
-}
-
-/**
- * Creates a new array with the results of calling a provided function on every
- * element in this sorted set.
- *
- * Delegates to Array.prototype.map and has the same signature.
- *
- * @param {Function} fn The function that is called on each element of the
- * set.
- * @param {Object} ctx An optional object that can be used as the context
- * for the function fn.
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.map = function (fn, ctx) {
- return this.elements.map(fn, ctx)
-}
-
-/**
- * Executes a provided function once per sorted set element.
- *
- * Delegates to Array.prototype.forEach and has the same signature.
- *
- * @param {Function} fn The function that is called on each element of the
- * set.
- * @param {Object} ctx An optional object that can be used as the context
- * @memberOf SortedSet
- * for the function fn.
- */
-lunr.SortedSet.prototype.forEach = function (fn, ctx) {
- return this.elements.forEach(fn, ctx)
-}
-
-/**
- * Returns the index at which a given element can be found in the
- * sorted set, or -1 if it is not present.
- *
- * @param {Object} elem The object to locate in the sorted set.
- * @param {Number} start An optional index at which to start searching from
- * within the set.
- * @param {Number} end An optional index at which to stop search from within
- * the set.
- * @returns {Number}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.indexOf = function (elem, start, end) {
- var start = start || 0,
- end = end || this.elements.length,
- sectionLength = end - start,
- pivot = start + Math.floor(sectionLength / 2),
- pivotElem = this.elements[pivot]
-
- if (sectionLength <= 1) {
- if (pivotElem === elem) {
- return pivot
- } else {
- return -1
- }
- }
-
- if (pivotElem < elem) return this.indexOf(elem, pivot, end)
- if (pivotElem > elem) return this.indexOf(elem, start, pivot)
- if (pivotElem === elem) return pivot
-}
-
-/**
- * Returns the position within the sorted set that an element should be
- * inserted at to maintain the current order of the set.
- *
- * This function assumes that the element to search for does not already exist
- * in the sorted set.
- *
- * @param {Object} elem The elem to find the position for in the set
- * @param {Number} start An optional index at which to start searching from
- * within the set.
- * @param {Number} end An optional index at which to stop search from within
- * the set.
- * @returns {Number}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.locationFor = function (elem, start, end) {
- var start = start || 0,
- end = end || this.elements.length,
- sectionLength = end - start,
- pivot = start + Math.floor(sectionLength / 2),
- pivotElem = this.elements[pivot]
-
- if (sectionLength <= 1) {
- if (pivotElem > elem) return pivot
- if (pivotElem < elem) return pivot + 1
- }
-
- if (pivotElem < elem) return this.locationFor(elem, pivot, end)
- if (pivotElem > elem) return this.locationFor(elem, start, pivot)
-}
-
-/**
- * Creates a new lunr.SortedSet that contains the elements in the intersection
- * of this set and the passed set.
- *
- * @param {lunr.SortedSet} otherSet The set to intersect with this set.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.intersect = function (otherSet) {
- var intersectSet = new lunr.SortedSet,
- i = 0, j = 0,
- a_len = this.length, b_len = otherSet.length,
- a = this.elements, b = otherSet.elements
-
- while (true) {
- if (i > a_len - 1 || j > b_len - 1) break
-
- if (a[i] === b[j]) {
- intersectSet.add(a[i])
- i++, j++
- continue
- }
-
- if (a[i] < b[j]) {
- i++
- continue
- }
-
- if (a[i] > b[j]) {
- j++
- continue
- }
- };
-
- return intersectSet
-}
-
-/**
- * Makes a copy of this set
- *
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.clone = function () {
- var clone = new lunr.SortedSet
-
- clone.elements = this.toArray()
- clone.length = clone.elements.length
-
- return clone
-}
-
-/**
- * Creates a new lunr.SortedSet that contains the elements in the union
- * of this set and the passed set.
- *
- * @param {lunr.SortedSet} otherSet The set to union with this set.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.union = function (otherSet) {
- var longSet, shortSet, unionSet
-
- if (this.length >= otherSet.length) {
- longSet = this, shortSet = otherSet
- } else {
- longSet = otherSet, shortSet = this
- }
-
- unionSet = longSet.clone()
-
- unionSet.add.apply(unionSet, shortSet.toArray())
-
- return unionSet
-}
-
-/**
- * Returns a representation of the sorted set ready for serialisation.
- *
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.toJSON = function () {
- return this.toArray()
-}
diff --git a/public/browse/lib/lunr.js/lib/stemmer.js b/public/browse/lib/lunr.js/lib/stemmer.js
deleted file mode 100644
index 9bee9e10dc..0000000000
--- a/public/browse/lib/lunr.js/lib/stemmer.js
+++ /dev/null
@@ -1,190 +0,0 @@
-/*!
- * lunr.stemmer
- * Copyright (C) @YEAR Oliver Nightingale
- * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
- */
-
-/**
- * lunr.stemmer is an english language stemmer, this is a JavaScript
- * implementation of the PorterStemmer taken from http://tartaurs.org/~martin
- *
- * @module
- * @param {String} str The string to stem
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.stemmer = (function(){
- var step2list = {
- "ational" : "ate",
- "tional" : "tion",
- "enci" : "ence",
- "anci" : "ance",
- "izer" : "ize",
- "bli" : "ble",
- "alli" : "al",
- "entli" : "ent",
- "eli" : "e",
- "ousli" : "ous",
- "ization" : "ize",
- "ation" : "ate",
- "ator" : "ate",
- "alism" : "al",
- "iveness" : "ive",
- "fulness" : "ful",
- "ousness" : "ous",
- "aliti" : "al",
- "iviti" : "ive",
- "biliti" : "ble",
- "logi" : "log"
- },
-
- step3list = {
- "icate" : "ic",
- "ative" : "",
- "alize" : "al",
- "iciti" : "ic",
- "ical" : "ic",
- "ful" : "",
- "ness" : ""
- },
-
- c = "[^aeiou]", // consonant
- v = "[aeiouy]", // vowel
- C = c + "[^aeiouy]*", // consonant sequence
- V = v + "[aeiou]*", // vowel sequence
-
- mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0
- meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1
- mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1
- s_v = "^(" + C + ")?" + v; // vowel in stem
-
- return function (w) {
- var stem,
- suffix,
- firstch,
- re,
- re2,
- re3,
- re4;
-
- if (w.length < 3) { return w; }
-
- firstch = w.substr(0,1);
- if (firstch == "y") {
- w = firstch.toUpperCase() + w.substr(1);
- }
-
- // Step 1a
- re = /^(.+?)(ss|i)es$/;
- re2 = /^(.+?)([^s])s$/;
-
- if (re.test(w)) { w = w.replace(re,"$1$2"); }
- else if (re2.test(w)) { w = w.replace(re2,"$1$2"); }
-
- // Step 1b
- re = /^(.+?)eed$/;
- re2 = /^(.+?)(ed|ing)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- re = new RegExp(mgr0);
- if (re.test(fp[1])) {
- re = /.$/;
- w = w.replace(re,"");
- }
- } else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1];
- re2 = new RegExp(s_v);
- if (re2.test(stem)) {
- w = stem;
- re2 = /(at|bl|iz)$/;
- re3 = new RegExp("([^aeiouylsz])\\1$");
- re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re2.test(w)) { w = w + "e"; }
- else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); }
- else if (re4.test(w)) { w = w + "e"; }
- }
- }
-
- // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)
- re = /^(.+?[^aeiou])y$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- w = stem + "i";
- }
-
- // Step 2
- re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem)) {
- w = stem + step2list[suffix];
- }
- }
-
- // Step 3
- re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem)) {
- w = stem + step3list[suffix];
- }
- }
-
- // Step 4
- re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
- re2 = /^(.+?)(s|t)(ion)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- if (re.test(stem)) {
- w = stem;
- }
- } else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1] + fp[2];
- re2 = new RegExp(mgr1);
- if (re2.test(stem)) {
- w = stem;
- }
- }
-
- // Step 5
- re = /^(.+?)e$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- re2 = new RegExp(meq1);
- re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {
- w = stem;
- }
- }
-
- re = /ll$/;
- re2 = new RegExp(mgr1);
- if (re.test(w) && re2.test(w)) {
- re = /.$/;
- w = w.replace(re,"");
- }
-
- // and turn initial Y back to y
-
- if (firstch == "y") {
- w = firstch.toLowerCase() + w.substr(1);
- }
-
- return w;
- }
-})();
-
-lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')
diff --git a/public/browse/lib/lunr.js/lib/stop_word_filter.js b/public/browse/lib/lunr.js/lib/stop_word_filter.js
deleted file mode 100644
index 285f94c600..0000000000
--- a/public/browse/lib/lunr.js/lib/stop_word_filter.js
+++ /dev/null
@@ -1,147 +0,0 @@
-/*!
- * lunr.stopWordFilter
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.stopWordFilter is an English language stop word list filter, any words
- * contained in the list will not be passed through the filter.
- *
- * This is intended to be used in the Pipeline. If the token does not pass the
- * filter then undefined will be returned.
- *
- * @module
- * @param {String} token The token to pass through the filter
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.stopWordFilter = function (token) {
- if (lunr.stopWordFilter.stopWords.indexOf(token) === -1) return token
-}
-
-lunr.stopWordFilter.stopWords = new lunr.SortedSet
-lunr.stopWordFilter.stopWords.length = 119
-lunr.stopWordFilter.stopWords.elements = [
- "",
- "a",
- "able",
- "about",
- "across",
- "after",
- "all",
- "almost",
- "also",
- "am",
- "among",
- "an",
- "and",
- "any",
- "are",
- "as",
- "at",
- "be",
- "because",
- "been",
- "but",
- "by",
- "can",
- "cannot",
- "could",
- "dear",
- "did",
- "do",
- "does",
- "either",
- "else",
- "ever",
- "every",
- "for",
- "from",
- "get",
- "got",
- "had",
- "has",
- "have",
- "he",
- "her",
- "hers",
- "him",
- "his",
- "how",
- "however",
- "i",
- "if",
- "in",
- "into",
- "is",
- "it",
- "its",
- "just",
- "least",
- "let",
- "like",
- "likely",
- "may",
- "me",
- "might",
- "most",
- "must",
- "my",
- "neither",
- "no",
- "nor",
- "not",
- "of",
- "off",
- "often",
- "on",
- "only",
- "or",
- "other",
- "our",
- "own",
- "rather",
- "said",
- "say",
- "says",
- "she",
- "should",
- "since",
- "so",
- "some",
- "than",
- "that",
- "the",
- "their",
- "them",
- "then",
- "there",
- "these",
- "they",
- "this",
- "tis",
- "to",
- "too",
- "twas",
- "us",
- "wants",
- "was",
- "we",
- "were",
- "what",
- "when",
- "where",
- "which",
- "while",
- "who",
- "whom",
- "why",
- "will",
- "with",
- "would",
- "yet",
- "you",
- "your"
-]
-
-lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')
diff --git a/public/browse/lib/lunr.js/lib/token_store.js b/public/browse/lib/lunr.js/lib/token_store.js
deleted file mode 100644
index f37813a1c7..0000000000
--- a/public/browse/lib/lunr.js/lib/token_store.js
+++ /dev/null
@@ -1,193 +0,0 @@
-/*!
- * lunr.stemmer
- * Copyright (C) @YEAR Oliver Nightingale
- * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
- */
-
-/**
- * lunr.TokenStore is used for efficient storing and lookup of the reverse
- * index of token to document ref.
- *
- * @constructor
- */
-lunr.TokenStore = function () {
- this.root = { docs: {} }
- this.length = 0
-}
-
-/**
- * Loads a previously serialised token store
- *
- * @param {Object} serialisedData The serialised token store to load.
- * @returns {lunr.TokenStore}
- * @memberOf TokenStore
- */
-lunr.TokenStore.load = function (serialisedData) {
- var store = new this
-
- store.root = serialisedData.root
- store.length = serialisedData.length
-
- return store
-}
-
-/**
- * Adds a new token doc pair to the store.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to store the doc under
- * @param {Object} doc The doc to store against the token
- * @param {Object} root An optional node at which to start looking for the
- * correct place to enter the doc, by default the root of this lunr.TokenStore
- * is used.
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.add = function (token, doc, root) {
- var root = root || this.root,
- key = token[0],
- rest = token.slice(1)
-
- if (!(key in root)) root[key] = {docs: {}}
-
- if (rest.length === 0) {
- root[key].docs[doc.ref] = doc
- this.length += 1
- return
- } else {
- return this.add(rest, doc, root[key])
- }
-}
-
-/**
- * Checks whether this key is contained within this lunr.TokenStore.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to check for
- * @param {Object} root An optional node at which to start
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.has = function (token) {
- if (!token) return false
-
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!node[token[i]]) return false
-
- node = node[token[i]]
- }
-
- return true
-}
-
-/**
- * Retrieve a node from the token store for a given token.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the node for.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @see TokenStore.prototype.get
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.getNode = function (token) {
- if (!token) return {}
-
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!node[token[i]]) return {}
-
- node = node[token[i]]
- }
-
- return node
-}
-
-/**
- * Retrieve the documents for a node for the given token.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the documents for.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.get = function (token, root) {
- return this.getNode(token, root).docs || {}
-}
-
-lunr.TokenStore.prototype.count = function (token, root) {
- return Object.keys(this.get(token, root)).length
-}
-
-/**
- * Remove the document identified by ref from the token in the store.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the documents for.
- * @param {String} ref The ref of the document to remove from this token.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.remove = function (token, ref) {
- if (!token) return
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!(token[i] in node)) return
- node = node[token[i]]
- }
-
- delete node.docs[ref]
-}
-
-/**
- * Find all the possible suffixes of the passed token using tokens
- * currently in the store.
- *
- * @param {String} token The token to expand.
- * @returns {Array}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.expand = function (token, memo) {
- var root = this.getNode(token),
- docs = root.docs || {},
- memo = memo || []
-
- if (Object.keys(docs).length) memo.push(token)
-
- Object.keys(root)
- .forEach(function (key) {
- if (key === 'docs') return
-
- memo.concat(this.expand(token + key, memo))
- }, this)
-
- return memo
-}
-
-/**
- * Returns a representation of the token store ready for serialisation.
- *
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.toJSON = function () {
- return {
- root: this.root,
- length: this.length
- }
-}
-
diff --git a/public/browse/lib/lunr.js/lib/tokenizer.js b/public/browse/lib/lunr.js/lib/tokenizer.js
deleted file mode 100644
index 4a50f56db4..0000000000
--- a/public/browse/lib/lunr.js/lib/tokenizer.js
+++ /dev/null
@@ -1,35 +0,0 @@
-/*!
- * lunr.tokenizer
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * A function for splitting a string into tokens ready to be inserted into
- * the search index.
- *
- * @module
- * @param {String} obj The string to convert into tokens
- * @returns {Array}
- */
-lunr.tokenizer = function (obj) {
- if (!arguments.length || obj == null || obj == undefined) return []
- if (Array.isArray(obj)) return obj.map(function (t) { return t.toLowerCase() })
-
- var str = obj.toString().replace(/^\s+/, '')
-
- for (var i = str.length - 1; i >= 0; i--) {
- if (/\S/.test(str.charAt(i))) {
- str = str.substring(0, i + 1)
- break
- }
- }
-
- return str
- .split(/(?:\s+|\-)/)
- .filter(function (token) {
- return !!token
- })
- .map(function (token) {
- return token.toLowerCase()
- })
-}
diff --git a/public/browse/lib/lunr.js/lib/trimmer.js b/public/browse/lib/lunr.js/lib/trimmer.js
deleted file mode 100644
index 08ed0ca6b1..0000000000
--- a/public/browse/lib/lunr.js/lib/trimmer.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/*!
- * lunr.trimmer
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.trimmer is a pipeline function for trimming non word
- * characters from the begining and end of tokens before they
- * enter the index.
- *
- * This implementation may not work correctly for non latin
- * characters and should either be removed or adapted for use
- * with languages with non-latin characters.
- *
- * @module
- * @param {String} token The token to pass through the filter
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.trimmer = function (token) {
- return token
- .replace(/^\W+/, '')
- .replace(/\W+$/, '')
-}
-
-lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')
diff --git a/public/browse/lib/lunr.js/lib/utils.js b/public/browse/lib/lunr.js/lib/utils.js
deleted file mode 100644
index 883470545a..0000000000
--- a/public/browse/lib/lunr.js/lib/utils.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/*!
- * lunr.utils
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * A namespace containing utils for the rest of the lunr library
- */
-lunr.utils = {}
-
-/**
- * Print a warning message to the console.
- *
- * @param {String} message The message to be printed.
- * @memberOf Utils
- */
-lunr.utils.warn = (function (global) {
- return function (message) {
- if (global.console && console.warn) {
- console.warn(message)
- }
- }
-})(this)
-
diff --git a/public/browse/lib/lunr.js/lib/vector.js b/public/browse/lib/lunr.js/lib/vector.js
deleted file mode 100644
index 0351a53164..0000000000
--- a/public/browse/lib/lunr.js/lib/vector.js
+++ /dev/null
@@ -1,125 +0,0 @@
-/*!
- * lunr.Vector
- * Copyright (C) @YEAR Oliver Nightingale
- */
-
-/**
- * lunr.Vectors implement vector related operations for
- * a series of elements.
- *
- * @constructor
- */
-lunr.Vector = function () {
- this._magnitude = null
- this.list = undefined
- this.length = 0
-}
-
-/**
- * lunr.Vector.Node is a simple struct for each node
- * in a lunr.Vector.
- *
- * @private
- * @param {Number} The index of the node in the vector.
- * @param {Object} The data at this node in the vector.
- * @param {lunr.Vector.Node} The node directly after this node in the vector.
- * @constructor
- * @memberOf Vector
- */
-lunr.Vector.Node = function (idx, val, next) {
- this.idx = idx
- this.val = val
- this.next = next
-}
-
-/**
- * Inserts a new value at a position in a vector.
- *
- * @param {Number} The index at which to insert a value.
- * @param {Object} The object to insert in the vector.
- * @memberOf Vector.
- */
-lunr.Vector.prototype.insert = function (idx, val) {
- var list = this.list
-
- if (!list) {
- this.list = new lunr.Vector.Node (idx, val, list)
- return this.length++
- }
-
- var prev = list,
- next = list.next
-
- while (next != undefined) {
- if (idx < next.idx) {
- prev.next = new lunr.Vector.Node (idx, val, next)
- return this.length++
- }
-
- prev = next, next = next.next
- }
-
- prev.next = new lunr.Vector.Node (idx, val, next)
- return this.length++
-}
-
-/**
- * Calculates the magnitude of this vector.
- *
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.magnitude = function () {
- if (this._magniture) return this._magnitude
- var node = this.list,
- sumOfSquares = 0,
- val
-
- while (node) {
- val = node.val
- sumOfSquares += val * val
- node = node.next
- }
-
- return this._magnitude = Math.sqrt(sumOfSquares)
-}
-
-/**
- * Calculates the dot product of this vector and another vector.
- *
- * @param {lunr.Vector} otherVector The vector to compute the dot product with.
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.dot = function (otherVector) {
- var node = this.list,
- otherNode = otherVector.list,
- dotProduct = 0
-
- while (node && otherNode) {
- if (node.idx < otherNode.idx) {
- node = node.next
- } else if (node.idx > otherNode.idx) {
- otherNode = otherNode.next
- } else {
- dotProduct += node.val * otherNode.val
- node = node.next
- otherNode = otherNode.next
- }
- }
-
- return dotProduct
-}
-
-/**
- * Calculates the cosine similarity between this vector and another
- * vector.
- *
- * @param {lunr.Vector} otherVector The other vector to calculate the
- * similarity with.
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.similarity = function (otherVector) {
- return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())
-}
diff --git a/public/browse/lib/lunr.js/lunr.js b/public/browse/lib/lunr.js/lunr.js
deleted file mode 100644
index c1abb1d853..0000000000
--- a/public/browse/lib/lunr.js/lunr.js
+++ /dev/null
@@ -1,1882 +0,0 @@
-/**
- * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.5.6
- * Copyright (C) 2014 Oliver Nightingale
- * MIT Licensed
- * @license
- */
-
-(function(){
-
-/**
- * Convenience function for instantiating a new lunr index and configuring it
- * with the default pipeline functions and the passed config function.
- *
- * When using this convenience function a new index will be created with the
- * following functions already in the pipeline:
- *
- * lunr.StopWordFilter - filters out any stop words before they enter the
- * index
- *
- * lunr.stemmer - stems the tokens before entering the index.
- *
- * Example:
- *
- * var idx = lunr(function () {
- * this.field('title', 10)
- * this.field('tags', 100)
- * this.field('body')
- *
- * this.ref('cid')
- *
- * this.pipeline.add(function () {
- * // some custom pipeline function
- * })
- *
- * })
- *
- * @param {Function} config A function that will be called with the new instance
- * of the lunr.Index as both its context and first parameter. It can be used to
- * customize the instance of new lunr.Index.
- * @namespace
- * @module
- * @returns {lunr.Index}
- *
- */
-var lunr = function (config) {
- var idx = new lunr.Index
-
- idx.pipeline.add(
- lunr.trimmer,
- lunr.stopWordFilter,
- lunr.stemmer
- )
-
- if (config) config.call(idx, idx)
-
- return idx
-}
-
-lunr.version = "0.5.6"
-/*!
- * lunr.utils
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * A namespace containing utils for the rest of the lunr library
- */
-lunr.utils = {}
-
-/**
- * Print a warning message to the console.
- *
- * @param {String} message The message to be printed.
- * @memberOf Utils
- */
-lunr.utils.warn = (function (global) {
- return function (message) {
- if (global.console && console.warn) {
- console.warn(message)
- }
- }
-})(this)
-
-/*!
- * lunr.EventEmitter
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.
- *
- * @constructor
- */
-lunr.EventEmitter = function () {
- this.events = {}
-}
-
-/**
- * Binds a handler function to a specific event(s).
- *
- * Can bind a single function to many different events in one call.
- *
- * @param {String} [eventName] The name(s) of events to bind this function to.
- * @param {Function} handler The function to call when an event is fired.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.addListener = function () {
- var args = Array.prototype.slice.call(arguments),
- fn = args.pop(),
- names = args
-
- if (typeof fn !== "function") throw new TypeError ("last argument must be a function")
-
- names.forEach(function (name) {
- if (!this.hasHandler(name)) this.events[name] = []
- this.events[name].push(fn)
- }, this)
-}
-
-/**
- * Removes a handler function from a specific event.
- *
- * @param {String} eventName The name of the event to remove this function from.
- * @param {Function} handler The function to remove from an event.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.removeListener = function (name, fn) {
- if (!this.hasHandler(name)) return
-
- var fnIndex = this.events[name].indexOf(fn)
- this.events[name].splice(fnIndex, 1)
-
- if (!this.events[name].length) delete this.events[name]
-}
-
-/**
- * Calls all functions bound to the given event.
- *
- * Additional data can be passed to the event handler as arguments to `emit`
- * after the event name.
- *
- * @param {String} eventName The name of the event to emit.
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.emit = function (name) {
- if (!this.hasHandler(name)) return
-
- var args = Array.prototype.slice.call(arguments, 1)
-
- this.events[name].forEach(function (fn) {
- fn.apply(undefined, args)
- })
-}
-
-/**
- * Checks whether a handler has ever been stored against an event.
- *
- * @param {String} eventName The name of the event to check.
- * @private
- * @memberOf EventEmitter
- */
-lunr.EventEmitter.prototype.hasHandler = function (name) {
- return name in this.events
-}
-
-/*!
- * lunr.tokenizer
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * A function for splitting a string into tokens ready to be inserted into
- * the search index.
- *
- * @module
- * @param {String} obj The string to convert into tokens
- * @returns {Array}
- */
-lunr.tokenizer = function (obj) {
- if (!arguments.length || obj == null || obj == undefined) return []
- if (Array.isArray(obj)) return obj.map(function (t) { return t.toLowerCase() })
-
- var str = obj.toString().replace(/^\s+/, '')
-
- for (var i = str.length - 1; i >= 0; i--) {
- if (/\S/.test(str.charAt(i))) {
- str = str.substring(0, i + 1)
- break
- }
- }
-
- return str
- .split(/(?:\s+|\-)/)
- .filter(function (token) {
- return !!token
- })
- .map(function (token) {
- return token.toLowerCase()
- })
-}
-/*!
- * lunr.Pipeline
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.Pipelines maintain an ordered list of functions to be applied to all
- * tokens in documents entering the search index and queries being ran against
- * the index.
- *
- * An instance of lunr.Index created with the lunr shortcut will contain a
- * pipeline with a stop word filter and an English language stemmer. Extra
- * functions can be added before or after either of these functions or these
- * default functions can be removed.
- *
- * When run the pipeline will call each function in turn, passing a token, the
- * index of that token in the original list of all tokens and finally a list of
- * all the original tokens.
- *
- * The output of functions in the pipeline will be passed to the next function
- * in the pipeline. To exclude a token from entering the index the function
- * should return undefined, the rest of the pipeline will not be called with
- * this token.
- *
- * For serialisation of pipelines to work, all functions used in an instance of
- * a pipeline should be registered with lunr.Pipeline. Registered functions can
- * then be loaded. If trying to load a serialised pipeline that uses functions
- * that are not registered an error will be thrown.
- *
- * If not planning on serialising the pipeline then registering pipeline functions
- * is not necessary.
- *
- * @constructor
- */
-lunr.Pipeline = function () {
- this._stack = []
-}
-
-lunr.Pipeline.registeredFunctions = {}
-
-/**
- * Register a function with the pipeline.
- *
- * Functions that are used in the pipeline should be registered if the pipeline
- * needs to be serialised, or a serialised pipeline needs to be loaded.
- *
- * Registering a function does not add it to a pipeline, functions must still be
- * added to instances of the pipeline for them to be used when running a pipeline.
- *
- * @param {Function} fn The function to check for.
- * @param {String} label The label to register this function with
- * @memberOf Pipeline
- */
-lunr.Pipeline.registerFunction = function (fn, label) {
- if (label in this.registeredFunctions) {
- lunr.utils.warn('Overwriting existing registered function: ' + label)
- }
-
- fn.label = label
- lunr.Pipeline.registeredFunctions[fn.label] = fn
-}
-
-/**
- * Warns if the function is not registered as a Pipeline function.
- *
- * @param {Function} fn The function to check for.
- * @private
- * @memberOf Pipeline
- */
-lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {
- var isRegistered = fn.label && (fn.label in this.registeredFunctions)
-
- if (!isRegistered) {
- lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn)
- }
-}
-
-/**
- * Loads a previously serialised pipeline.
- *
- * All functions to be loaded must already be registered with lunr.Pipeline.
- * If any function from the serialised data has not been registered then an
- * error will be thrown.
- *
- * @param {Object} serialised The serialised pipeline to load.
- * @returns {lunr.Pipeline}
- * @memberOf Pipeline
- */
-lunr.Pipeline.load = function (serialised) {
- var pipeline = new lunr.Pipeline
-
- serialised.forEach(function (fnName) {
- var fn = lunr.Pipeline.registeredFunctions[fnName]
-
- if (fn) {
- pipeline.add(fn)
- } else {
- throw new Error ('Cannot load un-registered function: ' + fnName)
- }
- })
-
- return pipeline
-}
-
-/**
- * Adds new functions to the end of the pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} functions Any number of functions to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.add = function () {
- var fns = Array.prototype.slice.call(arguments)
-
- fns.forEach(function (fn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(fn)
- this._stack.push(fn)
- }, this)
-}
-
-/**
- * Adds a single function after a function that already exists in the
- * pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} existingFn A function that already exists in the pipeline.
- * @param {Function} newFn The new function to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.after = function (existingFn, newFn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
-
- var pos = this._stack.indexOf(existingFn) + 1
- this._stack.splice(pos, 0, newFn)
-}
-
-/**
- * Adds a single function before a function that already exists in the
- * pipeline.
- *
- * Logs a warning if the function has not been registered.
- *
- * @param {Function} existingFn A function that already exists in the pipeline.
- * @param {Function} newFn The new function to add to the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.before = function (existingFn, newFn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
-
- var pos = this._stack.indexOf(existingFn)
- this._stack.splice(pos, 0, newFn)
-}
-
-/**
- * Removes a function from the pipeline.
- *
- * @param {Function} fn The function to remove from the pipeline.
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.remove = function (fn) {
- var pos = this._stack.indexOf(fn)
- this._stack.splice(pos, 1)
-}
-
-/**
- * Runs the current list of functions that make up the pipeline against the
- * passed tokens.
- *
- * @param {Array} tokens The tokens to run through the pipeline.
- * @returns {Array}
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.run = function (tokens) {
- var out = [],
- tokenLength = tokens.length,
- stackLength = this._stack.length
-
- for (var i = 0; i < tokenLength; i++) {
- var token = tokens[i]
-
- for (var j = 0; j < stackLength; j++) {
- token = this._stack[j](token, i, tokens)
- if (token === void 0) break
- };
-
- if (token !== void 0) out.push(token)
- };
-
- return out
-}
-
-/**
- * Resets the pipeline by removing any existing processors.
- *
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.reset = function () {
- this._stack = []
-}
-
-/**
- * Returns a representation of the pipeline ready for serialisation.
- *
- * Logs a warning if the function has not been registered.
- *
- * @returns {Array}
- * @memberOf Pipeline
- */
-lunr.Pipeline.prototype.toJSON = function () {
- return this._stack.map(function (fn) {
- lunr.Pipeline.warnIfFunctionNotRegistered(fn)
-
- return fn.label
- })
-}
-/*!
- * lunr.Vector
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.Vectors implement vector related operations for
- * a series of elements.
- *
- * @constructor
- */
-lunr.Vector = function () {
- this._magnitude = null
- this.list = undefined
- this.length = 0
-}
-
-/**
- * lunr.Vector.Node is a simple struct for each node
- * in a lunr.Vector.
- *
- * @private
- * @param {Number} The index of the node in the vector.
- * @param {Object} The data at this node in the vector.
- * @param {lunr.Vector.Node} The node directly after this node in the vector.
- * @constructor
- * @memberOf Vector
- */
-lunr.Vector.Node = function (idx, val, next) {
- this.idx = idx
- this.val = val
- this.next = next
-}
-
-/**
- * Inserts a new value at a position in a vector.
- *
- * @param {Number} The index at which to insert a value.
- * @param {Object} The object to insert in the vector.
- * @memberOf Vector.
- */
-lunr.Vector.prototype.insert = function (idx, val) {
- var list = this.list
-
- if (!list) {
- this.list = new lunr.Vector.Node (idx, val, list)
- return this.length++
- }
-
- var prev = list,
- next = list.next
-
- while (next != undefined) {
- if (idx < next.idx) {
- prev.next = new lunr.Vector.Node (idx, val, next)
- return this.length++
- }
-
- prev = next, next = next.next
- }
-
- prev.next = new lunr.Vector.Node (idx, val, next)
- return this.length++
-}
-
-/**
- * Calculates the magnitude of this vector.
- *
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.magnitude = function () {
- if (this._magniture) return this._magnitude
- var node = this.list,
- sumOfSquares = 0,
- val
-
- while (node) {
- val = node.val
- sumOfSquares += val * val
- node = node.next
- }
-
- return this._magnitude = Math.sqrt(sumOfSquares)
-}
-
-/**
- * Calculates the dot product of this vector and another vector.
- *
- * @param {lunr.Vector} otherVector The vector to compute the dot product with.
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.dot = function (otherVector) {
- var node = this.list,
- otherNode = otherVector.list,
- dotProduct = 0
-
- while (node && otherNode) {
- if (node.idx < otherNode.idx) {
- node = node.next
- } else if (node.idx > otherNode.idx) {
- otherNode = otherNode.next
- } else {
- dotProduct += node.val * otherNode.val
- node = node.next
- otherNode = otherNode.next
- }
- }
-
- return dotProduct
-}
-
-/**
- * Calculates the cosine similarity between this vector and another
- * vector.
- *
- * @param {lunr.Vector} otherVector The other vector to calculate the
- * similarity with.
- * @returns {Number}
- * @memberOf Vector
- */
-lunr.Vector.prototype.similarity = function (otherVector) {
- return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())
-}
-/*!
- * lunr.SortedSet
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.SortedSets are used to maintain an array of uniq values in a sorted
- * order.
- *
- * @constructor
- */
-lunr.SortedSet = function () {
- this.length = 0
- this.elements = []
-}
-
-/**
- * Loads a previously serialised sorted set.
- *
- * @param {Array} serialisedData The serialised set to load.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.load = function (serialisedData) {
- var set = new this
-
- set.elements = serialisedData
- set.length = serialisedData.length
-
- return set
-}
-
-/**
- * Inserts new items into the set in the correct position to maintain the
- * order.
- *
- * @param {Object} The objects to add to this set.
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.add = function () {
- Array.prototype.slice.call(arguments).forEach(function (element) {
- if (~this.indexOf(element)) return
- this.elements.splice(this.locationFor(element), 0, element)
- }, this)
-
- this.length = this.elements.length
-}
-
-/**
- * Converts this sorted set into an array.
- *
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.toArray = function () {
- return this.elements.slice()
-}
-
-/**
- * Creates a new array with the results of calling a provided function on every
- * element in this sorted set.
- *
- * Delegates to Array.prototype.map and has the same signature.
- *
- * @param {Function} fn The function that is called on each element of the
- * set.
- * @param {Object} ctx An optional object that can be used as the context
- * for the function fn.
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.map = function (fn, ctx) {
- return this.elements.map(fn, ctx)
-}
-
-/**
- * Executes a provided function once per sorted set element.
- *
- * Delegates to Array.prototype.forEach and has the same signature.
- *
- * @param {Function} fn The function that is called on each element of the
- * set.
- * @param {Object} ctx An optional object that can be used as the context
- * @memberOf SortedSet
- * for the function fn.
- */
-lunr.SortedSet.prototype.forEach = function (fn, ctx) {
- return this.elements.forEach(fn, ctx)
-}
-
-/**
- * Returns the index at which a given element can be found in the
- * sorted set, or -1 if it is not present.
- *
- * @param {Object} elem The object to locate in the sorted set.
- * @param {Number} start An optional index at which to start searching from
- * within the set.
- * @param {Number} end An optional index at which to stop search from within
- * the set.
- * @returns {Number}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.indexOf = function (elem, start, end) {
- var start = start || 0,
- end = end || this.elements.length,
- sectionLength = end - start,
- pivot = start + Math.floor(sectionLength / 2),
- pivotElem = this.elements[pivot]
-
- if (sectionLength <= 1) {
- if (pivotElem === elem) {
- return pivot
- } else {
- return -1
- }
- }
-
- if (pivotElem < elem) return this.indexOf(elem, pivot, end)
- if (pivotElem > elem) return this.indexOf(elem, start, pivot)
- if (pivotElem === elem) return pivot
-}
-
-/**
- * Returns the position within the sorted set that an element should be
- * inserted at to maintain the current order of the set.
- *
- * This function assumes that the element to search for does not already exist
- * in the sorted set.
- *
- * @param {Object} elem The elem to find the position for in the set
- * @param {Number} start An optional index at which to start searching from
- * within the set.
- * @param {Number} end An optional index at which to stop search from within
- * the set.
- * @returns {Number}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.locationFor = function (elem, start, end) {
- var start = start || 0,
- end = end || this.elements.length,
- sectionLength = end - start,
- pivot = start + Math.floor(sectionLength / 2),
- pivotElem = this.elements[pivot]
-
- if (sectionLength <= 1) {
- if (pivotElem > elem) return pivot
- if (pivotElem < elem) return pivot + 1
- }
-
- if (pivotElem < elem) return this.locationFor(elem, pivot, end)
- if (pivotElem > elem) return this.locationFor(elem, start, pivot)
-}
-
-/**
- * Creates a new lunr.SortedSet that contains the elements in the intersection
- * of this set and the passed set.
- *
- * @param {lunr.SortedSet} otherSet The set to intersect with this set.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.intersect = function (otherSet) {
- var intersectSet = new lunr.SortedSet,
- i = 0, j = 0,
- a_len = this.length, b_len = otherSet.length,
- a = this.elements, b = otherSet.elements
-
- while (true) {
- if (i > a_len - 1 || j > b_len - 1) break
-
- if (a[i] === b[j]) {
- intersectSet.add(a[i])
- i++, j++
- continue
- }
-
- if (a[i] < b[j]) {
- i++
- continue
- }
-
- if (a[i] > b[j]) {
- j++
- continue
- }
- };
-
- return intersectSet
-}
-
-/**
- * Makes a copy of this set
- *
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.clone = function () {
- var clone = new lunr.SortedSet
-
- clone.elements = this.toArray()
- clone.length = clone.elements.length
-
- return clone
-}
-
-/**
- * Creates a new lunr.SortedSet that contains the elements in the union
- * of this set and the passed set.
- *
- * @param {lunr.SortedSet} otherSet The set to union with this set.
- * @returns {lunr.SortedSet}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.union = function (otherSet) {
- var longSet, shortSet, unionSet
-
- if (this.length >= otherSet.length) {
- longSet = this, shortSet = otherSet
- } else {
- longSet = otherSet, shortSet = this
- }
-
- unionSet = longSet.clone()
-
- unionSet.add.apply(unionSet, shortSet.toArray())
-
- return unionSet
-}
-
-/**
- * Returns a representation of the sorted set ready for serialisation.
- *
- * @returns {Array}
- * @memberOf SortedSet
- */
-lunr.SortedSet.prototype.toJSON = function () {
- return this.toArray()
-}
-/*!
- * lunr.Index
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.Index is object that manages a search index. It contains the indexes
- * and stores all the tokens and document lookups. It also provides the main
- * user facing API for the library.
- *
- * @constructor
- */
-lunr.Index = function () {
- this._fields = []
- this._ref = 'id'
- this.pipeline = new lunr.Pipeline
- this.documentStore = new lunr.Store
- this.tokenStore = new lunr.TokenStore
- this.corpusTokens = new lunr.SortedSet
- this.eventEmitter = new lunr.EventEmitter
-
- this._idfCache = {}
-
- this.on('add', 'remove', 'update', (function () {
- this._idfCache = {}
- }).bind(this))
-}
-
-/**
- * Bind a handler to events being emitted by the index.
- *
- * The handler can be bound to many events at the same time.
- *
- * @param {String} [eventName] The name(s) of events to bind the function to.
- * @param {Function} handler The serialised set to load.
- * @memberOf Index
- */
-lunr.Index.prototype.on = function () {
- var args = Array.prototype.slice.call(arguments)
- return this.eventEmitter.addListener.apply(this.eventEmitter, args)
-}
-
-/**
- * Removes a handler from an event being emitted by the index.
- *
- * @param {String} eventName The name of events to remove the function from.
- * @param {Function} handler The serialised set to load.
- * @memberOf Index
- */
-lunr.Index.prototype.off = function (name, fn) {
- return this.eventEmitter.removeListener(name, fn)
-}
-
-/**
- * Loads a previously serialised index.
- *
- * Issues a warning if the index being imported was serialised
- * by a different version of lunr.
- *
- * @param {Object} serialisedData The serialised set to load.
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.load = function (serialisedData) {
- if (serialisedData.version !== lunr.version) {
- lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)
- }
-
- var idx = new this
-
- idx._fields = serialisedData.fields
- idx._ref = serialisedData.ref
-
- idx.documentStore = lunr.Store.load(serialisedData.documentStore)
- idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)
- idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)
- idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)
-
- return idx
-}
-
-/**
- * Adds a field to the list of fields that will be searchable within documents
- * in the index.
- *
- * An optional boost param can be passed to affect how much tokens in this field
- * rank in search results, by default the boost value is 1.
- *
- * Fields should be added before any documents are added to the index, fields
- * that are added after documents are added to the index will only apply to new
- * documents added to the index.
- *
- * @param {String} fieldName The name of the field within the document that
- * should be indexed
- * @param {Number} boost An optional boost that can be applied to terms in this
- * field.
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.prototype.field = function (fieldName, opts) {
- var opts = opts || {},
- field = { name: fieldName, boost: opts.boost || 1 }
-
- this._fields.push(field)
- return this
-}
-
-/**
- * Sets the property used to uniquely identify documents added to the index,
- * by default this property is 'id'.
- *
- * This should only be changed before adding documents to the index, changing
- * the ref property without resetting the index can lead to unexpected results.
- *
- * @param {String} refName The property to use to uniquely identify the
- * documents in the index.
- * @param {Boolean} emitEvent Whether to emit add events, defaults to true
- * @returns {lunr.Index}
- * @memberOf Index
- */
-lunr.Index.prototype.ref = function (refName) {
- this._ref = refName
- return this
-}
-
-/**
- * Add a document to the index.
- *
- * This is the way new documents enter the index, this function will run the
- * fields from the document through the index's pipeline and then add it to
- * the index, it will then show up in search results.
- *
- * An 'add' event is emitted with the document that has been added and the index
- * the document has been added to. This event can be silenced by passing false
- * as the second argument to add.
- *
- * @param {Object} doc The document to add to the index.
- * @param {Boolean} emitEvent Whether or not to emit events, default true.
- * @memberOf Index
- */
-lunr.Index.prototype.add = function (doc, emitEvent) {
- var docTokens = {},
- allDocumentTokens = new lunr.SortedSet,
- docRef = doc[this._ref],
- emitEvent = emitEvent === undefined ? true : emitEvent
-
- this._fields.forEach(function (field) {
- var fieldTokens = this.pipeline.run(lunr.tokenizer(doc[field.name]))
-
- docTokens[field.name] = fieldTokens
- lunr.SortedSet.prototype.add.apply(allDocumentTokens, fieldTokens)
- }, this)
-
- this.documentStore.set(docRef, allDocumentTokens)
- lunr.SortedSet.prototype.add.apply(this.corpusTokens, allDocumentTokens.toArray())
-
- for (var i = 0; i < allDocumentTokens.length; i++) {
- var token = allDocumentTokens.elements[i]
- var tf = this._fields.reduce(function (memo, field) {
- var fieldLength = docTokens[field.name].length
-
- if (!fieldLength) return memo
-
- var tokenCount = docTokens[field.name].filter(function (t) { return t === token }).length
-
- return memo + (tokenCount / fieldLength * field.boost)
- }, 0)
-
- this.tokenStore.add(token, { ref: docRef, tf: tf })
- };
-
- if (emitEvent) this.eventEmitter.emit('add', doc, this)
-}
-
-/**
- * Removes a document from the index.
- *
- * To make sure documents no longer show up in search results they can be
- * removed from the index using this method.
- *
- * The document passed only needs to have the same ref property value as the
- * document that was added to the index, they could be completely different
- * objects.
- *
- * A 'remove' event is emitted with the document that has been removed and the index
- * the document has been removed from. This event can be silenced by passing false
- * as the second argument to remove.
- *
- * @param {Object} doc The document to remove from the index.
- * @param {Boolean} emitEvent Whether to emit remove events, defaults to true
- * @memberOf Index
- */
-lunr.Index.prototype.remove = function (doc, emitEvent) {
- var docRef = doc[this._ref],
- emitEvent = emitEvent === undefined ? true : emitEvent
-
- if (!this.documentStore.has(docRef)) return
-
- var docTokens = this.documentStore.get(docRef)
-
- this.documentStore.remove(docRef)
-
- docTokens.forEach(function (token) {
- this.tokenStore.remove(token, docRef)
- }, this)
-
- if (emitEvent) this.eventEmitter.emit('remove', doc, this)
-}
-
-/**
- * Updates a document in the index.
- *
- * When a document contained within the index gets updated, fields changed,
- * added or removed, to make sure it correctly matched against search queries,
- * it should be updated in the index.
- *
- * This method is just a wrapper around `remove` and `add`
- *
- * An 'update' event is emitted with the document that has been updated and the index.
- * This event can be silenced by passing false as the second argument to update. Only
- * an update event will be fired, the 'add' and 'remove' events of the underlying calls
- * are silenced.
- *
- * @param {Object} doc The document to update in the index.
- * @param {Boolean} emitEvent Whether to emit update events, defaults to true
- * @see Index.prototype.remove
- * @see Index.prototype.add
- * @memberOf Index
- */
-lunr.Index.prototype.update = function (doc, emitEvent) {
- var emitEvent = emitEvent === undefined ? true : emitEvent
-
- this.remove(doc, false)
- this.add(doc, false)
-
- if (emitEvent) this.eventEmitter.emit('update', doc, this)
-}
-
-/**
- * Calculates the inverse document frequency for a token within the index.
- *
- * @param {String} token The token to calculate the idf of.
- * @see Index.prototype.idf
- * @private
- * @memberOf Index
- */
-lunr.Index.prototype.idf = function (term) {
- var cacheKey = "@" + term
- if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]
-
- var documentFrequency = this.tokenStore.count(term),
- idf = 1
-
- if (documentFrequency > 0) {
- idf = 1 + Math.log(this.tokenStore.length / documentFrequency)
- }
-
- return this._idfCache[cacheKey] = idf
-}
-
-/**
- * Searches the index using the passed query.
- *
- * Queries should be a string, multiple words are allowed and will lead to an
- * AND based query, e.g. `idx.search('foo bar')` will run a search for
- * documents containing both 'foo' and 'bar'.
- *
- * All query tokens are passed through the same pipeline that document tokens
- * are passed through, so any language processing involved will be run on every
- * query term.
- *
- * Each query term is expanded, so that the term 'he' might be expanded to
- * 'hello' and 'help' if those terms were already included in the index.
- *
- * Matching documents are returned as an array of objects, each object contains
- * the matching document ref, as set for this index, and the similarity score
- * for this document against the query.
- *
- * @param {String} query The query to search the index with.
- * @returns {Object}
- * @see Index.prototype.idf
- * @see Index.prototype.documentVector
- * @memberOf Index
- */
-lunr.Index.prototype.search = function (query) {
- var queryTokens = this.pipeline.run(lunr.tokenizer(query)),
- queryVector = new lunr.Vector,
- documentSets = [],
- fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)
-
- var hasSomeToken = queryTokens.some(function (token) {
- return this.tokenStore.has(token)
- }, this)
-
- if (!hasSomeToken) return []
-
- queryTokens
- .forEach(function (token, i, tokens) {
- var tf = 1 / tokens.length * this._fields.length * fieldBoosts,
- self = this
-
- var set = this.tokenStore.expand(token).reduce(function (memo, key) {
- var pos = self.corpusTokens.indexOf(key),
- idf = self.idf(key),
- similarityBoost = 1,
- set = new lunr.SortedSet
-
- // if the expanded key is not an exact match to the token then
- // penalise the score for this key by how different the key is
- // to the token.
- if (key !== token) {
- var diff = Math.max(3, key.length - token.length)
- similarityBoost = 1 / Math.log(diff)
- }
-
- // calculate the query tf-idf score for this token
- // applying an similarityBoost to ensure exact matches
- // these rank higher than expanded terms
- if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)
-
- // add all the documents that have this key into a set
- Object.keys(self.tokenStore.get(key)).forEach(function (ref) { set.add(ref) })
-
- return memo.union(set)
- }, new lunr.SortedSet)
-
- documentSets.push(set)
- }, this)
-
- var documentSet = documentSets.reduce(function (memo, set) {
- return memo.intersect(set)
- })
-
- return documentSet
- .map(function (ref) {
- return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }
- }, this)
- .sort(function (a, b) {
- return b.score - a.score
- })
-}
-
-/**
- * Generates a vector containing all the tokens in the document matching the
- * passed documentRef.
- *
- * The vector contains the tf-idf score for each token contained in the
- * document with the passed documentRef. The vector will contain an element
- * for every token in the indexes corpus, if the document does not contain that
- * token the element will be 0.
- *
- * @param {Object} documentRef The ref to find the document with.
- * @returns {lunr.Vector}
- * @private
- * @memberOf Index
- */
-lunr.Index.prototype.documentVector = function (documentRef) {
- var documentTokens = this.documentStore.get(documentRef),
- documentTokensLength = documentTokens.length,
- documentVector = new lunr.Vector
-
- for (var i = 0; i < documentTokensLength; i++) {
- var token = documentTokens.elements[i],
- tf = this.tokenStore.get(token)[documentRef].tf,
- idf = this.idf(token)
-
- documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)
- };
-
- return documentVector
-}
-
-/**
- * Returns a representation of the index ready for serialisation.
- *
- * @returns {Object}
- * @memberOf Index
- */
-lunr.Index.prototype.toJSON = function () {
- return {
- version: lunr.version,
- fields: this._fields,
- ref: this._ref,
- documentStore: this.documentStore.toJSON(),
- tokenStore: this.tokenStore.toJSON(),
- corpusTokens: this.corpusTokens.toJSON(),
- pipeline: this.pipeline.toJSON()
- }
-}
-
-/**
- * Applies a plugin to the current index.
- *
- * A plugin is a function that is called with the index as its context.
- * Plugins can be used to customise or extend the behaviour the index
- * in some way. A plugin is just a function, that encapsulated the custom
- * behaviour that should be applied to the index.
- *
- * The plugin function will be called with the index as its argument, additional
- * arguments can also be passed when calling use. The function will be called
- * with the index as its context.
- *
- * Example:
- *
- * var myPlugin = function (idx, arg1, arg2) {
- * // `this` is the index to be extended
- * // apply any extensions etc here.
- * }
- *
- * var idx = lunr(function () {
- * this.use(myPlugin, 'arg1', 'arg2')
- * })
- *
- * @param {Function} plugin The plugin to apply.
- * @memberOf Index
- */
-lunr.Index.prototype.use = function (plugin) {
- var args = Array.prototype.slice.call(arguments, 1)
- args.unshift(this)
- plugin.apply(this, args)
-}
-/*!
- * lunr.Store
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.Store is a simple key-value store used for storing sets of tokens for
- * documents stored in index.
- *
- * @constructor
- * @module
- */
-lunr.Store = function () {
- this.store = {}
- this.length = 0
-}
-
-/**
- * Loads a previously serialised store
- *
- * @param {Object} serialisedData The serialised store to load.
- * @returns {lunr.Store}
- * @memberOf Store
- */
-lunr.Store.load = function (serialisedData) {
- var store = new this
-
- store.length = serialisedData.length
- store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {
- memo[key] = lunr.SortedSet.load(serialisedData.store[key])
- return memo
- }, {})
-
- return store
-}
-
-/**
- * Stores the given tokens in the store against the given id.
- *
- * @param {Object} id The key used to store the tokens against.
- * @param {Object} tokens The tokens to store against the key.
- * @memberOf Store
- */
-lunr.Store.prototype.set = function (id, tokens) {
- if (!this.has(id)) this.length++
- this.store[id] = tokens
-}
-
-/**
- * Retrieves the tokens from the store for a given key.
- *
- * @param {Object} id The key to lookup and retrieve from the store.
- * @returns {Object}
- * @memberOf Store
- */
-lunr.Store.prototype.get = function (id) {
- return this.store[id]
-}
-
-/**
- * Checks whether the store contains a key.
- *
- * @param {Object} id The id to look up in the store.
- * @returns {Boolean}
- * @memberOf Store
- */
-lunr.Store.prototype.has = function (id) {
- return id in this.store
-}
-
-/**
- * Removes the value for a key in the store.
- *
- * @param {Object} id The id to remove from the store.
- * @memberOf Store
- */
-lunr.Store.prototype.remove = function (id) {
- if (!this.has(id)) return
-
- delete this.store[id]
- this.length--
-}
-
-/**
- * Returns a representation of the store ready for serialisation.
- *
- * @returns {Object}
- * @memberOf Store
- */
-lunr.Store.prototype.toJSON = function () {
- return {
- store: this.store,
- length: this.length
- }
-}
-
-/*!
- * lunr.stemmer
- * Copyright (C) 2014 Oliver Nightingale
- * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
- */
-
-/**
- * lunr.stemmer is an english language stemmer, this is a JavaScript
- * implementation of the PorterStemmer taken from http://tartaurs.org/~martin
- *
- * @module
- * @param {String} str The string to stem
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.stemmer = (function(){
- var step2list = {
- "ational" : "ate",
- "tional" : "tion",
- "enci" : "ence",
- "anci" : "ance",
- "izer" : "ize",
- "bli" : "ble",
- "alli" : "al",
- "entli" : "ent",
- "eli" : "e",
- "ousli" : "ous",
- "ization" : "ize",
- "ation" : "ate",
- "ator" : "ate",
- "alism" : "al",
- "iveness" : "ive",
- "fulness" : "ful",
- "ousness" : "ous",
- "aliti" : "al",
- "iviti" : "ive",
- "biliti" : "ble",
- "logi" : "log"
- },
-
- step3list = {
- "icate" : "ic",
- "ative" : "",
- "alize" : "al",
- "iciti" : "ic",
- "ical" : "ic",
- "ful" : "",
- "ness" : ""
- },
-
- c = "[^aeiou]", // consonant
- v = "[aeiouy]", // vowel
- C = c + "[^aeiouy]*", // consonant sequence
- V = v + "[aeiou]*", // vowel sequence
-
- mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0
- meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1
- mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1
- s_v = "^(" + C + ")?" + v; // vowel in stem
-
- return function (w) {
- var stem,
- suffix,
- firstch,
- re,
- re2,
- re3,
- re4;
-
- if (w.length < 3) { return w; }
-
- firstch = w.substr(0,1);
- if (firstch == "y") {
- w = firstch.toUpperCase() + w.substr(1);
- }
-
- // Step 1a
- re = /^(.+?)(ss|i)es$/;
- re2 = /^(.+?)([^s])s$/;
-
- if (re.test(w)) { w = w.replace(re,"$1$2"); }
- else if (re2.test(w)) { w = w.replace(re2,"$1$2"); }
-
- // Step 1b
- re = /^(.+?)eed$/;
- re2 = /^(.+?)(ed|ing)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- re = new RegExp(mgr0);
- if (re.test(fp[1])) {
- re = /.$/;
- w = w.replace(re,"");
- }
- } else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1];
- re2 = new RegExp(s_v);
- if (re2.test(stem)) {
- w = stem;
- re2 = /(at|bl|iz)$/;
- re3 = new RegExp("([^aeiouylsz])\\1$");
- re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re2.test(w)) { w = w + "e"; }
- else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); }
- else if (re4.test(w)) { w = w + "e"; }
- }
- }
-
- // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)
- re = /^(.+?[^aeiou])y$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- w = stem + "i";
- }
-
- // Step 2
- re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem)) {
- w = stem + step2list[suffix];
- }
- }
-
- // Step 3
- re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- suffix = fp[2];
- re = new RegExp(mgr0);
- if (re.test(stem)) {
- w = stem + step3list[suffix];
- }
- }
-
- // Step 4
- re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
- re2 = /^(.+?)(s|t)(ion)$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- if (re.test(stem)) {
- w = stem;
- }
- } else if (re2.test(w)) {
- var fp = re2.exec(w);
- stem = fp[1] + fp[2];
- re2 = new RegExp(mgr1);
- if (re2.test(stem)) {
- w = stem;
- }
- }
-
- // Step 5
- re = /^(.+?)e$/;
- if (re.test(w)) {
- var fp = re.exec(w);
- stem = fp[1];
- re = new RegExp(mgr1);
- re2 = new RegExp(meq1);
- re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
- if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {
- w = stem;
- }
- }
-
- re = /ll$/;
- re2 = new RegExp(mgr1);
- if (re.test(w) && re2.test(w)) {
- re = /.$/;
- w = w.replace(re,"");
- }
-
- // and turn initial Y back to y
-
- if (firstch == "y") {
- w = firstch.toLowerCase() + w.substr(1);
- }
-
- return w;
- }
-})();
-
-lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')
-/*!
- * lunr.stopWordFilter
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.stopWordFilter is an English language stop word list filter, any words
- * contained in the list will not be passed through the filter.
- *
- * This is intended to be used in the Pipeline. If the token does not pass the
- * filter then undefined will be returned.
- *
- * @module
- * @param {String} token The token to pass through the filter
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.stopWordFilter = function (token) {
- if (lunr.stopWordFilter.stopWords.indexOf(token) === -1) return token
-}
-
-lunr.stopWordFilter.stopWords = new lunr.SortedSet
-lunr.stopWordFilter.stopWords.length = 119
-lunr.stopWordFilter.stopWords.elements = [
- "",
- "a",
- "able",
- "about",
- "across",
- "after",
- "all",
- "almost",
- "also",
- "am",
- "among",
- "an",
- "and",
- "any",
- "are",
- "as",
- "at",
- "be",
- "because",
- "been",
- "but",
- "by",
- "can",
- "cannot",
- "could",
- "dear",
- "did",
- "do",
- "does",
- "either",
- "else",
- "ever",
- "every",
- "for",
- "from",
- "get",
- "got",
- "had",
- "has",
- "have",
- "he",
- "her",
- "hers",
- "him",
- "his",
- "how",
- "however",
- "i",
- "if",
- "in",
- "into",
- "is",
- "it",
- "its",
- "just",
- "least",
- "let",
- "like",
- "likely",
- "may",
- "me",
- "might",
- "most",
- "must",
- "my",
- "neither",
- "no",
- "nor",
- "not",
- "of",
- "off",
- "often",
- "on",
- "only",
- "or",
- "other",
- "our",
- "own",
- "rather",
- "said",
- "say",
- "says",
- "she",
- "should",
- "since",
- "so",
- "some",
- "than",
- "that",
- "the",
- "their",
- "them",
- "then",
- "there",
- "these",
- "they",
- "this",
- "tis",
- "to",
- "too",
- "twas",
- "us",
- "wants",
- "was",
- "we",
- "were",
- "what",
- "when",
- "where",
- "which",
- "while",
- "who",
- "whom",
- "why",
- "will",
- "with",
- "would",
- "yet",
- "you",
- "your"
-]
-
-lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')
-/*!
- * lunr.trimmer
- * Copyright (C) 2014 Oliver Nightingale
- */
-
-/**
- * lunr.trimmer is a pipeline function for trimming non word
- * characters from the begining and end of tokens before they
- * enter the index.
- *
- * This implementation may not work correctly for non latin
- * characters and should either be removed or adapted for use
- * with languages with non-latin characters.
- *
- * @module
- * @param {String} token The token to pass through the filter
- * @returns {String}
- * @see lunr.Pipeline
- */
-lunr.trimmer = function (token) {
- return token
- .replace(/^\W+/, '')
- .replace(/\W+$/, '')
-}
-
-lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')
-/*!
- * lunr.stemmer
- * Copyright (C) 2014 Oliver Nightingale
- * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
- */
-
-/**
- * lunr.TokenStore is used for efficient storing and lookup of the reverse
- * index of token to document ref.
- *
- * @constructor
- */
-lunr.TokenStore = function () {
- this.root = { docs: {} }
- this.length = 0
-}
-
-/**
- * Loads a previously serialised token store
- *
- * @param {Object} serialisedData The serialised token store to load.
- * @returns {lunr.TokenStore}
- * @memberOf TokenStore
- */
-lunr.TokenStore.load = function (serialisedData) {
- var store = new this
-
- store.root = serialisedData.root
- store.length = serialisedData.length
-
- return store
-}
-
-/**
- * Adds a new token doc pair to the store.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to store the doc under
- * @param {Object} doc The doc to store against the token
- * @param {Object} root An optional node at which to start looking for the
- * correct place to enter the doc, by default the root of this lunr.TokenStore
- * is used.
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.add = function (token, doc, root) {
- var root = root || this.root,
- key = token[0],
- rest = token.slice(1)
-
- if (!(key in root)) root[key] = {docs: {}}
-
- if (rest.length === 0) {
- root[key].docs[doc.ref] = doc
- this.length += 1
- return
- } else {
- return this.add(rest, doc, root[key])
- }
-}
-
-/**
- * Checks whether this key is contained within this lunr.TokenStore.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to check for
- * @param {Object} root An optional node at which to start
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.has = function (token) {
- if (!token) return false
-
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!node[token[i]]) return false
-
- node = node[token[i]]
- }
-
- return true
-}
-
-/**
- * Retrieve a node from the token store for a given token.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the node for.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @see TokenStore.prototype.get
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.getNode = function (token) {
- if (!token) return {}
-
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!node[token[i]]) return {}
-
- node = node[token[i]]
- }
-
- return node
-}
-
-/**
- * Retrieve the documents for a node for the given token.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the documents for.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.get = function (token, root) {
- return this.getNode(token, root).docs || {}
-}
-
-lunr.TokenStore.prototype.count = function (token, root) {
- return Object.keys(this.get(token, root)).length
-}
-
-/**
- * Remove the document identified by ref from the token in the store.
- *
- * By default this function starts at the root of the current store, however
- * it can start at any node of any token store if required.
- *
- * @param {String} token The token to get the documents for.
- * @param {String} ref The ref of the document to remove from this token.
- * @param {Object} root An optional node at which to start.
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.remove = function (token, ref) {
- if (!token) return
- var node = this.root
-
- for (var i = 0; i < token.length; i++) {
- if (!(token[i] in node)) return
- node = node[token[i]]
- }
-
- delete node.docs[ref]
-}
-
-/**
- * Find all the possible suffixes of the passed token using tokens
- * currently in the store.
- *
- * @param {String} token The token to expand.
- * @returns {Array}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.expand = function (token, memo) {
- var root = this.getNode(token),
- docs = root.docs || {},
- memo = memo || []
-
- if (Object.keys(docs).length) memo.push(token)
-
- Object.keys(root)
- .forEach(function (key) {
- if (key === 'docs') return
-
- memo.concat(this.expand(token + key, memo))
- }, this)
-
- return memo
-}
-
-/**
- * Returns a representation of the token store ready for serialisation.
- *
- * @returns {Object}
- * @memberOf TokenStore
- */
-lunr.TokenStore.prototype.toJSON = function () {
- return {
- root: this.root,
- length: this.length
- }
-}
-
-
- /**
- * export the module via AMD, CommonJS or as a browser global
- * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js
- */
- ;(function (root, factory) {
- if (typeof define === 'function' && define.amd) {
- // AMD. Register as an anonymous module.
- define(factory)
- } else if (typeof exports === 'object') {
- /**
- * Node. Does not work with strict CommonJS, but
- * only CommonJS-like enviroments that support module.exports,
- * like Node.
- */
- module.exports = factory()
- } else {
- // Browser globals (root is window)
- root.lunr = factory()
- }
- }(this, function () {
- /**
- * Just return a value to define the module export.
- * This example returns an object, but the module
- * can return a function as the exported value.
- */
- return lunr
- }))
-})()
diff --git a/public/browse/lib/lunr.js/lunr.min.js b/public/browse/lib/lunr.js/lunr.min.js
deleted file mode 100644
index c1332c390a..0000000000
--- a/public/browse/lib/lunr.js/lunr.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.5.6
- * Copyright (C) 2014 Oliver Nightingale
- * MIT Licensed
- * @license
- */
-!function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.5.6",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(t){if(!arguments.length||null==t||void 0==t)return[];if(Array.isArray(t))return t.map(function(t){return t.toLowerCase()});for(var e=t.toString().replace(/^\s+/,""),n=e.length-1;n>=0;n--)if(/\S/.test(e.charAt(n))){e=e.substring(0,n+1);break}return e.split(/(?:\s+|\-)/).filter(function(t){return!!t}).map(function(t){return t.toLowerCase()})},t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.registeredFunctions[e];if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e)+1;this._stack.splice(i,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(e);this._stack.splice(i,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,i=this._stack.length,o=0;n>o;o++){for(var r=t[o],s=0;i>s&&(r=this._stack[s](r,o,t),void 0!==r);s++);void 0!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){var i=this.list;if(!i)return this.list=new t.Vector.Node(e,n,i),this.length++;for(var o=i,r=i.next;void 0!=r;){if(en.idx?n=n.next:(i+=e.val*n.val,e=e.next,n=n.next);return i},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){Array.prototype.slice.call(arguments).forEach(function(t){~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t)},this),this.length=this.elements.length},t.SortedSet.prototype.toArray=function(){return this.elements.slice()},t.SortedSet.prototype.map=function(t,e){return this.elements.map(t,e)},t.SortedSet.prototype.forEach=function(t,e){return this.elements.forEach(t,e)},t.SortedSet.prototype.indexOf=function(t,e,n){var e=e||0,n=n||this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];return 1>=i?r===t?o:-1:t>r?this.indexOf(t,o,n):r>t?this.indexOf(t,e,o):r===t?o:void 0},t.SortedSet.prototype.locationFor=function(t,e,n){var e=e||0,n=n||this.elements.length,i=n-e,o=e+Math.floor(i/2),r=this.elements[o];if(1>=i){if(r>t)return o;if(t>r)return o+1}return t>r?this.locationFor(t,o,n):r>t?this.locationFor(t,e,o):void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,i=0,o=0,r=this.length,s=e.length,a=this.elements,h=e.elements;;){if(i>r-1||o>s-1)break;a[i]!==h[o]?a[i]h[o]&&o++:(n.add(a[i]),i++,o++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,i;return this.length>=t.length?(e=this,n=t):(e=t,n=this),i=e.clone(),i.add.apply(i,n.toArray()),i},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var i={},o=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));i[n.name]=r,t.SortedSet.prototype.add.apply(o,r)},this),this.documentStore.set(r,o),t.SortedSet.prototype.add.apply(this.corpusTokens,o.toArray());for(var s=0;s0&&(i=1+Math.log(this.tokenStore.length/n)),this._idfCache[e]=i},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),i=new t.Vector,o=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,h=this,u=this.tokenStore.expand(e).reduce(function(n,o){var r=h.corpusTokens.indexOf(o),s=h.idf(o),u=1,l=new t.SortedSet;if(o!==e){var c=Math.max(3,o.length-e.length);u=1/Math.log(c)}return r>-1&&i.insert(r,a*s*u),Object.keys(h.tokenStore.get(o)).forEach(function(t){l.add(t)}),n.union(l)},new t.SortedSet);o.push(u)},this);var a=o.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:i.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),i=n.length,o=new t.Vector,r=0;i>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,h=this.idf(s);o.insert(this.corpusTokens.indexOf(s),a*h)}return o},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,i){return n[i]=t.SortedSet.load(e.store[i]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,a="^("+o+")?"+r+o+"("+r+")?$",h="^("+o+")?"+r+o+r+o,u="^("+o+")?"+i;return function(n){var r,l,c,p,f,d,v;if(n.length<3)return n;if(c=n.substr(0,1),"y"==c&&(n=c.toUpperCase()+n.substr(1)),p=/^(.+?)(ss|i)es$/,f=/^(.+?)([^s])s$/,p.test(n)?n=n.replace(p,"$1$2"):f.test(n)&&(n=n.replace(f,"$1$2")),p=/^(.+?)eed$/,f=/^(.+?)(ed|ing)$/,p.test(n)){var m=p.exec(n);p=new RegExp(s),p.test(m[1])&&(p=/.$/,n=n.replace(p,""))}else if(f.test(n)){var m=f.exec(n);r=m[1],f=new RegExp(u),f.test(r)&&(n=r,f=/(at|bl|iz)$/,d=new RegExp("([^aeiouylsz])\\1$"),v=new RegExp("^"+o+i+"[^aeiouwxy]$"),f.test(n)?n+="e":d.test(n)?(p=/.$/,n=n.replace(p,"")):v.test(n)&&(n+="e"))}if(p=/^(.+?[^aeiou])y$/,p.test(n)){var m=p.exec(n);r=m[1],n=r+"i"}if(p=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,p.test(n)){var m=p.exec(n);r=m[1],l=m[2],p=new RegExp(s),p.test(r)&&(n=r+t[l])}if(p=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,p.test(n)){var m=p.exec(n);r=m[1],l=m[2],p=new RegExp(s),p.test(r)&&(n=r+e[l])}if(p=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,f=/^(.+?)(s|t)(ion)$/,p.test(n)){var m=p.exec(n);r=m[1],p=new RegExp(h),p.test(r)&&(n=r)}else if(f.test(n)){var m=f.exec(n);r=m[1]+m[2],f=new RegExp(h),f.test(r)&&(n=r)}if(p=/^(.+?)e$/,p.test(n)){var m=p.exec(n);r=m[1],p=new RegExp(h),f=new RegExp(a),d=new RegExp("^"+o+i+"[^aeiouwxy]$"),(p.test(r)||f.test(r)&&!d.test(r))&&(n=r)}return p=/ll$/,f=new RegExp(h),p.test(n)&&f.test(n)&&(p=/.$/,n=n.replace(p,"")),"y"==c&&(n=c.toLowerCase()+n.substr(1)),n}}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return-1===t.stopWordFilter.stopWords.indexOf(e)?e:void 0},t.stopWordFilter.stopWords=new t.SortedSet,t.stopWordFilter.stopWords.length=119,t.stopWordFilter.stopWords.elements=["","a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"],t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){return t.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,i=t[0],o=t.slice(1);return i in n||(n[i]={docs:{}}),0===o.length?(n[i].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[i])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n>>0,e=b===void 0||b===null;for(var f=0;f>>0,e=b===void 0||b===null,f=[];for(var g=0;g>>0,e=b===void 0||b===null;for(var f=0;f>>0,e=b!==void 0&&b!==null;if(d===0)return-1;var f=0;e&&(f=Number(b),f!==f?f=0:f!==0&&f!==Infinity&&f!==-Infinity&&(f=(f>0||-1)*Math.floor(Math.abs(f))));if(f>=d)return-1;var g=f>=0?f:Math.max(d-Math.abs(f),0);for(;g>>0,e=b!==void 0&&b!==null;if(d===0)return-1;var f=d;e&&(f=Number(b),f!==f?f=0:f!==0&&f!==Infinity&&f!==-Infinity&&(f=(f>0||-1)*Math.floor(Math.abs(f))));var g=f>=0?Math.min(f,d-1):d-Math.abs(f);for(;g>=0;g--)if(g in c&&c[g]===a)return g;return-1}),Array.prototype.map||(Array.prototype.map=function(a,b){if(this===void 0||this===null||typeof a!="function")throw new TypeError;var c=Object(this),d=c.length>>>0,e=b===void 0||b===null,f=new Array(d);for(var g=0;g>>0,e=b!==void 0&&b!==null;if(d==0&&!e)throw new TypeError;var f=0,g;if(e)g=b;else do{if(f in c){g=c[f++];break}if(++f>=d)throw new TypeError}while(!0);while(f>>0,e=b!==void 0&&b!==null;if(d==0&&!e)throw new TypeError;var f=d-1,g;if(e)g=b;else do{if(f in this){g=c[f--];break}if(--f<0)throw new TypeError}while(!0);while(f--)f in c&&(g=callbackfn(g,c[f],f,c));return g}),Array.prototype.some||(Array.prototype.some=function(a,b){if(this===void 0||this===null||typeof a!="function")throw new TypeError;var c=Object(this),d=c.length>>>0,e=b===void 0||b===null;for(var f=0;f9999?"+":"")+("00000"+Math.abs(b)).slice(0<=b&&b<=9999?-4:-6);var c=[b,a(this.getUTCMonth()+1),a(this.getUTCDate())].join("-"),d=[a(this.getUTCHours()),a(this.getUTCMinutes()),a(this.getUTCSeconds())].join(":")+"."+a(this.getUTCMilliseconds(),3);return[c,d].join("T")+"Z"}}()),Date.prototype.toJSON||(Date.prototype.toJSON=function(){var a=Object(this),b=a.toISOString;if(typeof b!="function")throw new TypeError;return b.call(a)}),Function.prototype.bind||(Function.prototype.bind=function(a){if(typeof this!="function")throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");var b=Array.prototype.slice,c=b.call(arguments,1),d=this,e=function(){},f=function(){if(e.prototype&&this instanceof e){var f=d.apply(new e,c.concat(b.call(arguments)));return Object(f)===f?f:d}return d.apply(a,c.concat(b.call(arguments)))};return e.prototype=d.prototype,f.prototype=new e,f}),function(){"use strict";var a=function(a){if(a!==Object(a))throw new TypeError("Object.getPrototypeOf called on non-object")};Object.getPrototypeOf||(typeof "test".__proto__=="object"?Object.getPrototypeOf=function(b){return a(b),b.__proto__}:Object.getPrototypeOf=function(b){return a(b),b.constructor.prototype})}(),Object.keys||(Object.keys=function(){var a=Object.prototype.hasOwnProperty,b=!{toString:null}.propertyIsEnumerable("toString"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],d=c.length;return function(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on non-object");var f=[];for(var g in e)a.call(e,g)&&f.push(g);if(b)for(var h=0;h").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;ic)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML=" a ";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML=" ";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c ",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML=" ",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="
";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="
";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(var g=c;g0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/",""],legend:[1,""," "],thead:[1,""],tr:[2,""],td:[3,""],col:[2,""],area:[1,""," "],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div","
"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1>$2>");try{for(var c=0,e=this.length;c1&&l0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1>$2>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]===""&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/public/browse/lib/lunr.js/test/index_test.js b/public/browse/lib/lunr.js/test/index_test.js
deleted file mode 100644
index 576015fbd9..0000000000
--- a/public/browse/lib/lunr.js/test/index_test.js
+++ /dev/null
@@ -1,322 +0,0 @@
-module('lunr.Index')
-
-test("defining what fields to index", function () {
- var idx = new lunr.Index
- idx.field('foo')
-
- deepEqual(idx._fields[0], {name: 'foo', boost: 1})
-})
-
-test("giving a particular field a weighting", function () {
- var idx = new lunr.Index
- idx.field('foo', { boost: 10 })
-
- deepEqual(idx._fields[0], {name: 'foo', boost: 10})
-})
-
-test('default reference should be id', function () {
- var idx = new lunr.Index
- equal(idx._ref, 'id')
-})
-
-test("defining the reference field for the index", function () {
- var idx = new lunr.Index
- idx.ref('foo')
-
- deepEqual(idx._ref, 'foo')
-})
-
-test('adding a document to the index', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'}
-
- idx.field('body')
- idx.add(doc)
-
- equal(idx.documentStore.length, 1)
- ok(!!idx.documentStore.get(1))
-})
-
-test('adding a document with an empty field', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'test', title: ''}
-
- idx.field('title')
- idx.field('body')
-
- idx.add(doc)
- ok(!isNaN(idx.tokenStore.get('test')[1].tf))
-})
-
-test('triggering add events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'},
- callbackCalled = false,
- callbackArgs = []
-
- idx.on('add', function (doc, index) {
- callbackCalled = true
- callbackArgs = Array.prototype.slice.call(arguments)
- })
-
- idx.field('body')
- idx.add(doc)
-
- ok(callbackCalled)
- equal(callbackArgs.length, 2)
- deepEqual(callbackArgs[0], doc)
- deepEqual(callbackArgs[1], idx)
-})
-
-test('silencing add events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'},
- callbackCalled = false,
- callbackArgs = []
-
- idx.on('add', function (doc, index) {
- callbackCalled = true
- callbackArgs = Array.prototype.slice.call(arguments)
- })
-
- idx.field('body')
- idx.add(doc, false)
-
- ok(!callbackCalled)
-})
-
-test('removing a document from the index', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'}
-
- idx.field('body')
- equal(idx.documentStore.length, 0)
-
- idx.add(doc)
- equal(idx.documentStore.length, 1)
-
- idx.remove(doc)
- equal(idx.documentStore.length, 0)
-})
-
-test('triggering remove events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'},
- callbackCalled = false,
- callbackArgs = []
-
- idx.on('remove', function (doc, index) {
- callbackCalled = true
- callbackArgs = Array.prototype.slice.call(arguments)
- })
-
- idx.field('body')
- idx.add(doc)
- idx.remove(doc)
-
- ok(callbackCalled)
- equal(callbackArgs.length, 2)
- deepEqual(callbackArgs[0], doc)
- deepEqual(callbackArgs[1], idx)
-})
-
-test('silencing remove events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'},
- callbackCalled = false,
- callbackArgs = []
-
- idx.on('remove', function (doc, index) {
- callbackCalled = true
- callbackArgs = Array.prototype.slice.call(arguments)
- })
-
- idx.field('body')
- idx.add(doc)
- idx.remove(doc, false)
-
- ok(!callbackCalled)
-})
-
-test('removing a non-existent document from the index', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'this is a test'},
- doc2 = {id: 2, body: 'i dont exist'},
- callbackCalled = false
-
- idx.on('remove', function (doc, index) {
- callbackCalled = true
- })
-
- idx.field('body')
- equal(idx.documentStore.length, 0)
-
- idx.add(doc)
- equal(idx.documentStore.length, 1)
-
- idx.remove(doc2)
- equal(idx.documentStore.length, 1)
-
- ok(!callbackCalled)
-})
-
-test('updating a document', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'foo'}
-
- idx.field('body')
- idx.add(doc)
- equal(idx.documentStore.length, 1)
- ok(idx.tokenStore.has('foo'))
-
- doc.body = 'bar'
- idx.update(doc)
-
- equal(idx.documentStore.length, 1)
- ok(idx.tokenStore.has('bar'))
-})
-
-test('emitting update events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'foo'},
- addCallbackCalled = false,
- removeCallbackCalled = false,
- updateCallbackCalled = false,
- callbackArgs = []
-
- idx.field('body')
- idx.add(doc)
- equal(idx.documentStore.length, 1)
- ok(idx.tokenStore.has('foo'))
-
- idx.on('update', function (doc, index) {
- updateCallbackCalled = true
- callbackArgs = Array.prototype.slice.call(arguments)
- })
-
- idx.on('add', function () {
- addCallbackCalled = true
- })
-
- idx.on('remove', function () {
- removeCallbackCalled = true
- })
-
-
- doc.body = 'bar'
- idx.update(doc)
-
- ok(updateCallbackCalled)
- equal(callbackArgs.length, 2)
- deepEqual(callbackArgs[0], doc)
- deepEqual(callbackArgs[1], idx)
-
- ok(!addCallbackCalled)
- ok(!removeCallbackCalled)
-})
-
-test('silencing update events', function () {
- var idx = new lunr.Index,
- doc = {id: 1, body: 'foo'},
- callbackCalled = false
-
- idx.field('body')
- idx.add(doc)
- equal(idx.documentStore.length, 1)
- ok(idx.tokenStore.has('foo'))
-
- idx.on('update', function (doc, index) {
- callbackCalled = true
- })
-
- doc.body = 'bar'
- idx.update(doc, false)
-
- ok(!callbackCalled)
-})
-
-test('serialising', function () {
- var idx = new lunr.Index,
- mockDocumentStore = { toJSON: function () { return 'documentStore' }},
- mockTokenStore = { toJSON: function () { return 'tokenStore' }},
- mockCorpusTokens = { toJSON: function () { return 'corpusTokens' }},
- mockPipeline = { toJSON: function () { return 'pipeline' }}
-
- idx.documentStore = mockDocumentStore
- idx.tokenStore = mockTokenStore
- idx.corpusTokens = mockCorpusTokens
- idx.pipeline = mockPipeline
-
- idx.ref('id')
-
- idx.field('title', { boost: 10 })
- idx.field('body')
-
- deepEqual(idx.toJSON(), {
- version: '@VERSION', // this is what the lunr version is set to before being built
- fields: [
- { name: 'title', boost: 10 },
- { name: 'body', boost: 1 }
- ],
- ref: 'id',
- documentStore: 'documentStore',
- tokenStore: 'tokenStore',
- corpusTokens: 'corpusTokens',
- pipeline: 'pipeline'
- })
-})
-
-test('loading a serialised index', function () {
- var serialisedData = {
- version: '@VERSION', // this is what the lunr version is set to before being built
- fields: [
- { name: 'title', boost: 10 },
- { name: 'body', boost: 1 }
- ],
- ref: 'id',
- documentStore: { store: {}, length: 0 },
- tokenStore: { root: {}, length: 0 },
- corpusTokens: [],
- pipeline: ['stopWordFilter', 'stemmer']
- }
-
- var idx = lunr.Index.load(serialisedData)
-
- deepEqual(idx._fields, serialisedData.fields)
- equal(idx._ref, 'id')
-})
-
-test('idf cache with reserved words', function () {
- var idx = new lunr.Index
-
- var troublesomeTokens = [
- 'constructor',
- '__proto__',
- 'hasOwnProperty',
- 'isPrototypeOf',
- 'propertyIsEnumerable',
- 'toLocaleString',
- 'toString',
- 'valueOf'
- ]
-
- troublesomeTokens.forEach(function (token) {
- equal(typeof(idx.idf(token)), 'number', 'Using token: ' + token)
- })
-})
-
-test('using a plugin', function () {
- var idx = new lunr.Index,
- ctx, args,
- plugin = function () {
- ctx = this
- args = Array.prototype.slice.call(arguments)
- this.pluginLoaded = true
- }
-
- idx.use(plugin, 'foo', 'bar')
-
- equal(ctx, idx)
- deepEqual(args, [idx, 'foo', 'bar'])
- ok(idx.pluginLoaded)
-})
diff --git a/public/browse/lib/lunr.js/test/lunr_test.js b/public/browse/lib/lunr.js/test/lunr_test.js
deleted file mode 100644
index 84287035c1..0000000000
--- a/public/browse/lib/lunr.js/test/lunr_test.js
+++ /dev/null
@@ -1,37 +0,0 @@
-module('lunr')
-
-test('returns a new instance of lunr.Index', function () {
- var index = lunr()
-
- equal(index.constructor, lunr.Index)
-})
-
-test('should set up the pipeline', function () {
- var index = lunr(),
- stack = index.pipeline._stack
-
- equal(stack.length, 3)
- equal(stack.indexOf(lunr.trimmer), 0)
- equal(stack.indexOf(lunr.stopWordFilter), 1)
- equal(stack.indexOf(lunr.stemmer), 2)
-})
-
-test('passing a config fn which is called with the new index', function () {
- var configCtx, configArg
-
- var index = lunr(function (idx) {
- configCtx = this
- configArg = idx
-
- this.ref('cid')
-
- this.field('title', 10)
- this.field('body')
- })
-
- equal(configCtx, index)
- equal(configArg, index)
-
- equal(index._ref, 'cid')
- equal(index._fields.length, 2)
-})
diff --git a/public/browse/lib/lunr.js/test/pipeline_test.js b/public/browse/lib/lunr.js/test/pipeline_test.js
deleted file mode 100644
index ff8b18e9d4..0000000000
--- a/public/browse/lib/lunr.js/test/pipeline_test.js
+++ /dev/null
@@ -1,185 +0,0 @@
-module('lunr.Pipeline', {
- setup: function () {
- this.existingRegisteredFunctions = lunr.Pipeline.registeredFunctions
- lunr.Pipeline.registeredFunctions = {}
-
- this.existingWarnIfFunctionNotRegistered = lunr.Pipeline.warnIfFunctionNotRegistered
- lunr.Pipeline.warnIfFunctionNotRegistered = $.noop
- },
- teardown: function () {
- lunr.Pipeline.registeredFunctions = this.existingRegisteredFunctions
- lunr.Pipeline.warnIfFunctionNotRegistered = this.existingWarnIfFunctionNotRegistered
- }
-})
-
-test("adding a new item to the pipeline", function () {
- var pipeline = new lunr.Pipeline
- equal(pipeline._stack.length, 0)
-
- pipeline.add($.noop)
- equal(pipeline._stack.length, 1)
-})
-
-test("adding multiple items to the pipeline in one go", function () {
- var pipeline = new lunr.Pipeline
-
- pipeline.add($.noop, $.noop)
- equal(pipeline._stack.length, 2)
-})
-
-test("removing an item from the pipeline", function () {
- var pipeline = new lunr.Pipeline,
- fn = $.noop
-
- pipeline.add(fn)
- equal(pipeline._stack.length, 1)
-
- pipeline.remove(fn)
- equal(pipeline._stack.length, 0)
-})
-
-test("adding an item to the pipeline before another item", function () {
- var pipeline = new lunr.Pipeline,
- fn1 = $.noop,
- fn2 = function () {}
-
- pipeline.add(fn1)
- pipeline.before(fn1, fn2)
-
- deepEqual(pipeline._stack, [fn2, fn1])
-})
-
-test("adding an item to the pipeline after another item", function () {
- var pipeline = new lunr.Pipeline,
- fn1 = $.noop,
- fn2 = function () {},
- fn3 = function () {}
-
- pipeline.add(fn1, fn2)
- pipeline.after(fn1, fn3)
-
- deepEqual(pipeline._stack, [fn1, fn3, fn2])
-})
-
-test("run calls each member of the pipeline for each input", function () {
- var pipeline = new lunr.Pipeline,
- count1 = 0, count2 = 0,
- fn1 = function (token) { count1++ ; return token },
- fn2 = function (token) { count2++ ; return token }
-
- pipeline.add(fn1, fn2)
-
- pipeline.run([1,2,3])
-
- equal(count1, 3)
- equal(count2, 3)
-})
-
-test("run should pass three inputs to the pipeline fn", function () {
- var pipeline = new lunr.Pipeline,
- input, index, arr,
- fn1 = function () { input = arguments[0], index = arguments[1], arr = arguments[2] }
-
- pipeline.add(fn1)
-
- pipeline.run(['a'])
-
- equal(input, 'a')
- equal(index, 0)
- deepEqual(arr, ['a'])
-})
-
-test("run should pass the output of one into the input of the next", function () {
- var pipeline = new lunr.Pipeline,
- output,
- fn1 = function (t1) { return t1.toUpperCase() },
- fn2 = function (t2) { output = t2 }
-
- pipeline.add(fn1)
- pipeline.add(fn2)
-
- pipeline.run(['a'])
-
- equal(output, 'A')
-})
-
-test("run should return the result of running the entire pipeline on each element", function () {
- var pipeline = new lunr.Pipeline,
- fn1 = function (t1) { return t1.toUpperCase() }
- pipeline.add(fn1)
- deepEqual(pipeline.run(['a']), ['A'])
-})
-
-test("run should filter out any undefined values at each stage in the pipeline", function () {
- var pipeline = new lunr.Pipeline,
- fn2Count = 0,
- fn1 = function (t) { if (t < 5) return t },
- fn2 = function (t) { fn2Count++ ; return t }
-
- pipeline.add(fn1, fn2)
-
- var output = pipeline.run([0,1,2,3,4,5,6,7,8,9])
- equal(fn2Count, 5)
- equal(output.length, 5)
-})
-
-test('toJSON', function () {
- var pipeline = new lunr.Pipeline,
- fn1 = function () {},
- fn2 = function () {}
-
- lunr.Pipeline.registerFunction(fn1, 'fn1')
- lunr.Pipeline.registerFunction(fn2, 'fn2')
-
- pipeline.add(fn1, fn2)
-
- deepEqual(pipeline.toJSON(), ['fn1', 'fn2'])
-})
-
-test('registering a pipeline function', function () {
- var fn1 = function () {}
-
- equal(Object.keys(lunr.Pipeline.registeredFunctions).length, 0)
-
- lunr.Pipeline.registerFunction(fn1, 'fn1')
-
- equal(fn1.label, 'fn1')
- equal(Object.keys(lunr.Pipeline.registeredFunctions).length, 1)
- deepEqual(lunr.Pipeline.registeredFunctions['fn1'], fn1)
-})
-
-test('load', function () {
- var fn1 = function () {},
- fn2 = function () {}
-
- lunr.Pipeline.registerFunction(fn1, 'fn1')
- lunr.Pipeline.registerFunction(fn2, 'fn2')
-
- var serialised = ['fn1', 'fn2']
-
- var pipeline = lunr.Pipeline.load(serialised)
-
- equal(pipeline._stack.length, 2)
- deepEqual(pipeline._stack[0], fn1)
- deepEqual(pipeline._stack[1], fn2)
-})
-
-test('loading an un-registered pipeline function', function () {
- var serialised = ['fn1']
-
- throws(function () {
- lunr.Pipeline.load(serialised)
- })
-})
-
-test('resetting the pipeline', function () {
- var fn1 = function () {},
- fn2 = function () {},
- pipeline = new lunr.Pipeline
-
- pipeline.add(fn1, fn2)
- deepEqual(pipeline._stack, [fn1, fn2])
-
- pipeline.reset()
- deepEqual(pipeline._stack, [])
-})
diff --git a/public/browse/lib/lunr.js/test/runner.sh b/public/browse/lib/lunr.js/test/runner.sh
deleted file mode 100755
index 3829dab514..0000000000
--- a/public/browse/lib/lunr.js/test/runner.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-NODE=/usr/local/bin/node
-PHANTOMJS=./node_modules/.bin/phantomjs
-SERVER_PORT=${1:-54545}
-
-echo "Starting test server at http://localhost:$SERVER_PORT"
-$NODE server.js "$SERVER_PORT" > /dev/null 2>&1 &
-$PHANTOMJS ./test/env/runner.js "http://localhost:$SERVER_PORT/test" 2> /dev/null
diff --git a/public/browse/lib/lunr.js/test/search_test.js b/public/browse/lib/lunr.js/test/search_test.js
deleted file mode 100644
index a799a0e469..0000000000
--- a/public/browse/lib/lunr.js/test/search_test.js
+++ /dev/null
@@ -1,77 +0,0 @@
-module('search', {
- setup: function () {
- var idx = new lunr.Index
- idx.field('body')
- idx.field('title', { boost: 10 })
-
- ;([{
- id: 'a',
- title: 'Mr. Green kills Colonel Mustard',
- body: 'Mr. Green killed Colonel Mustard in the study with the candlestick. Mr. Green is not a very nice fellow.',
- wordCount: 19
- },{
- id: 'b',
- title: 'Plumb waters plant',
- body: 'Professor Plumb has a green plant in his study',
- wordCount: 9
- },{
- id: 'c',
- title: 'Scarlett helps Professor',
- body: 'Miss Scarlett watered Professor Plumbs green plant while he was away from his office last week.',
- wordCount: 16
- },{
- id: 'd',
- title: 'title',
- body: 'handsome',
- },{
- id: 'e',
- title: 'title',
- body: 'hand',
- }]).forEach(function (doc) { idx.add(doc) })
-
- this.idx = idx
- }
-})
-
-test('returning the correct results', function () {
- var results = this.idx.search('green plant')
-
- equal(results.length, 2)
- equal(results[0].ref, 'b')
-})
-
-test('search term not in the index', function () {
- var results = this.idx.search('foo')
-
- equal(results.length, 0)
-})
-
-test('one search term not in the index', function () {
- var results = this.idx.search('foo green')
-
- equal(results.length, 0)
-})
-
-test('search contains one term not in the index', function () {
- var results = this.idx.search('green foo')
-
- equal(results.length, 0)
-})
-
-test('search takes into account boosts', function () {
- var results = this.idx.search('professor')
-
- equal(results.length, 2)
- equal(results[0].ref, 'c')
-
- ok(results[0].score > 10 * results[1].score)
-})
-
-test('search boosts exact matches', function () {
- var results = this.idx.search('hand')
-
- equal(results.length, 2)
- equal(results[0].ref, 'e')
-
- ok(results[0].score > results[1].score)
-})
diff --git a/public/browse/lib/lunr.js/test/serialisation_test.js b/public/browse/lib/lunr.js/test/serialisation_test.js
deleted file mode 100644
index 333fb24869..0000000000
--- a/public/browse/lib/lunr.js/test/serialisation_test.js
+++ /dev/null
@@ -1,46 +0,0 @@
-module('serialisation', {
- setup: function () {
- this.corpus = [{
- id: 'a',
- title: 'Mr. Green kills Colonel Mustard',
- body: 'Mr. Green killed Colonel Mustard in the study with the candlestick. Mr. Green is not a very nice fellow.'
- },{
- id: 'b',
- title: 'Plumb waters plant',
- body: 'Professor Plumb has a green plant in his study'
- },{
- id: 'c',
- title: 'Scarlett helps Professor',
- body: 'Miss Scarlett watered Professor Plumbs green plant while he was away from his office last week.'
- }]
- }
-})
-
-test('dumping and loading an index', function () {
- var idx = new lunr.Index
-
- idx.field('title', { boost: 10 })
- idx.field('body')
-
- this.corpus.forEach(function (doc) { idx.add(doc) })
-
- var dumpedIdx = JSON.stringify(idx),
- clonedIdx = lunr.Index.load(JSON.parse(dumpedIdx))
-
- deepEqual(idx.search('green plant'), clonedIdx.search('green plant'))
-})
-
-test('dumping and loading an index with a populated pipeline', function () {
- var idx = lunr(function () {
- this.field('title', { boost: 10 })
- this.field('body')
- })
-
- this.corpus.forEach(function (doc) { idx.add(doc) })
-
- var dumpedIdx = JSON.stringify(idx),
- clonedIdx = lunr.Index.load(JSON.parse(dumpedIdx))
-
- deepEqual(idx.pipeline._stack, clonedIdx.pipeline._stack)
- deepEqual(idx.search('water'), clonedIdx.search('water'))
-})
diff --git a/public/browse/lib/lunr.js/test/sorted_set_test.js b/public/browse/lib/lunr.js/test/sorted_set_test.js
deleted file mode 100644
index d49a31616f..0000000000
--- a/public/browse/lib/lunr.js/test/sorted_set_test.js
+++ /dev/null
@@ -1,118 +0,0 @@
-module('lunr.SortedSet')
-
-test('adding an element that doesn\'t exist into the set', function () {
- var set = new lunr.SortedSet
-
- equal(set.length, 0)
- set.add('foo')
- equal(set.length, 1)
-})
-
-test('adding an element that does exist into the set', function () {
- var set = new lunr.SortedSet
- set.add('foo')
- equal(set.length, 1)
-
- set.add('foo')
- equal(set.length, 1)
-})
-
-test('sort is maintained when adding elements to the set', function () {
- var set = new lunr.SortedSet
-
- set.add('b')
- set.add('d')
- set.add('a')
- set.add('c')
-
- deepEqual(set.elements, ['a', 'b', 'c', 'd'])
-})
-
-test('adding more than one element to the set in one go', function () {
- var set = new lunr.SortedSet
- set.add('foo', 'bar', 'baz', 'foo')
- equal(set.length, 3)
-})
-
-test('converting to an array', function () {
- var set = new lunr.SortedSet
- set.add('foo', 'bar', 'baz')
- deepEqual(set.toArray(), ['bar', 'baz', 'foo'])
-})
-
-test('mapping the set', function () {
- var set = new lunr.SortedSet, a = []
-
- set.add('foo', 'bar')
-
- set.forEach(function (t) { a.push(t) })
-
- deepEqual(a, ['bar', 'foo'])
-})
-
-test('getting the index of an item in the set', function () {
- var set = new lunr.SortedSet
-
- equal(set.indexOf('non member'), -1)
-
- set.add('foo')
-
- equal(set.indexOf('foo'), 0)
- equal(set.indexOf('non member'), -1)
-
- set.add('bar')
-
- equal(set.indexOf('foo'), 1)
- equal(set.indexOf('bar'), 0)
- equal(set.indexOf('non member'), -1)
-})
-
-test('intersecting this set with another set', function () {
- var set1 = new lunr.SortedSet,
- set2 = new lunr.SortedSet,
- setIntersect
-
- set1.add('foo', 'bar')
- set2.add('baz', 'foo')
-
- setIntersect = set1.intersect(set2)
-
- ok(setIntersect.indexOf('foo') > -1)
- ok(setIntersect.indexOf('bar') == -1)
- ok(setIntersect.indexOf('baz') == -1)
-})
-
-test('unioning this set with another set', function () {
- var set1 = new lunr.SortedSet,
- set2 = new lunr.SortedSet,
- setUnion
-
- set1.add('foo', 'bar')
- set2.add('baz', 'foo')
-
- setUnion = set1.union(set2)
-
- ok(setUnion.indexOf('foo') > -1)
- ok(setUnion.indexOf('bar') > -1)
- ok(setUnion.indexOf('baz') > -1)
-
- equal(setUnion.length ,3)
-})
-
-test('serialising', function () {
- var emptySet = new lunr.SortedSet,
- nonEmptySet = new lunr.SortedSet
-
- nonEmptySet.add(1,2,3,4)
-
- deepEqual(emptySet.toJSON(), [])
- deepEqual(nonEmptySet.toJSON(), [1,2,3,4])
-})
-
-test('loading serialised dump', function () {
- var serialisedData = [1,2,3,4],
- set = lunr.SortedSet.load(serialisedData)
-
- equal(set.length, 4)
- deepEqual(set.elements, [1,2,3,4])
-})
diff --git a/public/browse/lib/lunr.js/test/stemmer_test.js b/public/browse/lib/lunr.js/test/stemmer_test.js
deleted file mode 100644
index 12129122df..0000000000
--- a/public/browse/lib/lunr.js/test/stemmer_test.js
+++ /dev/null
@@ -1,14 +0,0 @@
-module('lunr.stemmer')
-
-test('should stem words correctly', function () {
- Object.keys(stemmingFixture).forEach(function (testWord) {
- var expected = stemmingFixture[testWord]
-
- equal(lunr.stemmer(testWord), expected)
- })
-})
-
-test('should be registered with lunr.Pipeline', function () {
- equal(lunr.stemmer.label, 'stemmer')
- deepEqual(lunr.Pipeline.registeredFunctions['stemmer'], lunr.stemmer)
-})
diff --git a/public/browse/lib/lunr.js/test/stop_word_filter_test.js b/public/browse/lib/lunr.js/test/stop_word_filter_test.js
deleted file mode 100644
index 8713cb9629..0000000000
--- a/public/browse/lib/lunr.js/test/stop_word_filter_test.js
+++ /dev/null
@@ -1,22 +0,0 @@
-module('lunr.stopWordFilter')
-
-test('stops stop words', function () {
- var stopWords = ['the', 'and', 'but', 'than', 'when']
-
- stopWords.forEach(function (word) {
- equal(lunr.stopWordFilter(word), undefined)
- })
-})
-
-test('non stop words pass through', function () {
- var nonStopWords = ['interesting', 'words', 'pass', 'through']
-
- nonStopWords.forEach(function (word) {
- equal(lunr.stopWordFilter(word), word)
- })
-})
-
-test('should be registered with lunr.Pipeline', function () {
- equal(lunr.stopWordFilter.label, 'stopWordFilter')
- deepEqual(lunr.Pipeline.registeredFunctions['stopWordFilter'], lunr.stopWordFilter)
-})
diff --git a/public/browse/lib/lunr.js/test/store_node_test.js b/public/browse/lib/lunr.js/test/store_node_test.js
deleted file mode 100644
index ccd0eedb50..0000000000
--- a/public/browse/lib/lunr.js/test/store_node_test.js
+++ /dev/null
@@ -1,17 +0,0 @@
-module('store node')
-
-test("get all children", function() {
- var node = new lunr.StoreNode,
- childNode = node.at('a'),
- otherChildNode = node.at('a'),
- grandChildNode = childNode.at('a')
-
- childNode.push('childNode')
- otherChildNode.push('otherChildNode')
- grandChildNode.push('grandChildNode')
-
- equal(node.allChildren().length, 3)
- ok(node.allChildren().indexOf(childNode) > -1)
- ok(node.allChildren().indexOf(otherChildNode) > -1)
- ok(node.allChildren().indexOf(grandChildNode) > -1)
-})
diff --git a/public/browse/lib/lunr.js/test/store_test.js b/public/browse/lib/lunr.js/test/store_test.js
deleted file mode 100644
index 10a601f4e2..0000000000
--- a/public/browse/lib/lunr.js/test/store_test.js
+++ /dev/null
@@ -1,60 +0,0 @@
-module('lunr.Store')
-
-test('adding document tokens to the document store', function () {
- var docStore = new lunr.Store,
- tokens = ['eggs', 'ham']
-
- docStore.set(1, tokens)
- deepEqual(docStore.get(1), tokens)
-})
-
-test('getting the number of items in the document store', function () {
- var docStore = new lunr.Store
-
- equal(docStore.length, 0)
- docStore.set(1, 'foo')
- equal(docStore.length, 1)
-})
-
-test('checking whether the store contains a key', function () {
- var store = new lunr.Store
-
- ok(!store.has('foo'))
- store.set('foo', 1)
- ok(store.has('foo'))
-})
-
-test('removing an element from the store', function () {
- var store = new lunr.Store
-
- store.set('foo', 1)
- ok(store.has('foo'))
- equal(store.length, 1)
- store.remove('foo')
- ok(!store.has('foo'))
- equal(store.length, 0)
-})
-
-test('serialising', function () {
- var store = new lunr.Store
-
- deepEqual(store.toJSON(), { store: {}, length: 0 })
-
- store.set(1, ['eggs', 'ham'])
-
- deepEqual(store.toJSON(), { store: { 1: ['eggs', 'ham'] }, length: 1 })
-})
-
-test('loading serialised data', function () {
- var serialisedData = {
- length: 1,
- store: {
- 1: ['eggs', 'ham']
- }
- }
-
- var store = lunr.Store.load(serialisedData)
-
- equal(store.length, 1)
- deepEqual(store.get(1), lunr.SortedSet.load(['eggs', 'ham']))
-})
diff --git a/public/browse/lib/lunr.js/test/test_helper.js b/public/browse/lib/lunr.js/test/test_helper.js
deleted file mode 100644
index 8f754a4dca..0000000000
--- a/public/browse/lib/lunr.js/test/test_helper.js
+++ /dev/null
@@ -1,23 +0,0 @@
-var helpers = require('./../lib/helpers')
-
-var extensions = function () {
- this.equalNumber = function (lambdaNum, num, desc) {
- return this.equal.call(this, helpers.toNumber(lambdaNum), num, desc)
- },
-
- this.isTrue = function (lambdaBool, desc) {
- return this.ok.call(this, helpers.toBoolean(lambdaBool), desc)
- },
-
- this.isFalse = function (lambdaBool, desc) {
- return this.ok.call(this, !helpers.toBoolean(lambdaBool), desc)
- }
-}
-
-module.exports = function (testName, testFn) {
- module.exports[testName] = function (test) {
- extensions.call(test)
- testFn.call(test, test)
- test.done()
- }
-}
\ No newline at end of file
diff --git a/public/browse/lib/lunr.js/test/token_store_test.js b/public/browse/lib/lunr.js/test/token_store_test.js
deleted file mode 100644
index 7b9d6cdfe2..0000000000
--- a/public/browse/lib/lunr.js/test/token_store_test.js
+++ /dev/null
@@ -1,177 +0,0 @@
-module('lunr.TokenStore')
-
-test('adding a token to the store', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 },
- token = 'foo'
-
- store.add(token, doc)
-
- ok(store.root['f']['o']['o']['docs'][123] === doc)
- equal(store.length, 1)
-})
-
-test('adding another document to the token', function () {
- var store = new lunr.TokenStore,
- doc1 = { ref: 123, tf: 1 },
- doc2 = { ref: 456, tf: 1 },
- token = 'foo'
-
- store.add(token, doc1)
- store.add(token, doc2)
-
- ok(store.root['f']['o']['o']['docs'][123] === doc1)
- ok(store.root['f']['o']['o']['docs'][456] === doc2)
-})
-
-test('checking if a token exists in the store', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 },
- token = 'foo'
-
- store.add(token, doc)
-
- ok(store.has(token))
-})
-
-test('checking if a token does not exist in the store', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 },
- token = 'foo'
-
- ok(!store.has('bar'))
- store.add(token, doc)
- ok(!store.has('bar'))
-})
-
-test('retrieving items from the store', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 },
- token = 'foo'
-
- store.add(token, doc)
- deepEqual(store.get(token), {
- '123': doc
- })
-
- deepEqual(store.get(''), {})
-})
-
-test('retrieving items that do not exist in the store', function () {
- var store = new lunr.TokenStore
-
- deepEqual(store.get('foo'), {})
-})
-
-test('counting items in the store', function () {
- var store = new lunr.TokenStore,
- doc1 = { ref: 123, tf: 1 },
- doc2 = { ref: 456, tf: 1 },
- doc3 = { ref: 789, tf: 1 }
-
- store.add('foo', doc1)
- store.add('foo', doc2)
- store.add('bar', doc3)
-
- equal(store.count('foo'), 2)
- equal(store.count('bar'), 1)
- equal(store.count('baz'), 0)
-})
-
-test('removing a document from the token store', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 }
-
- deepEqual(store.get('foo'), {})
- store.add('foo', doc)
- deepEqual(store.get('foo'), {
- '123': doc
- })
-
- store.remove('foo', 123)
- deepEqual(store.get('foo'), {})
-})
-
-test('removing a document that is not in the store', function () {
- var store = new lunr.TokenStore,
- doc1 = { ref: 123, tf: 1 },
- doc2 = { ref: 567, tf: 1 }
-
- store.add('foo', doc1)
- store.add('bar', doc2)
- store.remove('foo', 456)
-
- deepEqual(store.get('foo'), { 123: doc1 })
-})
-
-test('removing a document from a key that does not exist', function () {
- var store = new lunr.TokenStore
-
- store.remove('foo', 123)
- ok(!store.has('foo'))
-})
-
-test('expand a token into all descendent tokens', function () {
- var store = new lunr.TokenStore,
- doc = { ref: 123, tf: 1 }
-
- store.add('hell', doc)
- store.add('hello', doc)
- store.add('help', doc)
- store.add('held', doc)
- store.add('foo', doc)
- store.add('bar', doc)
-
- var tokens = store.expand('hel')
- deepEqual(tokens, ['hell', 'hello', 'help', 'held'])
-})
-
-test('serialisation', function () {
- var store = new lunr.TokenStore
-
- deepEqual(store.toJSON(), { root: { docs: {} }, length: 0 })
-
- store.add('foo', { ref: 123, tf: 1 })
-
- deepEqual(store.toJSON(),
- {
- root: {
- docs: {},
- f: {
- docs: {},
- o: {
- docs: {},
- o: {
- docs: { 123: { ref: 123, tf: 1 } }
- }
- }
- }
- },
- length: 1
- }
- )
-})
-
-test('loading a serialised story', function () {
- var serialisedData = {
- root: {
- docs: {},
- f: {
- docs: {},
- o: {
- docs: {},
- o: {
- docs: { 123: { ref: 123, tf: 1 } }
- }
- }
- }
- },
- length: 1
- }
-
- var store = lunr.TokenStore.load(serialisedData),
- documents = store.get('foo')
-
- equal(store.length, 1)
- deepEqual(documents, { 123: { ref: 123, tf: 1 }})
-})
diff --git a/public/browse/lib/lunr.js/test/tokenizer_test.js b/public/browse/lib/lunr.js/test/tokenizer_test.js
deleted file mode 100644
index 3948a141a2..0000000000
--- a/public/browse/lib/lunr.js/test/tokenizer_test.js
+++ /dev/null
@@ -1,65 +0,0 @@
-module('lunr.tokenizer')
-
-test("splitting simple strings into tokens", function () {
- var simpleString = "this is a simple string",
- tokens = lunr.tokenizer(simpleString)
-
- deepEqual(tokens, ['this', 'is', 'a', 'simple', 'string'])
-})
-
-test('downcasing tokens', function () {
- var simpleString = 'FOO BAR',
- tags = ['Foo', 'BAR']
-
- deepEqual(lunr.tokenizer(simpleString), ['foo', 'bar'])
- deepEqual(lunr.tokenizer(tags), ['foo', 'bar'])
-})
-
-test('handling arrays', function () {
- var tags = ['foo', 'bar'],
- tokens = lunr.tokenizer(tags)
-
- deepEqual(tokens, tags)
-})
-
-test('handling multiple white spaces', function () {
- var testString = ' foo bar ',
- tokens = lunr.tokenizer(testString)
-
- deepEqual(tokens, ['foo', 'bar'])
-})
-
-test('handling null-like arguments', function () {
- deepEqual(lunr.tokenizer(), [])
- deepEqual(lunr.tokenizer(null), [])
- deepEqual(lunr.tokenizer(undefined), [])
-})
-
-test('calling to string on passed val', function () {
- var date = new Date (Date.UTC(2013, 0, 1)),
- obj = {
- toString: function () { return 'custom object' }
- }
-
- equal(lunr.tokenizer(41), '41')
- equal(lunr.tokenizer(false), 'false')
- deepEqual(lunr.tokenizer(obj), ['custom', 'object'])
-
- // slicing here to avoid asserting on the timezone part of the date
- // that will be different whereever the test is run.
- deepEqual(lunr.tokenizer(date).slice(0, 4), ['tue', 'jan', '01', '2013'])
-})
-
-test("splitting strings with hyphens", function () {
- var simpleString = "take the New York-San Francisco flight",
- tokens = lunr.tokenizer(simpleString)
-
- deepEqual(tokens, ['take', 'the', 'new', 'york', 'san', 'francisco', 'flight'])
-})
-
-test("splitting strings with hyphens and spaces", function () {
- var simpleString = "Solve for A - B",
- tokens = lunr.tokenizer(simpleString)
-
- deepEqual(tokens, ['solve', 'for', 'a', 'b'])
-})
diff --git a/public/browse/lib/lunr.js/test/trimmer_test.js b/public/browse/lib/lunr.js/test/trimmer_test.js
deleted file mode 100644
index e07f43e6f4..0000000000
--- a/public/browse/lib/lunr.js/test/trimmer_test.js
+++ /dev/null
@@ -1,27 +0,0 @@
-module('lunr.trimmer')
-
-test('latin characters', function () {
- var token = 'hello'
- equal(lunr.trimmer(token), token)
-})
-
-test('removing leading and trailing punctuation', function () {
- var fullStop = 'hello.',
- innerApostrophe = "it's",
- trailingApostrophe = "james'",
- exclamationMark = 'stop!',
- comma = 'first,',
- brackets = '[tag]'
-
- deepEqual(lunr.trimmer(fullStop), 'hello')
- deepEqual(lunr.trimmer(innerApostrophe), "it's")
- deepEqual(lunr.trimmer(trailingApostrophe), "james")
- deepEqual(lunr.trimmer(exclamationMark), 'stop')
- deepEqual(lunr.trimmer(comma), 'first')
- deepEqual(lunr.trimmer(brackets), 'tag')
-})
-
-test('should be registered with lunr.Pipeline', function () {
- equal(lunr.trimmer.label, 'trimmer')
- deepEqual(lunr.Pipeline.registeredFunctions['trimmer'], lunr.trimmer)
-})
diff --git a/public/browse/lib/lunr.js/test/vector_test.js b/public/browse/lib/lunr.js/test/vector_test.js
deleted file mode 100644
index f9375b279a..0000000000
--- a/public/browse/lib/lunr.js/test/vector_test.js
+++ /dev/null
@@ -1,39 +0,0 @@
-module("lunr.Vector")
-
-test("calculating the magnitude of a vector", function () {
- var vector = new lunr.Vector,
- elements = [4,5,6]
-
- elements.forEach(function (el, i) { vector.insert(i, el) })
-
- equal(vector.magnitude(), Math.sqrt(77))
-})
-
-test("calculating the dot product with another vector", function () {
- var v1 = new lunr.Vector,
- v2 = new lunr.Vector,
- els1 = [1, 3, -5],
- els2 = [4, -2, -1]
-
-
- els1.forEach(function (el, i) { v1.insert(i, el) })
- els2.forEach(function (el, i) { v2.insert(i, el) })
-
- equal(v1.dot(v2), 3)
-})
-
-test("calculating the similarity between two vectors", function () {
- var v1 = new lunr.Vector,
- v2 = new lunr.Vector,
- els1 = [1, 3, -5],
- els2 = [4, -2, -1]
-
- els1.forEach(function (el, i) { v1.insert(i, el) })
- els2.forEach(function (el, i) { v2.insert(i, el) })
-
- var similarity = v1.similarity(v2),
- roundedSimilarity = Math.round(similarity * 1000) / 1000
-
- equal(roundedSimilarity, 0.111)
-})
-
diff --git a/public/browse/package.json b/public/browse/package.json
deleted file mode 100755
index b1d37c05c1..0000000000
--- a/public/browse/package.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "name": "angular-seed",
- "private": true,
- "version": "0.0.0",
- "description": "A starter project for AngularJS",
- "repository": "https://github.com/angular/angular-seed",
- "license": "MIT",
- "type": "module",
- "devDependencies": {
- "karma": "~0.10",
- "protractor": "^1.1.1",
- "http-server": "^0.6.1",
- "bower": "^1.3.1",
- "shelljs": "^0.2.6",
- "karma-junit-reporter": "^0.2.2"
- },
- "scripts": {
- "postinstall": "bower install",
-
- "prestart": "npm install",
- "start": "http-server -a localhost -p 8000 -c-1",
-
- "pretest": "npm install",
- "test": "karma start karma.conf.js",
- "test-single-run": "karma start karma.conf.js --single-run",
-
- "preupdate-webdriver": "npm install",
- "update-webdriver": "webdriver-manager update",
-
- "preprotractor": "npm run update-webdriver",
- "protractor": "protractor e2e-tests/protractor.conf.js",
-
- "update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
- }
-}
diff --git a/yarn.lock b/yarn.lock
index b3e75bb55e..c90a58e5c8 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -13,17 +13,17 @@
integrity sha512-HGlzDcf9vv/EQrMJ5ZG6VWNs8Z/xMN+1o2OhV1gKiSG6CqZt5MCBB1gRg5ILiN3U0jEAxuDTNPRfBcnZBDmupQ==
"@hotwired/turbo-rails@^7.1.1":
- version "7.2.4"
- resolved "https://registry.yarnpkg.com/@hotwired/turbo-rails/-/turbo-rails-7.2.4.tgz#d155533e79c4ebdac23e8fe12697d821d5c06307"
- integrity sha512-givDUQqaccd19BvErz1Cf2j6MXF74m0G6I75oqFJGeXAa7vwkz9nDplefVNrALCR9Xi9j9gy32xmSI6wD0tZyA==
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/@hotwired/turbo-rails/-/turbo-rails-7.3.0.tgz#422c21752509f3edcd6c7b2725bbe9e157815f51"
+ integrity sha512-fvhO64vp/a2UVQ3jue9WTc2JisMv9XilIC7ViZmXAREVwiQ2S4UC7Go8f9A1j4Xu7DBI6SbFdqILk5ImqVoqyA==
dependencies:
- "@hotwired/turbo" "^7.2.4"
+ "@hotwired/turbo" "^7.3.0"
"@rails/actioncable" "^7.0"
-"@hotwired/turbo@^7.2.4":
- version "7.2.4"
- resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-7.2.4.tgz#0d35541be32cfae3b4f78c6ab9138f5b21f28a21"
- integrity sha512-c3xlOroHp/cCZHDOuLp6uzQYEbvXBUVaal0puXoGJ9M8L/KHwZ3hQozD4dVeSN9msHWLxxtmPT1TlCN7gFhj4w==
+"@hotwired/turbo@^7.3.0":
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-7.3.0.tgz#2226000fff1aabda9fd9587474565c9929dbf15d"
+ integrity sha512-Dcu+NaSvHLT7EjrDrkEmH4qET2ZJZ5IcCWmNXxNQTBwlnE5tBZfN6WxZ842n5cHV52DH/AKNirbPBtcEXDLW4g==
"@rails/actioncable@^7.0":
version "7.0.4"