UNPKG

@justgage/reason-cookie

Version:

a simple way to use cross-browser cookies that contain JSON.

1 lines 27.7 kB
window.searchindex = {"version":"0.9.5","fields":["title","contents"],"ref":"id","documentStore":{"docs":{"0":{"href":"./index.html","title":"code block","contents":"Cookie.setJsonConfig(\n \"hello\",\n obj,\n Cookie.makeConfig(~path=\"\", ~expires=2, ()),\n);","rendered":"<pre><code>Cookie.setJsonConfig(\n \"hello\",\n obj,\n Cookie.makeConfig(~path=\"\", ~expires=2, ()),\n);</code></pre>","breadcrumb":"Home","id":"0"},"1":{"href":"./index.html#set-path-expiry","title":"set path/expiry","contents":"","rendered":"","breadcrumb":"Home","id":"1"},"2":{"href":"./index.html","title":"code block","contents":"let obj = Js.Dict.empty();\nJs.Dict.set(obj, \"a\", Js.Json.number(2.));\nlet obj = Js.Json.object_(obj);\n\nCookie.setJson(\"hello\", obj);\n\nlet maybeCookie = Cookie.getAsJson(\"hello\");","rendered":"<pre><code>let obj = Js.Dict.empty();\nJs.Dict.set(obj, \"a\", Js.Json.number(2.));\nlet obj = Js.Json.object_(obj);\n\nCookie.setJson(\"hello\", obj);\n\nlet maybeCookie = Cookie.getAsJson(\"hello\");</code></pre>","breadcrumb":"Home","id":"2"},"3":{"href":"./index.html#working-JSON","title":"working JSON","contents":"","rendered":"","breadcrumb":"Home","id":"3"},"4":{"href":"./index.html","title":"code block","contents":"Cookie.getAsString(\"hello\") /* None */\nCookie.setString(\"hello\", \"test\");\nCookie.getAsString(\"hello\") /* Some(\"test\") */","rendered":"<pre><code>Cookie.getAsString(\"hello\") /* None */\nCookie.setString(\"hello\", \"test\");\nCookie.getAsString(\"hello\") /* Some(\"test\") */</code></pre>","breadcrumb":"Home","id":"4"},"5":{"href":"./index.html#Working-with-string-values","title":"Working with string values","contents":"","rendered":"","breadcrumb":"Home","id":"5"},"6":{"href":"./index.html#API","title":"API","contents":"","rendered":"","breadcrumb":"Home","id":"6"},"7":{"href":"./index.html","title":"code block","contents":" \"bs-dependencies\": [\"@justgage/reason-cookie\"],","rendered":"<pre><code> \"bs-dependencies\": [\"@justgage/reason-cookie\"],</code></pre>","breadcrumb":"Home","id":"7"},"8":{"href":"./index.html","title":"Home","contents":"Then in your bsconfig.json.","rendered":"Then in your <code>bsconfig.json</code>.","breadcrumb":"Home","id":"8"},"9":{"href":"./index.html","title":"code block","contents":"npm install --save @justgage/reason-cookie","rendered":"<pre><code>npm install --save @justgage/reason-cookie</code></pre>","breadcrumb":"Home","id":"9"},"10":{"href":"./index.html#Install","title":"Install","contents":"","rendered":"","breadcrumb":"Home","id":"10"},"11":{"href":"./index.html","title":"Home","contents":"I use it on my side project. The library that&#39;s wrapped is pretty battle tested.","rendered":"I use it on my side project. The library that&#39;s wrapped is pretty battle tested.","breadcrumb":"Home","id":"11"},"12":{"href":"./index.html#Is-it-ready-for-prime-time-","title":"Is it ready for prime time?","contents":"","rendered":"","breadcrumb":"Home","id":"12"},"13":{"href":"./index.html","title":"Home","contents":"Note this wrapps js-cookie","rendered":"Note this wrapps <a href=\"https://github.com/js-cookie/js-cookie\" target=\"_blank\" rel=\"noopener nofollow\" title=\"\" class=\"external-link\">js-cookie</a>","breadcrumb":"Home","id":"13"},"14":{"href":"./index.html","title":"Home","contents":"a simple way to use cross-browser cookies that contain JSON.","rendered":"a simple way to use cross-browser cookies that contain JSON.","breadcrumb":"Home","id":"14"},"15":{"href":"./index.html#ReasonCookie","title":"ReasonCookie","contents":"","rendered":"","breadcrumb":"Home","id":"15"},"16":{"href":"./api/Example-JustgageReasonCookie.html","title":"Example-JustgageReasonCookie","contents":"This module does not have a toplevel documentation block.","rendered":"<span class='missing'>This module does not have a toplevel documentation block.</span>","breadcrumb":"Example-JustgageReasonCookie","id":"16"},"17":{"href":"./api/Example-JustgageReasonCookie.html#Example-JustgageReasonCookie","title":"Example-JustgageReasonCookie","contents":"","rendered":"","breadcrumb":"Example-JustgageReasonCookie","id":"17"},"18":{"href":"./api/Cookie-JustgageReasonCookie.html#value-getAsJson","title":"getAsJson","contents":"getAsJson string option Js Json t ","rendered":"<h4 class='item'>let getAsJson = (string) => option(Js.Json.t)</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"18"},"19":{"href":"./api/Cookie-JustgageReasonCookie.html#value-getAsString","title":"getAsString","contents":"getAsString string option string ","rendered":"<h4 class='item'>let getAsString = (string) => option(string)</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"19"},"20":{"href":"./api/Cookie-JustgageReasonCookie.html#value-setString","title":"setString","contents":"setString string string unit ","rendered":"<h4 class='item'>let setString = (string, string) => unit</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"20"},"21":{"href":"./api/Cookie-JustgageReasonCookie.html#value-setJsonConfig","title":"setJsonConfig","contents":"setJsonConfig string Js Json t config unit ","rendered":"<h4 class='item'>let setJsonConfig = (string, Js.Json.t, <a href=\"./api/Cookie-JustgageReasonCookie.html#type-config\">config</a>) => unit</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"21"},"22":{"href":"./api/Cookie-JustgageReasonCookie.html#value-remove","title":"remove","contents":"remove string unit ","rendered":"<h4 class='item'>let remove = (string) => unit</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"22"},"23":{"href":"./api/Cookie-JustgageReasonCookie.html#value-makeConfig","title":"makeConfig","contents":"makeConfig option int option string unit config expires path ","rendered":"<h4 class='item'>let makeConfig = (\n ~?expires: option(int),\n ~?path: option(string),\n unit\n) => <a href=\"./api/Cookie-JustgageReasonCookie.html#type-config\">config</a></h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"23"},"24":{"href":"./api/Cookie-JustgageReasonCookie.html#type-config","title":"config","contents":"config ","rendered":"<h4 class='item'>type config</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"24"},"25":{"href":"./api/Cookie-JustgageReasonCookie.html#value-setJson","title":"setJson","contents":"setJson string Js Json t unit ","rendered":"<h4 class='item'>let setJson = (string, Js.Json.t) => unit</h4>","breadcrumb":"Cookie-JustgageReasonCookie","id":"25"},"26":{"href":"./api/Cookie-JustgageReasonCookie.html","title":"Cookie-JustgageReasonCookie","contents":"This module does not have a toplevel documentation block.","rendered":"<span class='missing'>This module does not have a toplevel documentation block.</span>","breadcrumb":"Cookie-JustgageReasonCookie","id":"26"},"27":{"href":"./api/Cookie-JustgageReasonCookie.html#Cookie-JustgageReasonCookie","title":"Cookie-JustgageReasonCookie","contents":"","rendered":"","breadcrumb":"Cookie-JustgageReasonCookie","id":"27"},"28":{"href":"./api/JustgageReasonCookie.html","title":"JustgageReasonCookie","contents":"This module does not have a toplevel documentation block.","rendered":"<span class='missing'>This module does not have a toplevel documentation block.</span>","breadcrumb":"JustgageReasonCookie","id":"28"},"29":{"href":"./api/JustgageReasonCookie.html#JustgageReasonCookie","title":"JustgageReasonCookie","contents":"","rendered":"","breadcrumb":"JustgageReasonCookie","id":"29"},"30":{"href":"./api/CookieTest-JustgageReasonCookie.html","title":"CookieTest-JustgageReasonCookie","contents":"This module does not have a toplevel documentation block.","rendered":"<span class='missing'>This module does not have a toplevel documentation block.</span>","breadcrumb":"CookieTest-JustgageReasonCookie","id":"30"},"31":{"href":"./api/CookieTest-JustgageReasonCookie.html#CookieTest-JustgageReasonCookie","title":"CookieTest-JustgageReasonCookie","contents":"","rendered":"","breadcrumb":"CookieTest-JustgageReasonCookie","id":"31"}},"docInfo":{"0":{"title":2,"contents":7},"1":{"title":2,"contents":1},"2":{"title":2,"contents":17},"3":{"title":2,"contents":1},"4":{"title":2,"contents":10},"5":{"title":4,"contents":1},"6":{"title":1,"contents":1},"7":{"title":2,"contents":4},"8":{"title":1,"contents":4},"9":{"title":2,"contents":5},"10":{"title":1,"contents":1},"11":{"title":1,"contents":15},"12":{"title":6,"contents":1},"13":{"title":1,"contents":5},"14":{"title":1,"contents":11},"15":{"title":1,"contents":1},"16":{"title":2,"contents":9},"17":{"title":2,"contents":1},"18":{"title":1,"contents":6},"19":{"title":1,"contents":4},"20":{"title":1,"contents":4},"21":{"title":1,"contents":7},"22":{"title":1,"contents":3},"23":{"title":1,"contents":9},"24":{"title":1,"contents":1},"25":{"title":1,"contents":6},"26":{"title":2,"contents":9},"27":{"title":2,"contents":1},"28":{"title":1,"contents":9},"29":{"title":1,"contents":1},"30":{"title":2,"contents":9},"31":{"title":2,"contents":1}},"length":32,"save":true},"index":{"title":{"root":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"0":{"tf":1},"2":{"tf":1},"4":{"tf":1},"7":{"tf":1},"9":{"tf":1}},"df":5}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"24":{"tf":1}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{"26":{"tf":1},"27":{"tf":1}},"df":2,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"30":{"tf":1},"31":{"tf":1}},"df":2}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"0":{"tf":1},"2":{"tf":1},"4":{"tf":1},"7":{"tf":1},"9":{"tf":1}},"df":5}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"1":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"20":{"tf":1}},"df":1}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"25":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"21":{"tf":1}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"5":{"tf":1}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{"1":{"tf":1}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"12":{"tf":1}},"df":1}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"3":{"tf":1},"5":{"tf":1}},"df":2}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"5":{"tf":1}},"df":1}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"3":{"tf":1}},"df":1}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{"16":{"tf":1},"17":{"tf":1},"26":{"tf":1},"27":{"tf":1},"28":{"tf":1},"29":{"tf":1},"30":{"tf":1},"31":{"tf":1}},"df":8}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"5":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{"6":{"tf":1}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"8":{"tf":1},"11":{"tf":1},"13":{"tf":1},"14":{"tf":1}},"df":4}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"10":{"tf":1}},"df":1}}}}}},"s":{"docs":{"12":{"tf":1}},"df":1},"t":{"docs":{"12":{"tf":1}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{"12":{"tf":1}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{"15":{"tf":1}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"22":{"tf":1}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"12":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"?":{"docs":{"12":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"16":{"tf":1},"17":{"tf":1}},"df":2}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"18":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"19":{"tf":1}},"df":1}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"23":{"tf":1}},"df":1}}}}}}}}}}}},"contents":{"root":{"docs":{"1":{"tf":1},"3":{"tf":1},"5":{"tf":1},"6":{"tf":1},"10":{"tf":1},"12":{"tf":1},"15":{"tf":1},"17":{"tf":1},"27":{"tf":1},"29":{"tf":1},"31":{"tf":1}},"df":11,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{"9":{"tf":1},"13":{"tf":1}},"df":2,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{"0":{"tf":1}},"df":1}}}}}}},"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{"2":{"tf":1}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{"4":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"~":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{"0":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{"2":{"tf":1}},"df":1}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{"4":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"df":0,"]":{"docs":{},"df":0,",":{"docs":{"7":{"tf":1}},"df":1}}},"s":{"docs":{"14":{"tf":1}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"14":{"tf":1}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"21":{"tf":1},"23":{"tf":1},"24":{"tf":1}},"df":3}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"14":{"tf":1}},"df":1}}}}},"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{"0":{"tf":1}},"df":1}}}}}}},"a":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{"2":{"tf":1}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{"4":{"tf":1}},"df":1}}}}}}},"b":{"docs":{},"df":0,"s":{"docs":{"7":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{"2":{"tf":1.4142135623730951}},"df":1,",":{"docs":{"0":{"tf":1}},"df":1},")":{"docs":{},"df":0,";":{"docs":{"2":{"tf":1}},"df":1}}}},"n":{"docs":{"11":{"tf":1}},"df":1},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"18":{"tf":1},"19":{"tf":1},"23":{"tf":1.4142135623730951}},"df":3}}}}}},"~":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"2":{"docs":{},"df":0,",":{"docs":{"0":{"tf":1}},"df":1}},"docs":{},"df":0}}}}}}}}},"(":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,",":{"docs":{"0":{"tf":1}},"df":1}}}},")":{"docs":{},"df":0,";":{"docs":{"0":{"tf":1}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"2":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{"11":{"tf":1}},"df":1}}}}}}},"=":{"docs":{"2":{"tf":1.7320508075688772}},"df":1},"j":{"docs":{},"df":0,"s":{"docs":{"13":{"tf":1},"18":{"tf":1},"21":{"tf":1},"25":{"tf":1}},"df":4,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{"2":{"tf":1}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,",":{"docs":{"2":{"tf":1}},"df":1}}}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"(":{"2":{"docs":{},"df":0,".":{"docs":{},"df":0,")":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{"2":{"tf":1}},"df":1}}}}},"docs":{},"df":0}}}}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"(":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,")":{"docs":{},"df":0,";":{"docs":{"2":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"18":{"tf":1},"21":{"tf":1},"25":{"tf":1}},"df":3,".":{"docs":{"14":{"tf":1}},"df":1}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{"2":{"tf":1}},"df":1}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"23":{"tf":1}},"df":1}}}}}}}}},"y":{"docs":{"11":{"tf":1}},"df":1},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}}}}}},"/":{"docs":{},"df":0,"*":{"docs":{"4":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"4":{"tf":1}},"df":1}},"t":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4,"e":{"docs":{"13":{"tf":1}},"df":1}}},"p":{"docs":{},"df":0,"m":{"docs":{"9":{"tf":1}},"df":1}}},"*":{"docs":{},"df":0,"/":{"docs":{"4":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"\"":{"docs":{},"df":0,")":{"docs":{"4":{"tf":1}},"df":1}}}}}}}}}}},"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"9":{"tf":1}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"11":{"tf":1}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"14":{"tf":1}},"df":1}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"18":{"tf":1},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1},"22":{"tf":1},"23":{"tf":1},"25":{"tf":1}},"df":7}}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"20":{"tf":1}},"df":1}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"25":{"tf":1}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"21":{"tf":1}},"df":1}}}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,":":{"docs":{"7":{"tf":1}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}}}}}}}}}}}}},"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"@":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"7":{"tf":1}},"df":1}}}}}}}}}}}}}}}}}},"t":{"docs":{"18":{"tf":1},"21":{"tf":1},"25":{"tf":1}},"df":3,"h":{"docs":{},"df":0,"e":{"docs":{"11":{"tf":1}},"df":1,"n":{"docs":{"8":{"tf":1}},"df":1}},"a":{"docs":{},"df":0,"t":{"docs":{"14":{"tf":1}},"df":1,"&":{"docs":{},"df":0,"#":{"3":{"9":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{"11":{"tf":1}},"df":1}}},"docs":{},"df":0},"docs":{},"df":0}}}},"i":{"docs":{},"df":0,"s":{"docs":{"13":{"tf":1},"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":5}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{"11":{"tf":1}},"df":1}}}}}},"o":{"docs":{"14":{"tf":1}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}}}}}}}},"i":{"docs":{"11":{"tf":1}},"df":1,"n":{"docs":{"8":{"tf":1}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"9":{"tf":1}},"df":1}}}}},"t":{"docs":{"23":{"tf":1}},"df":1}},"t":{"docs":{"11":{"tf":1}},"df":1},"s":{"docs":{"11":{"tf":1}},"df":1}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"8":{"tf":1}},"df":1}}}},"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{"8":{"tf":1}},"df":1}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"11":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"14":{"tf":1}},"df":1}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}}}}}},"@":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"9":{"tf":1}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"11":{"tf":1},"14":{"tf":1}},"df":2}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"20":{"tf":1},"21":{"tf":1},"22":{"tf":1},"23":{"tf":1},"25":{"tf":1}},"df":5}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{"11":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{"11":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"23":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"11":{"tf":1}},"df":1}},"s":{"docs":{"13":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"y":{"docs":{"14":{"tf":1}},"df":1}}},"a":{"docs":{"14":{"tf":1},"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":5},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"16":{"tf":1},"26":{"tf":1},"28":{"tf":1},"30":{"tf":1}},"df":4}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"18":{"tf":1}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"19":{"tf":1}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"22":{"tf":1}},"df":1}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"23":{"tf":1}},"df":1}}}}}}}}}},"pipeline":[]}