diff options
-rw-r--r-- | binary/index.html | 220 | ||||
-rw-r--r-- | binary/nm.html (renamed from nm.html) | 44 | ||||
-rw-r--r-- | binary/objdump.html (renamed from objdump.html) | 44 | ||||
-rw-r--r-- | binary/od.html (renamed from od.html) | 44 | ||||
-rw-r--r-- | binary/readelf.html (renamed from readelf.html) | 44 | ||||
-rw-r--r-- | binary/xxd.html (renamed from xxd.html) | 44 | ||||
-rw-r--r-- | development/c++.html (renamed from c++.html) | 44 | ||||
-rw-r--r-- | development/c++filt.html (renamed from c++filt.html) | 44 | ||||
-rw-r--r-- | development/gcc.html (renamed from gcc.html) | 48 | ||||
-rw-r--r-- | development/glibc.html (renamed from glibc.html) | 44 | ||||
-rw-r--r-- | development/index.html | 220 | ||||
-rw-r--r-- | development/ld.so.html (renamed from ld.so.html) | 52 | ||||
-rw-r--r-- | index.html | 121 | ||||
-rw-r--r-- | misc/awk.html (renamed from awk.html) | 44 | ||||
-rw-r--r-- | misc/bash.html (renamed from bash.html) | 44 | ||||
-rw-r--r-- | misc/emacs.html (renamed from emacs.html) | 44 | ||||
-rw-r--r-- | misc/fish.html (renamed from fish.html) | 44 | ||||
-rw-r--r-- | misc/gdb.html (renamed from gdb.html) | 44 | ||||
-rw-r--r-- | misc/git.html (renamed from git.html) | 44 | ||||
-rw-r--r-- | misc/index.html | 211 | ||||
-rw-r--r-- | misc/radare2.html (renamed from radare2.html) | 44 | ||||
-rw-r--r-- | misc/tmux.html (renamed from tmux.html) | 44 | ||||
-rw-r--r-- | misc/zsh.html (renamed from zsh.html) | 44 | ||||
-rw-r--r-- | monitor/index.html | 220 | ||||
-rw-r--r-- | monitor/lsof.html (renamed from lsof.html) | 44 | ||||
-rw-r--r-- | monitor/pgrep.html (renamed from pgrep.html) | 44 | ||||
-rw-r--r-- | monitor/pidstat.html (renamed from pidstat.html) | 44 | ||||
-rw-r--r-- | monitor/pmap.html | 224 | ||||
-rw-r--r-- | monitor/pstack.html (renamed from pstack.html) | 44 | ||||
-rw-r--r-- | print.html | 835 | ||||
-rw-r--r-- | searchindex.js | 2 | ||||
-rw-r--r-- | searchindex.json | 2 | ||||
-rw-r--r-- | trace_profile/index.html | 220 | ||||
-rw-r--r-- | trace_profile/ltrace.html | 231 | ||||
-rw-r--r-- | trace_profile/oprofile.html (renamed from oprofile.html) | 44 | ||||
-rw-r--r-- | trace_profile/perf.html (renamed from perf.html) | 44 | ||||
-rw-r--r-- | trace_profile/strace.html (renamed from strace.html) | 44 | ||||
-rw-r--r-- | trace_profile/time.html (renamed from time.html) | 44 |
38 files changed, 2585 insertions, 1121 deletions
diff --git a/binary/index.html b/binary/index.html new file mode 100644 index 0000000..2b47b26 --- /dev/null +++ b/binary/index.html @@ -0,0 +1,220 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>Binary - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html" class="active"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#binary" id="binary">Binary</a></h1> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../trace_profile/time.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../binary/od.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../trace_profile/time.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../binary/od.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html" class="active"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html" class="active"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -159,13 +159,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="objdump.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../binary/objdump.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="c++filt.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../development/index.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -177,13 +177,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="objdump.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../binary/objdump.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="c++filt.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../development/index.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -206,14 +206,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/objdump.html b/binary/objdump.html index 3356705..60b7529 100644 --- a/objdump.html +++ b/binary/objdump.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html" class="active"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html" class="active"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -168,13 +168,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="readelf.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../binary/readelf.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="nm.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../binary/nm.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -186,13 +186,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="readelf.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../binary/readelf.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="nm.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../binary/nm.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -215,14 +215,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html" class="active"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html" class="active"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -195,13 +195,13 @@ the <code>.rodata</code> section as follows:</p> <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="oprofile.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../binary/index.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="xxd.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../binary/xxd.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -213,13 +213,13 @@ the <code>.rodata</code> section as follows:</p> <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="oprofile.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../binary/index.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="xxd.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../binary/xxd.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -242,14 +242,14 @@ the <code>.rodata</code> section as follows:</p> - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/readelf.html b/binary/readelf.html index 02c8e9e..03a1049 100644 --- a/readelf.html +++ b/binary/readelf.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html" class="active"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html" class="active"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -165,13 +165,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="xxd.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../binary/xxd.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="objdump.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../binary/objdump.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -183,13 +183,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="xxd.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../binary/xxd.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="objdump.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../binary/objdump.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -212,14 +212,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/xxd.html b/binary/xxd.html index c20331c..ac248b4 100644 --- a/xxd.html +++ b/binary/xxd.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html" class="active"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html" class="active"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -180,13 +180,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="od.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../binary/od.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="readelf.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../binary/readelf.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -198,13 +198,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="od.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../binary/od.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="readelf.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../binary/readelf.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -227,14 +227,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/c++.html b/development/c++.html index 8dc9708..e5d5e7c 100644 --- a/c++.html +++ b/development/c++.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html" class="active"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html" class="active"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -162,13 +162,13 @@ typename decltype(foo)::_; <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="c++filt.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../development/c++filt.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="glibc.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../development/glibc.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -180,13 +180,13 @@ typename decltype(foo)::_; <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="c++filt.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../development/c++filt.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="glibc.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../development/glibc.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -209,14 +209,14 @@ typename decltype(foo)::_; - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/c++filt.html b/development/c++filt.html index e8966ff..24a7ac5 100644 --- a/c++filt.html +++ b/development/c++filt.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html" class="active"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html" class="active"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -162,13 +162,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="nm.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../development/index.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="c++.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../development/c++.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -180,13 +180,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="nm.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../development/index.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="c++.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../development/c++.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -209,14 +209,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/gcc.html b/development/gcc.html index 196ab3a..bf457aa 100644 --- a/gcc.html +++ b/development/gcc.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html" class="active"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html" class="active"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -204,12 +204,16 @@ run1: <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="glibc.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../development/glibc.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> + <a rel="next" href="../development/ld.so.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + <div style="clear: both"></div> </nav> @@ -218,12 +222,16 @@ run1: <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="glibc.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../development/glibc.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> + <a href="../development/ld.so.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + </nav> </div> @@ -243,14 +251,14 @@ run1: - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/glibc.html b/development/glibc.html index cf2e12a..abf590f 100644 --- a/glibc.html +++ b/development/glibc.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html" class="active"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html" class="active"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -184,13 +184,13 @@ LD_PRELOAD=./libmtrace.so <binary> <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="c++.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../development/c++.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="gcc.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../development/gcc.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -202,13 +202,13 @@ LD_PRELOAD=./libmtrace.so <binary> <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="c++.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../development/c++.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="gcc.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../development/gcc.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -231,14 +231,14 @@ LD_PRELOAD=./libmtrace.so <binary> - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/development/index.html b/development/index.html new file mode 100644 index 0000000..56cf7c5 --- /dev/null +++ b/development/index.html @@ -0,0 +1,220 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>Development - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html" class="active"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#development" id="development">Development</a></h1> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../binary/nm.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../development/c++filt.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../binary/nm.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../development/c++filt.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/ld.so.html b/development/ld.so.html index 8b18d0f..3a66986 100644 --- a/ld.so.html +++ b/development/ld.so.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html" class="active"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html" class="active"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -265,13 +265,13 @@ As we can see the offset from relocation at index <code>0</code> points to <code <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - - - <a rel="next" href="git.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> - <i class="fa fa-angle-right"></i> + <a rel="prev" href="../development/gcc.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> </a> + + <div style="clear: both"></div> </nav> </div> @@ -279,12 +279,12 @@ As we can see the offset from relocation at index <code>0</code> points to <code <nav class="nav-wide-wrapper" aria-label="Page navigation"> - - - <a href="git.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> - <i class="fa fa-angle-right"></i> + <a href="../development/gcc.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> </a> + + </nav> </div> @@ -304,14 +304,14 @@ As we can see the offset from relocation at index <code>0</code> points to <code - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -3,7 +3,7 @@ <head> <!-- Book generated using mdBook --> <meta charset="UTF-8"> - <title>ld.so - Notes</title> + <title>Misc - Notes</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -148,118 +148,7 @@ <div id="content" class="content"> <main> - <h1><a class="header" href="#ldso8" id="ldso8">ld.so(8)</a></h1> -<h2><a class="header" href="#environment-variables" id="environment-variables">Environment Variables</a></h2> -<pre><code class="language-console"> LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded - LD_DEBUG=<opts> comma separated list of debug options - =help list available options - =libs show library search path - =files processing of input files - =symbols show search path for symbol lookup - =bindings show against which definition a symbol is bound -</code></pre> -<h2><a class="header" href="#ld_preload-initialization-order-and-link-map" id="ld_preload-initialization-order-and-link-map">LD_PRELOAD: Initialization Order and Link Map</a></h2> -<p>Libraries specified in <code>LD_PRELOAD</code> are loaded from <code>left-to-right</code> but -initialized from <code>right-to-left</code>.</p> -<pre><code class="language-markdown"> > ldd ./main - >> libc.so.6 => /usr/lib/libc.so.6 - - > LD_PRELOAD=liba.so:libb.so ./main - --> - preloaded in this order - <-- - initialized in this order -</code></pre> -<p>The preload order determines:</p> -<ul> -<li>the order libraries are inserted into the <code>link map</code></li> -<li>the initialization order for libraries</li> -</ul> -<p>For the example listed above the resulting <code>link map</code> will look like the -following:</p> -<pre><code class="language-makrdown"> +------+ +------+ +------+ +------+ - | main | -> | liba | -> | libb | -> | libc | - +------+ +------+ +------+ +------+ -</code></pre> -<p>This can be seen when running with <code>LD_DEBUG=files</code>:</p> -<pre><code class="language-makrdown"> > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main - # load order (-> determines link map) - >> file=liba.so [0]; generating link map - >> file=libb.so [0]; generating link map - >> file=libc.so.6 [0]; generating link map - - # init order - >> calling init: /usr/lib/libc.so.6 - >> calling init: <path>/libb.so - >> calling init: <path>/liba.so - >> initialize program: ./main -</code></pre> -<p>To verify the <code>link map</code> order we let <code>ld.so</code> resolve the <code>memcpy(3)</code> libc -symbol (used in <em>main</em>) dynamically, while enabling <code>LD_DEBUG=symbols,bindings</code> -to see the resolving in action.</p> -<pre><code class="language-makrdown"> > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main - >> symbol=memcpy; lookup in file=./main [0] - >> symbol=memcpy; lookup in file=<path>/liba.so [0] - >> symbol=memcpy; lookup in file=<path>/libb.so [0] - >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] - >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14] -</code></pre> -<h2><a class="header" href="#dynamic-linking-x86_64" id="dynamic-linking-x86_64">Dynamic Linking (x86_64)</a></h2> -<p>Dynamic linking basically works via one indirect jump. It uses a combination of -function trampolines (<code>.plt</code> section) and a function pointer table (<code>.got.plt</code> -section). -On the first call the trampoline sets up some metadata and then jumps to the -<code>ld.so</code> runtime resolve function, which in turn patches the table with the -correct function pointer.</p> -<pre><code class="language-makrdown"> .plt ....... procedure linkage table, contains function trampolines, usually - located in code segment (rx permission) - .got.plt ... global offset table for .plt, holds the function pointer table -</code></pre> -<p>Using <code>radare2</code> we can analyze this in more detail:</p> -<pre><code class="language-makrdown"> [0x00401040]> pd 4 @ section..got.plt - ;-- section..got.plt: - ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt - ;-- _GLOBAL_OFFSET_TABLE_: - [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic - [1] 0x00404008 .qword 0x0000000000000000 - ; CODE XREF from section..plt @ +0x6 - [2] 0x00404010 .qword 0x0000000000000000 - ;-- reloc.puts: - ; CODE XREF from sym.imp.puts @ 0x401030 - [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts - - [0x00401040]> pd 6 @ section..plt - ;-- section..plt: - ;-- .plt: ; [12] -r-x section size 32 named .plt - ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] - ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] - ╎ 0x0040102c 0f1f4000 nop dword [rax] - ┌ 6: int sym.imp.puts (const char *s); - └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] - ╎ 0x00401036 6800000000 push 0 - └─< 0x0040103b e9e0ffffff jmp sym..plt -</code></pre> -<ul> -<li>At address <code>0x00401030</code> in the <code>.plt</code> section we see the indirect jump for -<code>puts</code> using the function pointer in <code>_GLOBAL_OFFSET_TABLE_[3] (GOT)</code>.</li> -<li><code>GOT[3]</code> initially points to instruction after the <code>puts</code> trampoline -<code>0x00401036</code>.</li> -<li>This pushes the relocation index <code>0</code> and then jumps to the first trampoline -<code>0x00401020</code>.</li> -<li>The first trampoline jumps to <code>GOT[2]</code> which will be filled at program -startup by the <code>ld.so</code> with its resolve function.</li> -<li>The <code>ld.so</code> resolve function fixes the relocation referenced by the -relocation index pushed by the <code>puts</code> trampoline.</li> -<li>The relocation entry at index <code>0</code> tells the resolve function which symbol to -search for and where to put the function pointer: -<pre><code class="language-makrdown"> > readelf -r <main> - >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: - >> Offset Info Type Sym. Value Sym. Name + Addend - >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 -</code></pre> -As we can see the offset from relocation at index <code>0</code> points to <code>GOT[3]</code>.</li> -</ul> - + </main> <nav class="nav-wrapper" aria-label="Page navigation"> @@ -267,7 +156,7 @@ As we can see the offset from relocation at index <code>0</code> points to <code - <a rel="next" href="git.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="misc/zsh.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -281,7 +170,7 @@ As we can see the offset from relocation at index <code>0</code> points to <code - <a href="git.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="misc/zsh.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html" class="active"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html" class="active"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -269,13 +269,13 @@ in the <code>user</code> variable and then print it.</p> <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="tmux.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/git.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="gdb.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/emacs.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -287,13 +287,13 @@ in the <code>user</code> variable and then print it.</p> <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="tmux.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/git.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="gdb.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/emacs.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -316,14 +316,14 @@ in the <code>user</code> variable and then print it.</p> - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/bash.html b/misc/bash.html index 87a909f..6845b68 100644 --- a/bash.html +++ b/misc/bash.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html" class="active"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html" class="active"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -295,13 +295,13 @@ complete -F _foo foo <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="git.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/zsh.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="zsh.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/fish.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -313,13 +313,13 @@ complete -F _foo foo <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="git.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/zsh.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="zsh.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/fish.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -342,14 +342,14 @@ complete -F _foo foo - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/emacs.html b/misc/emacs.html index 382f68a..64efa58 100644 --- a/emacs.html +++ b/misc/emacs.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html" class="active"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html" class="active"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -218,13 +218,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="radare2.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/awk.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="fish.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/gdb.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -236,13 +236,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="radare2.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/awk.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="fish.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/gdb.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -265,14 +265,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/fish.html b/misc/fish.html index e9c64b7..ccf5a0f 100644 --- a/fish.html +++ b/misc/fish.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html" class="active"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html" class="active"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -166,13 +166,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="emacs.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/bash.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="strace.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/tmux.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -184,13 +184,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="emacs.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/bash.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="strace.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/tmux.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -213,14 +213,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html" class="active"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html" class="active"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -293,13 +293,13 @@ executed. To workaround that bug one can create a wrapper function which calls <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="awk.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/emacs.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="radare2.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/radare2.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -311,13 +311,13 @@ executed. To workaround that bug one can create a wrapper function which calls <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="awk.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/emacs.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="radare2.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/radare2.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -340,14 +340,14 @@ executed. To workaround that bug one can create a wrapper function which calls - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html" class="active"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html" class="active"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -259,13 +259,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="ld.so.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/tmux.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="bash.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/awk.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -277,13 +277,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="ld.so.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/tmux.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="bash.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/awk.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -306,14 +306,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/misc/index.html b/misc/index.html new file mode 100644 index 0000000..6279ddd --- /dev/null +++ b/misc/index.html @@ -0,0 +1,211 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>Misc - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html" class="active"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + + + <a rel="next" href="../misc/zsh.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + + + <a href="../misc/zsh.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/radare2.html b/misc/radare2.html index 88c39e5..0906f41 100644 --- a/radare2.html +++ b/misc/radare2.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html" class="active"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html" class="active"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -173,13 +173,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="gdb.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/gdb.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="emacs.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../monitor/index.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -191,13 +191,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="gdb.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/gdb.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="emacs.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../monitor/index.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -220,14 +220,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/tmux.html b/misc/tmux.html index 6a4e1ca..46774d5 100644 --- a/tmux.html +++ b/misc/tmux.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html" class="active"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html" class="active"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -251,13 +251,13 @@ list-keys -t vi-copy list keymaps for vi-copy mode <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="zsh.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/fish.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="awk.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/git.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -269,13 +269,13 @@ list-keys -t vi-copy list keymaps for vi-copy mode <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="zsh.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/fish.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="awk.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/git.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -298,14 +298,14 @@ list-keys -t vi-copy list keymaps for vi-copy mode - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html" class="active"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html" class="active"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -255,13 +255,13 @@ function _foo() { <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="bash.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../misc/index.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="tmux.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../misc/bash.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -273,13 +273,13 @@ function _foo() { <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="bash.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../misc/index.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="tmux.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../misc/bash.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -302,14 +302,14 @@ function _foo() { - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/monitor/index.html b/monitor/index.html new file mode 100644 index 0000000..3c31883 --- /dev/null +++ b/monitor/index.html @@ -0,0 +1,220 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>Resource analysis & monitor - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html" class="active"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#resource-analysis--monitor" id="resource-analysis--monitor">Resource analysis & monitor</a></h1> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../misc/radare2.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../monitor/lsof.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../misc/radare2.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../monitor/lsof.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/lsof.html b/monitor/lsof.html index 4e41ede..51c8327 100644 --- a/lsof.html +++ b/monitor/lsof.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html" class="active"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html" class="active"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -184,13 +184,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="strace.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../monitor/index.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="pidstat.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../monitor/pidstat.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -202,13 +202,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="strace.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../monitor/index.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="pidstat.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../monitor/pidstat.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -231,14 +231,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/pgrep.html b/monitor/pgrep.html index 3e862cf..888690d 100644 --- a/pgrep.html +++ b/monitor/pgrep.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html" class="active"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html" class="active"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -165,13 +165,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="time.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../monitor/pidstat.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="pstack.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../monitor/pmap.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -183,13 +183,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="time.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../monitor/pidstat.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="pstack.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../monitor/pmap.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -212,14 +212,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/pidstat.html b/monitor/pidstat.html index ee411d1..c451072 100644 --- a/pidstat.html +++ b/monitor/pidstat.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html" class="active"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html" class="active"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -177,13 +177,13 @@ major_pagefault: Happens when the page needed is NOT in memory, the kernel <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="lsof.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../monitor/lsof.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="time.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../monitor/pgrep.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -195,13 +195,13 @@ major_pagefault: Happens when the page needed is NOT in memory, the kernel <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="lsof.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../monitor/lsof.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="time.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../monitor/pgrep.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -224,14 +224,14 @@ major_pagefault: Happens when the page needed is NOT in memory, the kernel - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/monitor/pmap.html b/monitor/pmap.html new file mode 100644 index 0000000..9e37c1e --- /dev/null +++ b/monitor/pmap.html @@ -0,0 +1,224 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>pmap - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html" class="active"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#pmap1" id="pmap1">pmap(1)</a></h1> +<pre><code class="language-markdown">pmap <pid> + Dump virtual memory map of process. + Compared to /proc/<pid>/maps it shows the size of the mappings. +</code></pre> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../monitor/pgrep.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../monitor/pstack.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../monitor/pgrep.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../monitor/pstack.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/pstack.html b/monitor/pstack.html index 1c693f2..2458a7c 100644 --- a/pstack.html +++ b/monitor/pstack.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html" class="active"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html" class="active"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -158,13 +158,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="pgrep.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../monitor/pmap.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="perf.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../trace_profile/index.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -176,13 +176,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="pgrep.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../monitor/pmap.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="perf.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../trace_profile/index.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -205,14 +205,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> @@ -83,7 +83,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -150,221 +150,106 @@ <div id="content" class="content"> <main> - <h1><a class="header" href="#ldso8" id="ldso8">ld.so(8)</a></h1> -<h2><a class="header" href="#environment-variables" id="environment-variables">Environment Variables</a></h2> -<pre><code class="language-console"> LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded - LD_DEBUG=<opts> comma separated list of debug options - =help list available options - =libs show library search path - =files processing of input files - =symbols show search path for symbol lookup - =bindings show against which definition a symbol is bound + <h1><a class="header" href="#zsh1" id="zsh1">zsh(1)</a></h1> +<h2><a class="header" href="#keybindings" id="keybindings">Keybindings</a></h2> +<p>Change input mode:</p> +<pre><code class="language-zsh">bindkey -v change to vi keymap +bindkey -e change to emacs keymap </code></pre> -<h2><a class="header" href="#ld_preload-initialization-order-and-link-map" id="ld_preload-initialization-order-and-link-map">LD_PRELOAD: Initialization Order and Link Map</a></h2> -<p>Libraries specified in <code>LD_PRELOAD</code> are loaded from <code>left-to-right</code> but -initialized from <code>right-to-left</code>.</p> -<pre><code class="language-markdown"> > ldd ./main - >> libc.so.6 => /usr/lib/libc.so.6 +<p>Define key-mappings:</p> +<pre><code class="language-zsh">bindkey list mappings in current keymap +bindkey in-str cmd create mapping for `in-str` to `cmd` +bindkey -r in-str remove binding for `in-str` - > LD_PRELOAD=liba.so:libb.so ./main - --> - preloaded in this order - <-- - initialized in this order -</code></pre> -<p>The preload order determines:</p> -<ul> -<li>the order libraries are inserted into the <code>link map</code></li> -<li>the initialization order for libraries</li> -</ul> -<p>For the example listed above the resulting <code>link map</code> will look like the -following:</p> -<pre><code class="language-makrdown"> +------+ +------+ +------+ +------+ - | main | -> | liba | -> | libb | -> | libc | - +------+ +------+ +------+ +------+ +# C-v <key> dump <key> code, which can be used in `in-str` +# zle -l list all functions for keybindings +# man zshzle(1) STANDARD WIDGETS: get description of functions </code></pre> -<p>This can be seen when running with <code>LD_DEBUG=files</code>:</p> -<pre><code class="language-makrdown"> > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main - # load order (-> determines link map) - >> file=liba.so [0]; generating link map - >> file=libb.so [0]; generating link map - >> file=libc.so.6 [0]; generating link map +<h2><a class="header" href="#completion" id="completion">Completion</a></h2> +<h3><a class="header" href="#installation" id="installation">Installation</a></h3> +<p>Completion functions are provided via files and need to be placed in a location +covered by <code>$fpath</code>. By convention the completion files are names as <code>_<CMD></code>.</p> +<p>A completion skeleton for the command <code>foo</code>, stored in <code>_foo</code></p> +<pre><code class="language-zsh">#compdef _foo foo - # init order - >> calling init: /usr/lib/libc.so.6 - >> calling init: <path>/libb.so - >> calling init: <path>/liba.so - >> initialize program: ./main -</code></pre> -<p>To verify the <code>link map</code> order we let <code>ld.so</code> resolve the <code>memcpy(3)</code> libc -symbol (used in <em>main</em>) dynamically, while enabling <code>LD_DEBUG=symbols,bindings</code> -to see the resolving in action.</p> -<pre><code class="language-makrdown"> > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main - >> symbol=memcpy; lookup in file=./main [0] - >> symbol=memcpy; lookup in file=<path>/liba.so [0] - >> symbol=memcpy; lookup in file=<path>/libb.so [0] - >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] - >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14] -</code></pre> -<h2><a class="header" href="#dynamic-linking-x86_64" id="dynamic-linking-x86_64">Dynamic Linking (x86_64)</a></h2> -<p>Dynamic linking basically works via one indirect jump. It uses a combination of -function trampolines (<code>.plt</code> section) and a function pointer table (<code>.got.plt</code> -section). -On the first call the trampoline sets up some metadata and then jumps to the -<code>ld.so</code> runtime resolve function, which in turn patches the table with the -correct function pointer.</p> -<pre><code class="language-makrdown"> .plt ....... procedure linkage table, contains function trampolines, usually - located in code segment (rx permission) - .got.plt ... global offset table for .plt, holds the function pointer table +function _foo() { + ... +} </code></pre> -<p>Using <code>radare2</code> we can analyze this in more detail:</p> -<pre><code class="language-makrdown"> [0x00401040]> pd 4 @ section..got.plt - ;-- section..got.plt: - ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt - ;-- _GLOBAL_OFFSET_TABLE_: - [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic - [1] 0x00404008 .qword 0x0000000000000000 - ; CODE XREF from section..plt @ +0x6 - [2] 0x00404010 .qword 0x0000000000000000 - ;-- reloc.puts: - ; CODE XREF from sym.imp.puts @ 0x401030 - [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts - - [0x00401040]> pd 6 @ section..plt - ;-- section..plt: - ;-- .plt: ; [12] -r-x section size 32 named .plt - ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] - ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] - ╎ 0x0040102c 0f1f4000 nop dword [rax] - ┌ 6: int sym.imp.puts (const char *s); - └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] - ╎ 0x00401036 6800000000 push 0 - └─< 0x0040103b e9e0ffffff jmp sym..plt +<p>Alternatively one can install a completion function explicitly by calling <code>compdef <FUNC> <CMD></code>.</p> +<h3><a class="header" href="#completion-variables" id="completion-variables">Completion Variables</a></h3> +<p>Following variables are available in Completion functions:</p> +<pre><code class="language-zsh">$words # array with command line in words +$#words # number words +$CURRENT # index into $words for cursor position +$words[CURRENT-1] # previous word (relative to cursor position) </code></pre> +<h3><a class="header" href="#completion-functions" id="completion-functions">Completion Functions</a></h3> <ul> -<li>At address <code>0x00401030</code> in the <code>.plt</code> section we see the indirect jump for -<code>puts</code> using the function pointer in <code>_GLOBAL_OFFSET_TABLE_[3] (GOT)</code>.</li> -<li><code>GOT[3]</code> initially points to instruction after the <code>puts</code> trampoline -<code>0x00401036</code>.</li> -<li>This pushes the relocation index <code>0</code> and then jumps to the first trampoline -<code>0x00401020</code>.</li> -<li>The first trampoline jumps to <code>GOT[2]</code> which will be filled at program -startup by the <code>ld.so</code> with its resolve function.</li> -<li>The <code>ld.so</code> resolve function fixes the relocation referenced by the -relocation index pushed by the <code>puts</code> trampoline.</li> -<li>The relocation entry at index <code>0</code> tells the resolve function which symbol to -search for and where to put the function pointer: -<pre><code class="language-makrdown"> > readelf -r <main> - >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: - >> Offset Info Type Sym. Value Sym. Name + Addend - >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 -</code></pre> -As we can see the offset from relocation at index <code>0</code> points to <code>GOT[3]</code>.</li> +<li><code>_describe</code> simple completion, just words + description</li> +<li><code>_arguments</code> sophisticated completion, allow to specify actions</li> </ul> -<h1><a class="header" href="#git1" id="git1">git(1)</a></h1> -<h2><a class="header" href="#staging" id="staging">staging</a></h2> -<pre><code class="language-markdown"> git add -p [<file>] ............ partial staging (interactive) -</code></pre> -<h2><a class="header" href="#remote" id="remote">Remote</a></h2> -<pre><code class="language-markdown"> git remote -v .................. list remotes verbose (with URLs) - git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, - remote branches, tracking mapping) -</code></pre> -<h2><a class="header" href="#branching" id="branching">Branching</a></h2> -<pre><code class="language-markdown"> git branch [-a] ................ list available branches; -a to include - remote branches - git branch -vv ................. list branch & annotate with head sha1 & - remote tracking branch - git branch <bname> ............. create branch with name <bname> - git checkout <bname> ........... switch to branch with name <bname> - git push -u origin <rbname> .... push branch to origin (or other remote), and - setup <rbname> as tracking branch -</code></pre> -<h2><a class="header" href="#resetting" id="resetting">Resetting</a></h2> -<pre><code class="language-markdown"> git reset [opt] <ref|commit> - opt: - --mixed .................... resets index, but not working tree - --hard ..................... matches the working tree and index to that - of the tree being switched to any changes to - tracked files in the working tree since - <commit> are lost - git reset HEAD <file> .......... remove file from staging - git reset --soft HEAD~1 ........ delete most recent commit but keep work - git reset --hard HEAD~1 ........ delete most recent commit and delete work +<h4><a class="header" href="#completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_describea" id="completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_describea">Completion with <a href="http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions"><code>_describe</code></a></a></h4> +<pre><code class="language-zsh">_describe MSG COMP </code></pre> -<h2><a class="header" href="#tags" id="tags">Tags</a></h2> -<pre><code class="language-markdown"> git tag -a <tname> -m "descr" ........ creates an annotated tag (full object - containing tagger, date, ...) - git tag -l ........................... list available tags - git checkout tag/<tname> ............. checkout specific tag - git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch +<ul> +<li><code>MSG</code> simple string with header message</li> +<li><code>COMP</code> array of completions where each entry is <code>"opt:description"</code></li> +</ul> +<pre><code class="language-zsh">function _foo() { + local -a opts + opts=('bla:desc for bla' 'blu:desc for blu') + _describe 'foo-msg' opts +} +compdef _foo foo + +foo <TAB><TAB> + -- foo-msg -- +bla -- desc for bla +blu -- desc for blu </code></pre> -<h2><a class="header" href="#diff" id="diff">Diff</a></h2> -<pre><code class="language-markdown"> git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs - git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs - instead of usual diff snippets +<h4><a class="header" href="#completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_argumentsa" id="completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_argumentsa">Completion with <a href="http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions"><code>_arguments</code></a></a></h4> +<pre><code class="language-zsh">_arguments SPEC [SPEC...] </code></pre> -<h2><a class="header" href="#log" id="log">Log</a></h2> -<pre><code class="language-markdown"> git log --oneline .... shows log in single line per commit -> alias for - '--pretty=oneline --abbrev-commit' - git log --graph ...... text based graph of commit history - git log --decorate ... decorate log with REFs +<p>where <code>SPEC</code> can have one of the following forms:</p> +<ul> +<li><code>OPT[DESC]:MSG:ACTION</code></li> +<li><code>N:MSG:ACTION</code></li> +</ul> +<p>Available actions</p> +<pre><code class="language-zsh">(op1 op2) list possible matches +->VAL set $state=VAL and continue, `$state` can be checked later in switch case +FUNC call func to generate matches +{STR} evaluate `STR` to generate matches </code></pre> -<h2><a class="header" href="#file-history" id="file-history">File history</a></h2> -<pre><code class="language-markdown"> git log -p <file> ......... show commit history + diffs for <file> - git log --oneline <file> .. show commit history for <file> in compact format +<h3><a class="header" href="#example" id="example">Example</a></h3> +<p>Skeleton to copy/paste for writing simple completions.</p> +<p>Assume a program <code>foo</code> with the following interface:</p> +<pre><code class="language-zsh">foo -c green|red|blue -s low|high -f <file> -d <dir> -h </code></pre> -<h2><a class="header" href="#patching" id="patching">Patching</a></h2> -<pre><code class="language-markdown"> git format-patch <opt> <since>/<revision range> - opt: - -N ................... use [PATCH] instead [PATCH n/m] in subject when - generating patch description (for patches spanning - multiple commits) - --start-number <n> ... start output file generation with <n> as start - number instead '1' - since spcifier: - -3 .................. e.g: create a patch from last three commits - <commit hash> ....... create patch with commits starting after <commit hash> - - git am <patch> ......... apply patch and create a commit for it +<p>The completion handler could be implemented as follows in a file called <code>_foo</code>:</p> +<pre><code class="language-zsh">#compdef _foo foo - git apply --stat <PATCH> ... see which files the patch would change - git apply --check <PATCH> .. see if the patch can be applied cleanly - git apply <PATCH> .......... apply the patch locally without creating a commit +function _foo_color() { + local colors=() + colors+=('green:green color') + colors+=('red:red color') + colors+=('blue:blue color') + _describe "color" colors +} - # eg: generate patches for each commit from initial commit on - git format-patch -N $(git rev-list --max-parents=0 HEAD) +function _foo() { + _arguments \ + "-c[define color]:color:->s_color" \ + "-s[select sound]:color:(low high)" \ + "-f[select file]:file:_files" \ + "-d[select dir]:fir:_files -/" \ + "-h[help]" - # generate single patch file from a certain commit/ref - git format-patch <COMMIT/REF> --stdout > my-patch.patch -</code></pre> -<h2><a class="header" href="#submodules" id="submodules">Submodules</a></h2> -<pre><code class="language-markdown"> git submodule add <url> [<path>] .......... add new submodule to current project - git clone --recursive <url> ............... clone project and recursively all - submodules (same as using - 'git submodule update --init - --recursive' after clone) - git submodule update --init --recursive ... checkout submodules recursively - using the commit listed in the - super-project (in detached HEAD) - git submodule update --remote <submod> .... fetch & merge remote changes for - <submod>, this will pull - origin/HEAD or a branch specified - for the submodule - git diff --submodule ...................... show commits that are part of the - submodule diff -</code></pre> -<h2><a class="header" href="#inspection" id="inspection">Inspection</a></h2> -<pre><code class="language-markdown"> git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees - git show <obj> ............ show <obj> - git cat-file -p <obj> ..... print content of <obj> -</code></pre> -<h2><a class="header" href="#revision-specifier" id="revision-specifier">Revision Specifier</a></h2> -<pre><code class="language-markdown"> HEAD ........ last commit - HEAD~1 ...... last commit-1 - HEAD~N ...... last commit-N (linear backwards when in tree structure, check - difference between HEAD^ and HEAD~) - git rev-list --max-parents=0 HEAD ........... first commit + case $state in + s_color) _foo_color;; + esac +} </code></pre> <h1><a class="header" href="#bash1" id="bash1">bash(1)</a></h1> <h2><a class="header" href="#expansion" id="expansion">Expansion</a></h2> @@ -402,7 +287,7 @@ ${foo/pattern/string} # replace pattern with string when expanding foo # '%' pattern match at end </code></pre> <blockquote> -<p>Note: <code>prefix</code>/<code>suffix</code>/<code>pattern</code> are expanded as <a href="bash.html#pathname">pathnames</a>.</p> +<p>Note: <code>prefix</code>/<code>suffix</code>/<code>pattern</code> are expanded as <a href="misc/bash.html#pathname">pathnames</a>.</p> </blockquote> <h3><a class="header" href="#pathname" id="pathname">Pathname</a></h3> <pre><code class="language-bash">* match any string @@ -451,7 +336,7 @@ command 2>&1 >file <li>duplicate <code>fd 1</code> to <code>fd 2</code>, effectively redirecting <code>stderr</code> to <code>stdout</code></li> <li>redirect <code>stdout</code> to <code>file</code></li> </ol> -<h2><a class="header" href="#completion" id="completion">Completion</a></h2> +<h2><a class="header" href="#completion-1" id="completion-1">Completion</a></h2> <p>The <code>complete</code> builtin is used to interact with the completion system.</p> <pre><code class="language-bash">complete # print currently installed completion handler complete -F <func> <cmd> # install <func> as completion handler for <cmd> @@ -486,7 +371,7 @@ compgen -W "foo foobar bar" "f" # compare "hom" against file/dir names and generate matches compgen -d -f "hom" </code></pre> -<h3><a class="header" href="#example" id="example">Example</a></h3> +<h3><a class="header" href="#example-1" id="example-1">Example</a></h3> <p>Skeleton to copy/paste for writing simple completions.</p> <p>Assume a program <code>foo</code> with the following interface:</p> <pre><code class="language-bash">foo -c green|red|blue -s low|high -f <file> -h @@ -507,106 +392,17 @@ compgen -d -f "hom" complete -F _foo foo </code></pre> -<h1><a class="header" href="#zsh1" id="zsh1">zsh(1)</a></h1> -<h2><a class="header" href="#keybindings" id="keybindings">Keybindings</a></h2> -<p>Change input mode:</p> -<pre><code class="language-zsh">bindkey -v change to vi keymap -bindkey -e change to emacs keymap -</code></pre> -<p>Define key-mappings:</p> -<pre><code class="language-zsh">bindkey list mappings in current keymap -bindkey in-str cmd create mapping for `in-str` to `cmd` -bindkey -r in-str remove binding for `in-str` - -# C-v <key> dump <key> code, which can be used in `in-str` -# zle -l list all functions for keybindings -# man zshzle(1) STANDARD WIDGETS: get description of functions -</code></pre> -<h2><a class="header" href="#completion-1" id="completion-1">Completion</a></h2> -<h3><a class="header" href="#installation" id="installation">Installation</a></h3> -<p>Completion functions are provided via files and need to be placed in a location -covered by <code>$fpath</code>. By convention the completion files are names as <code>_<CMD></code>.</p> -<p>A completion skeleton for the command <code>foo</code>, stored in <code>_foo</code></p> -<pre><code class="language-zsh">#compdef _foo foo - -function _foo() { - ... -} -</code></pre> -<p>Alternatively one can install a completion function explicitly by calling <code>compdef <FUNC> <CMD></code>.</p> -<h3><a class="header" href="#completion-variables" id="completion-variables">Completion Variables</a></h3> -<p>Following variables are available in Completion functions:</p> -<pre><code class="language-zsh">$words # array with command line in words -$#words # number words -$CURRENT # index into $words for cursor position -$words[CURRENT-1] # previous word (relative to cursor position) -</code></pre> -<h3><a class="header" href="#completion-functions" id="completion-functions">Completion Functions</a></h3> -<ul> -<li><code>_describe</code> simple completion, just words + description</li> -<li><code>_arguments</code> sophisticated completion, allow to specify actions</li> -</ul> -<h4><a class="header" href="#completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_describea" id="completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_describea">Completion with <a href="http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions"><code>_describe</code></a></a></h4> -<pre><code class="language-zsh">_describe MSG COMP -</code></pre> -<ul> -<li><code>MSG</code> simple string with header message</li> -<li><code>COMP</code> array of completions where each entry is <code>"opt:description"</code></li> -</ul> -<pre><code class="language-zsh">function _foo() { - local -a opts - opts=('bla:desc for bla' 'blu:desc for blu') - _describe 'foo-msg' opts -} -compdef _foo foo - -foo <TAB><TAB> - -- foo-msg -- -bla -- desc for bla -blu -- desc for blu -</code></pre> -<h4><a class="header" href="#completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_argumentsa" id="completion-with-a-hrefhttpzshsourceforgenetdocreleasecompletion-systemhtmlcompletion-functions_argumentsa">Completion with <a href="http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions"><code>_arguments</code></a></a></h4> -<pre><code class="language-zsh">_arguments SPEC [SPEC...] -</code></pre> -<p>where <code>SPEC</code> can have one of the following forms:</p> -<ul> -<li><code>OPT[DESC]:MSG:ACTION</code></li> -<li><code>N:MSG:ACTION</code></li> -</ul> -<p>Available actions</p> -<pre><code class="language-zsh">(op1 op2) list possible matches -->VAL set $state=VAL and continue, `$state` can be checked later in switch case -FUNC call func to generate matches -{STR} evaluate `STR` to generate matches -</code></pre> -<h3><a class="header" href="#example-1" id="example-1">Example</a></h3> -<p>Skeleton to copy/paste for writing simple completions.</p> -<p>Assume a program <code>foo</code> with the following interface:</p> -<pre><code class="language-zsh">foo -c green|red|blue -s low|high -f <file> -d <dir> -h +<h1><a class="header" href="#fish1" id="fish1">fish(1)</a></h1> +<h2><a class="header" href="#keymaps" id="keymaps">keymaps</a></h2> +<pre><code class="language-markdown"> Shift-Tab ........... tab-completion with search + Alt-Up / Alt-Down ... search history with token under the cursor + Alt-l ............... list content of dir under cursor + Alt-p ............... append '2>&1 | less;' to current cmdline </code></pre> -<p>The completion handler could be implemented as follows in a file called <code>_foo</code>:</p> -<pre><code class="language-zsh">#compdef _foo foo - -function _foo_color() { - local colors=() - colors+=('green:green color') - colors+=('red:red color') - colors+=('blue:blue color') - _describe "color" colors -} - -function _foo() { - _arguments \ - "-c[define color]:color:->s_color" \ - "-s[select sound]:color:(low high)" \ - "-f[select file]:file:_files" \ - "-d[select dir]:fir:_files -/" \ - "-h[help]" - - case $state in - s_color) _foo_color;; - esac -} +<h2><a class="header" href="#debug" id="debug">debug</a></h2> +<pre><code class="language-markdown"> status print-stack-trace .. prints function stacktrace (can be used in scripts) + breakpoint ................ halt script execution and gives shell (C-d | exit + to continue) </code></pre> <h1><a class="header" href="#tmux1" id="tmux1">tmux(1)</a></h1> <p>Terminology:</p> @@ -705,6 +501,111 @@ y yank selected text <pre><code class="language-markdown">setw synchronize-panes on/off enables/disables synchronized input to all panes list-keys -t vi-copy list keymaps for vi-copy mode </code></pre> +<h1><a class="header" href="#git1" id="git1">git(1)</a></h1> +<h2><a class="header" href="#staging" id="staging">staging</a></h2> +<pre><code class="language-markdown"> git add -p [<file>] ............ partial staging (interactive) +</code></pre> +<h2><a class="header" href="#remote" id="remote">Remote</a></h2> +<pre><code class="language-markdown"> git remote -v .................. list remotes verbose (with URLs) + git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, + remote branches, tracking mapping) +</code></pre> +<h2><a class="header" href="#branching" id="branching">Branching</a></h2> +<pre><code class="language-markdown"> git branch [-a] ................ list available branches; -a to include + remote branches + git branch -vv ................. list branch & annotate with head sha1 & + remote tracking branch + git branch <bname> ............. create branch with name <bname> + git checkout <bname> ........... switch to branch with name <bname> + git push -u origin <rbname> .... push branch to origin (or other remote), and + setup <rbname> as tracking branch +</code></pre> +<h2><a class="header" href="#resetting" id="resetting">Resetting</a></h2> +<pre><code class="language-markdown"> git reset [opt] <ref|commit> + opt: + --mixed .................... resets index, but not working tree + --hard ..................... matches the working tree and index to that + of the tree being switched to any changes to + tracked files in the working tree since + <commit> are lost + git reset HEAD <file> .......... remove file from staging + git reset --soft HEAD~1 ........ delete most recent commit but keep work + git reset --hard HEAD~1 ........ delete most recent commit and delete work +</code></pre> +<h2><a class="header" href="#tags" id="tags">Tags</a></h2> +<pre><code class="language-markdown"> git tag -a <tname> -m "descr" ........ creates an annotated tag (full object + containing tagger, date, ...) + git tag -l ........................... list available tags + git checkout tag/<tname> ............. checkout specific tag + git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch +</code></pre> +<h2><a class="header" href="#diff" id="diff">Diff</a></h2> +<pre><code class="language-markdown"> git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs + git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs + instead of usual diff snippets +</code></pre> +<h2><a class="header" href="#log" id="log">Log</a></h2> +<pre><code class="language-markdown"> git log --oneline .... shows log in single line per commit -> alias for + '--pretty=oneline --abbrev-commit' + git log --graph ...... text based graph of commit history + git log --decorate ... decorate log with REFs +</code></pre> +<h2><a class="header" href="#file-history" id="file-history">File history</a></h2> +<pre><code class="language-markdown"> git log -p <file> ......... show commit history + diffs for <file> + git log --oneline <file> .. show commit history for <file> in compact format +</code></pre> +<h2><a class="header" href="#patching" id="patching">Patching</a></h2> +<pre><code class="language-markdown"> git format-patch <opt> <since>/<revision range> + opt: + -N ................... use [PATCH] instead [PATCH n/m] in subject when + generating patch description (for patches spanning + multiple commits) + --start-number <n> ... start output file generation with <n> as start + number instead '1' + since spcifier: + -3 .................. e.g: create a patch from last three commits + <commit hash> ....... create patch with commits starting after <commit hash> + + git am <patch> ......... apply patch and create a commit for it + + git apply --stat <PATCH> ... see which files the patch would change + git apply --check <PATCH> .. see if the patch can be applied cleanly + git apply <PATCH> .......... apply the patch locally without creating a commit + + # eg: generate patches for each commit from initial commit on + git format-patch -N $(git rev-list --max-parents=0 HEAD) + + # generate single patch file from a certain commit/ref + git format-patch <COMMIT/REF> --stdout > my-patch.patch +</code></pre> +<h2><a class="header" href="#submodules" id="submodules">Submodules</a></h2> +<pre><code class="language-markdown"> git submodule add <url> [<path>] .......... add new submodule to current project + git clone --recursive <url> ............... clone project and recursively all + submodules (same as using + 'git submodule update --init + --recursive' after clone) + git submodule update --init --recursive ... checkout submodules recursively + using the commit listed in the + super-project (in detached HEAD) + git submodule update --remote <submod> .... fetch & merge remote changes for + <submod>, this will pull + origin/HEAD or a branch specified + for the submodule + git diff --submodule ...................... show commits that are part of the + submodule diff +</code></pre> +<h2><a class="header" href="#inspection" id="inspection">Inspection</a></h2> +<pre><code class="language-markdown"> git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees + git show <obj> ............ show <obj> + git cat-file -p <obj> ..... print content of <obj> +</code></pre> +<h2><a class="header" href="#revision-specifier" id="revision-specifier">Revision Specifier</a></h2> +<pre><code class="language-markdown"> HEAD ........ last commit + HEAD~1 ...... last commit-1 + HEAD~N ...... last commit-N (linear backwards when in tree structure, check + difference between HEAD^ and HEAD~) + git rev-list --max-parents=0 HEAD ........... first commit +</code></pre> <h1><a class="header" href="#awk1" id="awk1">awk(1)</a></h1> <pre><code class="language-markdown">awk [opt] program [input] -F <sepstr> field separator string (can be regex) @@ -820,6 +721,70 @@ done | sort -k2 -n </code></pre> <p>We build a <code>ps</code> command line and capture the first line of the processes output in the <code>user</code> variable and then print it.</p> +<h1><a class="header" href="#emacs1" id="emacs1">emacs(1)</a></h1> +<h2><a class="header" href="#help" id="help">help</a></h2> +<pre><code class="language-markdown"> C-h ? list available help modes + C-h f describe function + C-h v describe variable + C-h c <KEY> print command bound to <KEY> + C-h k <KEY> describe command bound to <KEY> + C-h b list buffer local key-bindings + <kseq> C-h list possible key-bindings with <kseq> + eg C-x C-h -> list key-bindings beginning with C-x +</code></pre> +<h2><a class="header" href="#package-manager" id="package-manager">package manager</a></h2> +<pre><code class="language-markdown"> package-refresh-contents refresh package list + package-list-packages list available/installed packages +</code></pre> +<h2><a class="header" href="#window" id="window">window</a></h2> +<pre><code class="language-markdown"> C-x 0 kill focused window + C-x 1 kill all other windows + C-x 2 split horizontal + C-x 3 split vertical +</code></pre> +<h2><a class="header" href="#yankpaste" id="yankpaste">yank/paste</a></h2> +<pre><code class="language-markdown"> C-<SPACE> set start mark to select text + M-w copy selected text + C-w kill selected text + C-y paste selected text + M-y cycle through kill-ring +</code></pre> +<h2><a class="header" href="#blockrect" id="blockrect">block/rect</a></h2> +<pre><code class="language-markdown"> C-x <SPC> activate rectangle-mark-mode + M-x string-rectangle <RET> insert text in marked rect +</code></pre> +<h2><a class="header" href="#mass-edit" id="mass-edit">mass edit</a></h2> +<pre><code class="language-makrdown"> C-x h mark whole buffer (mark-whole-buffer) + M-x delete-matching-line <RET> delete lines matching regex + M-x % search & replace region (query-replace) + C-M-x % search & replace regex (query-replace-regexp) +</code></pre> +<h2><a class="header" href="#grep" id="grep">grep</a></h2> +<pre><code class="language-markdown"> M-x find-grep <RET> run find-grep result in *grep* buffer + n/p navigate next/previous match in *grep* buffer +</code></pre> +<h2><a class="header" href="#lisp-mode" id="lisp-mode">lisp mode</a></h2> +<pre><code class="language-markdown"> M-x lisp-interaction-mode activate lisp mode + C-M-x evaluate top expr under cursor + C-x C-e eval-last-sexp + C-u C-x C-e eval-last-sexp and prints result in current buffer +</code></pre> +<h2><a class="header" href="#narrow" id="narrow">narrow</a></h2> +<pre><code class="language-markdown"> C-x n n show only focused region (narrow) + C-x n w show whole buffer (wide) +</code></pre> +<h2><a class="header" href="#org" id="org">org</a></h2> +<pre><code class="language-markdown"> M-up/M-down re-arrange items in same hierarchy + M-left/M-right change item hierarchy + C-RET create new item below current + C-S-RET create new TODO item below current + S-left/S-right cycle TODO states +</code></pre> +<h3><a class="header" href="#org-source" id="org-source">org source</a></h3> +<pre><code class="language-markdown"> <s TAB generate a source block + C-c ' edit source block (in lang specific buffer) + C-c C-c eval source block +</code></pre> <h1><a class="header" href="#gdb1" id="gdb1">gdb(1)</a></h1> <h1><a class="header" href="#cli" id="cli">CLI</a></h1> <pre><code class="language-markdown"> gdb [opts] [prg [-c coredump | -p pid]] @@ -970,7 +935,7 @@ executed. To workaround that bug one can create a wrapper function which calls fs <fs> # select flag-space <fs> f # print flags of selected flag-space </code></pre> -<h2><a class="header" href="#help" id="help">help</a></h2> +<h2><a class="header" href="#help-1" id="help-1">help</a></h2> <pre><code class="language-markdown"> ?*~<kw> # '?*' list all commands and '~' grep for <kw> ?*~... # '..' less mode /'...' interactive search </code></pre> @@ -978,105 +943,7 @@ executed. To workaround that bug one can create a wrapper function which calls <pre><code class="language-markdown"> > r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr> oob <addr> # reopen current file at <baddr> </code></pre> -<h1><a class="header" href="#emacs1" id="emacs1">emacs(1)</a></h1> -<h2><a class="header" href="#help-1" id="help-1">help</a></h2> -<pre><code class="language-markdown"> C-h ? list available help modes - C-h f describe function - C-h v describe variable - C-h c <KEY> print command bound to <KEY> - C-h k <KEY> describe command bound to <KEY> - C-h b list buffer local key-bindings - <kseq> C-h list possible key-bindings with <kseq> - eg C-x C-h -> list key-bindings beginning with C-x -</code></pre> -<h2><a class="header" href="#package-manager" id="package-manager">package manager</a></h2> -<pre><code class="language-markdown"> package-refresh-contents refresh package list - package-list-packages list available/installed packages -</code></pre> -<h2><a class="header" href="#window" id="window">window</a></h2> -<pre><code class="language-markdown"> C-x 0 kill focused window - C-x 1 kill all other windows - C-x 2 split horizontal - C-x 3 split vertical -</code></pre> -<h2><a class="header" href="#yankpaste" id="yankpaste">yank/paste</a></h2> -<pre><code class="language-markdown"> C-<SPACE> set start mark to select text - M-w copy selected text - C-w kill selected text - C-y paste selected text - M-y cycle through kill-ring -</code></pre> -<h2><a class="header" href="#blockrect" id="blockrect">block/rect</a></h2> -<pre><code class="language-markdown"> C-x <SPC> activate rectangle-mark-mode - M-x string-rectangle <RET> insert text in marked rect -</code></pre> -<h2><a class="header" href="#mass-edit" id="mass-edit">mass edit</a></h2> -<pre><code class="language-makrdown"> C-x h mark whole buffer (mark-whole-buffer) - M-x delete-matching-line <RET> delete lines matching regex - M-x % search & replace region (query-replace) - C-M-x % search & replace regex (query-replace-regexp) -</code></pre> -<h2><a class="header" href="#grep" id="grep">grep</a></h2> -<pre><code class="language-markdown"> M-x find-grep <RET> run find-grep result in *grep* buffer - n/p navigate next/previous match in *grep* buffer -</code></pre> -<h2><a class="header" href="#lisp-mode" id="lisp-mode">lisp mode</a></h2> -<pre><code class="language-markdown"> M-x lisp-interaction-mode activate lisp mode - C-M-x evaluate top expr under cursor - C-x C-e eval-last-sexp - C-u C-x C-e eval-last-sexp and prints result in current buffer -</code></pre> -<h2><a class="header" href="#narrow" id="narrow">narrow</a></h2> -<pre><code class="language-markdown"> C-x n n show only focused region (narrow) - C-x n w show whole buffer (wide) -</code></pre> -<h2><a class="header" href="#org" id="org">org</a></h2> -<pre><code class="language-markdown"> M-up/M-down re-arrange items in same hierarchy - M-left/M-right change item hierarchy - C-RET create new item below current - C-S-RET create new TODO item below current - S-left/S-right cycle TODO states -</code></pre> -<h3><a class="header" href="#org-source" id="org-source">org source</a></h3> -<pre><code class="language-markdown"> <s TAB generate a source block - C-c ' edit source block (in lang specific buffer) - C-c C-c eval source block -</code></pre> -<h1><a class="header" href="#fish1" id="fish1">fish(1)</a></h1> -<h2><a class="header" href="#keymaps" id="keymaps">keymaps</a></h2> -<pre><code class="language-markdown"> Shift-Tab ........... tab-completion with search - Alt-Up / Alt-Down ... search history with token under the cursor - Alt-l ............... list content of dir under cursor - Alt-p ............... append '2>&1 | less;' to current cmdline -</code></pre> -<h2><a class="header" href="#debug" id="debug">debug</a></h2> -<pre><code class="language-markdown"> status print-stack-trace .. prints function stacktrace (can be used in scripts) - breakpoint ................ halt script execution and gives shell (C-d | exit - to continue) -</code></pre> -<h1><a class="header" href="#strace1" id="strace1">strace(1)</a></h1> -<pre><code class="language-markdown">strace [opts] [prg] - -f .......... follow child processes on fork(2) - -p <pid> .... attach to running process - -s <size> ... max string size, truncate of longer (default: 32) - -e <expr> ... expression for trace filtering - -o <file> ... log output into <file> - -c .......... dump syscall statitics at the end -</code></pre> -<pre><code class="language-markdown"><expr>: - trace=syscall[,syscall] .... trace only syscall listed - trace=file ................. trace all syscall that take a filename as arg - trace=process .............. trace process management related syscalls - trace=signal ............... trace signal related syscalls - signal ..................... trace signals delivered to the process -</code></pre> -<h1><a class="header" href="#examples-2" id="examples-2">Examples</a></h1> -<p>Trace <code>open(2)</code> & <code>socket(2)</code> syscalls for a running process + child processes:</p> -<pre><code class="language-markdown">strace -f -e trace=open,socket -p <pid> -</code></pre> -<p>Trace signals delivered to a running process:</p> -<pre><code class="language-markdown">strace -f -e signal -p <pid> -</code></pre> +<h1><a class="header" href="#resource-analysis--monitor" id="resource-analysis--monitor">Resource analysis & monitor</a></h1> <h1><a class="header" href="#lsof8" id="lsof8">lsof(8)</a></h1> <pre><code class="language-markdown">lsof -a ......... AND slection filters instead ORing (OR: default) @@ -1092,7 +959,7 @@ executed. To workaround that bug one can create a wrapper function which calls AP ......... append TR ......... truncate </code></pre> -<h1><a class="header" href="#examples-3" id="examples-3">Examples</a></h1> +<h1><a class="header" href="#examples-2" id="examples-2">Examples</a></h1> <h2><a class="header" href="#file-flags" id="file-flags">File flags</a></h2> <p>Show open files with file flags for process:</p> <pre><code class="language-markdown">lsof +fg -p <pid> @@ -1130,10 +997,6 @@ major_pagefault: Happens when the page needed is NOT in memory, the kernel <h1><a class="header" href="#io-statistics" id="io-statistics">I/O statistics</a></h1> <pre><code class="language-markdown">pidstat -d -p <pid> [interval] [count] </code></pre> -<h1><a class="header" href="#usrbintime1" id="usrbintime1">/usr/bin/time(1)</a></h1> -<pre><code class="language-markdown"># statistics of process run -/usr/bin/time -v <cmd> -</code></pre> <h1><a class="header" href="#pgrep1" id="pgrep1">pgrep(1)</a></h1> <pre><code class="language-markdown">pgrep [opts] <pattern> -n only list newest matching process @@ -1145,10 +1008,51 @@ major_pagefault: Happens when the page needed is NOT in memory, the kernel <p>For example attach gdb to newest zsh process from <code>$USER</code>.</p> <pre><code class="language-markdown">gdb -p $(pgrep -n -u $USER zsh) </code></pre> +<h1><a class="header" href="#pmap1" id="pmap1">pmap(1)</a></h1> +<pre><code class="language-markdown">pmap <pid> + Dump virtual memory map of process. + Compared to /proc/<pid>/maps it shows the size of the mappings. +</code></pre> <h1><a class="header" href="#pstack1" id="pstack1">pstack(1)</a></h1> <pre><code class="language-markdown">pstack <pid> Dump stack for all threads of process. </code></pre> +<h1><a class="header" href="#trace-and-profile" id="trace-and-profile">Trace and Profile</a></h1> +<h1><a class="header" href="#strace1" id="strace1">strace(1)</a></h1> +<pre><code class="language-markdown">strace [opts] [prg] + -f .......... follow child processes on fork(2) + -p <pid> .... attach to running process + -s <size> ... max string size, truncate of longer (default: 32) + -e <expr> ... expression for trace filtering + -o <file> ... log output into <file> + -c .......... dump syscall statitics at the end +</code></pre> +<pre><code class="language-markdown"><expr>: + trace=syscall[,syscall] .... trace only syscall listed + trace=file ................. trace all syscall that take a filename as arg + trace=process .............. trace process management related syscalls + trace=signal ............... trace signal related syscalls + signal ..................... trace signals delivered to the process +</code></pre> +<h1><a class="header" href="#examples-3" id="examples-3">Examples</a></h1> +<p>Trace <code>open(2)</code> & <code>socket(2)</code> syscalls for a running process + child processes:</p> +<pre><code class="language-markdown">strace -f -e trace=open,socket -p <pid> +</code></pre> +<p>Trace signals delivered to a running process:</p> +<pre><code class="language-markdown">strace -f -e signal -p <pid> +</code></pre> +<h1><a class="header" href="#ltrace1" id="ltrace1">ltrace(1)</a></h1> +<pre><code class="language-markdown">ltrace [opts] [prg] + -f .......... follow child processes on fork(2) + -p <pid> .... attach to running process + -o <file> ... log output into <file> + -l <filter> . show who calls into lib matched by <filter> + -C .......... demangle +</code></pre> +<h1><a class="header" href="#example-2" id="example-2">Example</a></h1> +<p>List which program/libs call into <code>libstdc++</code>:</p> +<pre><code class="language-bash">ltrace -l '*libstdc++*' -C -o ltrace.log ./main +</code></pre> <h1><a class="header" href="#perf1" id="perf1">perf(1)</a></h1> <pre><code class="language-markdown">perf list show supported hw/sw events @@ -1207,6 +1111,11 @@ opreport [opt] FILE ophelp show supported hw/sw events </code></pre> +<h1><a class="header" href="#usrbintime1" id="usrbintime1">/usr/bin/time(1)</a></h1> +<pre><code class="language-markdown"># statistics of process run +/usr/bin/time -v <cmd> +</code></pre> +<h1><a class="header" href="#binary" id="binary">Binary</a></h1> <h1><a class="header" href="#od1" id="od1">od(1)</a></h1> <pre><code class="language-markdown"> od [opts] <file> -An don't print addr info @@ -1304,6 +1213,7 @@ the <code>.rodata</code> section as follows:</p> -C demangle -u undefined only </code></pre> +<h1><a class="header" href="#development" id="development">Development</a></h1> <h1><a class="header" href="#cfilt1" id="cfilt1">c++filt(1)</a></h1> <h2><a class="header" href="#demangle-symbol" id="demangle-symbol">Demangle symbol</a></h2> <pre><code class="language-markdown"> c++-filt <symbol_str> @@ -1400,6 +1310,117 @@ run1: xor eax, eax jmp bar </code></pre> +<h1><a class="header" href="#ldso8" id="ldso8">ld.so(8)</a></h1> +<h2><a class="header" href="#environment-variables" id="environment-variables">Environment Variables</a></h2> +<pre><code class="language-console"> LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded + LD_DEBUG=<opts> comma separated list of debug options + =help list available options + =libs show library search path + =files processing of input files + =symbols show search path for symbol lookup + =bindings show against which definition a symbol is bound +</code></pre> +<h2><a class="header" href="#ld_preload-initialization-order-and-link-map" id="ld_preload-initialization-order-and-link-map">LD_PRELOAD: Initialization Order and Link Map</a></h2> +<p>Libraries specified in <code>LD_PRELOAD</code> are loaded from <code>left-to-right</code> but +initialized from <code>right-to-left</code>.</p> +<pre><code class="language-markdown"> > ldd ./main + >> libc.so.6 => /usr/lib/libc.so.6 + + > LD_PRELOAD=liba.so:libb.so ./main + --> + preloaded in this order + <-- + initialized in this order +</code></pre> +<p>The preload order determines:</p> +<ul> +<li>the order libraries are inserted into the <code>link map</code></li> +<li>the initialization order for libraries</li> +</ul> +<p>For the example listed above the resulting <code>link map</code> will look like the +following:</p> +<pre><code class="language-makrdown"> +------+ +------+ +------+ +------+ + | main | -> | liba | -> | libb | -> | libc | + +------+ +------+ +------+ +------+ +</code></pre> +<p>This can be seen when running with <code>LD_DEBUG=files</code>:</p> +<pre><code class="language-makrdown"> > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main + # load order (-> determines link map) + >> file=liba.so [0]; generating link map + >> file=libb.so [0]; generating link map + >> file=libc.so.6 [0]; generating link map + + # init order + >> calling init: /usr/lib/libc.so.6 + >> calling init: <path>/libb.so + >> calling init: <path>/liba.so + >> initialize program: ./main +</code></pre> +<p>To verify the <code>link map</code> order we let <code>ld.so</code> resolve the <code>memcpy(3)</code> libc +symbol (used in <em>main</em>) dynamically, while enabling <code>LD_DEBUG=symbols,bindings</code> +to see the resolving in action.</p> +<pre><code class="language-makrdown"> > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main + >> symbol=memcpy; lookup in file=./main [0] + >> symbol=memcpy; lookup in file=<path>/liba.so [0] + >> symbol=memcpy; lookup in file=<path>/libb.so [0] + >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] + >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14] +</code></pre> +<h2><a class="header" href="#dynamic-linking-x86_64" id="dynamic-linking-x86_64">Dynamic Linking (x86_64)</a></h2> +<p>Dynamic linking basically works via one indirect jump. It uses a combination of +function trampolines (<code>.plt</code> section) and a function pointer table (<code>.got.plt</code> +section). +On the first call the trampoline sets up some metadata and then jumps to the +<code>ld.so</code> runtime resolve function, which in turn patches the table with the +correct function pointer.</p> +<pre><code class="language-makrdown"> .plt ....... procedure linkage table, contains function trampolines, usually + located in code segment (rx permission) + .got.plt ... global offset table for .plt, holds the function pointer table +</code></pre> +<p>Using <code>radare2</code> we can analyze this in more detail:</p> +<pre><code class="language-makrdown"> [0x00401040]> pd 4 @ section..got.plt + ;-- section..got.plt: + ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt + ;-- _GLOBAL_OFFSET_TABLE_: + [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic + [1] 0x00404008 .qword 0x0000000000000000 + ; CODE XREF from section..plt @ +0x6 + [2] 0x00404010 .qword 0x0000000000000000 + ;-- reloc.puts: + ; CODE XREF from sym.imp.puts @ 0x401030 + [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts + + [0x00401040]> pd 6 @ section..plt + ;-- section..plt: + ;-- .plt: ; [12] -r-x section size 32 named .plt + ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] + ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] + ╎ 0x0040102c 0f1f4000 nop dword [rax] + ┌ 6: int sym.imp.puts (const char *s); + └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] + ╎ 0x00401036 6800000000 push 0 + └─< 0x0040103b e9e0ffffff jmp sym..plt +</code></pre> +<ul> +<li>At address <code>0x00401030</code> in the <code>.plt</code> section we see the indirect jump for +<code>puts</code> using the function pointer in <code>_GLOBAL_OFFSET_TABLE_[3] (GOT)</code>.</li> +<li><code>GOT[3]</code> initially points to instruction after the <code>puts</code> trampoline +<code>0x00401036</code>.</li> +<li>This pushes the relocation index <code>0</code> and then jumps to the first trampoline +<code>0x00401020</code>.</li> +<li>The first trampoline jumps to <code>GOT[2]</code> which will be filled at program +startup by the <code>ld.so</code> with its resolve function.</li> +<li>The <code>ld.so</code> resolve function fixes the relocation referenced by the +relocation index pushed by the <code>puts</code> trampoline.</li> +<li>The relocation entry at index <code>0</code> tells the resolve function which symbol to +search for and where to put the function pointer: +<pre><code class="language-makrdown"> > readelf -r <main> + >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: + >> Offset Info Type Sym. Value Sym. Name + Addend + >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 +</code></pre> +As we can see the offset from relocation at index <code>0</code> points to <code>GOT[3]</code>.</li> +</ul> </main> diff --git a/searchindex.js b/searchindex.js index 44c40be..0c48311 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["ld.so.html#ldso8","ld.so.html#environment-variables","ld.so.html#ld_preload-initialization-order-and-link-map","ld.so.html#dynamic-linking-x86_64","git.html#git1","git.html#staging","git.html#remote","git.html#branching","git.html#resetting","git.html#tags","git.html#diff","git.html#log","git.html#file-history","git.html#patching","git.html#submodules","git.html#inspection","git.html#revision-specifier","bash.html#bash1","bash.html#expansion","bash.html#generator","bash.html#parameter","bash.html#pathname","bash.html#io-redirection","bash.html#explanation","bash.html#completion","bash.html#example","zsh.html#zsh1","zsh.html#keybindings","zsh.html#completion","zsh.html#installation","zsh.html#completion-variables","zsh.html#completion-functions","zsh.html#example","tmux.html#tmux1","tmux.html#tmux-cli","tmux.html#scripting","tmux.html#bindings","tmux.html#command-mode","awk.html#awk1","awk.html#input-processing","awk.html#program","awk.html#special-pattern","awk.html#special-variables","awk.html#special-statements--functions","awk.html#examples","awk.html#filter-records","awk.html#capture-in-variables","awk.html#run-shell-command-and-capture-output","gdb.html#gdb1","gdb.html#cli","gdb.html#interactive-usage","gdb.html#user-commands-macros","gdb.html#hooks","gdb.html#examples","gdb.html#catch-sigsegv-and-execute-commands","gdb.html#run-backtrace-on-thread-1-batch-mode","gdb.html#script-gdb-for-automating-debugging-sessions","gdb.html#know-bugs","gdb.html#workaround-command--finish-bug","radare2.html#radare21","radare2.html#print","radare2.html#flags","radare2.html#help","radare2.html#relocation","emacs.html#emacs1","emacs.html#help","emacs.html#package-manager","emacs.html#window","emacs.html#yankpaste","emacs.html#blockrect","emacs.html#mass-edit","emacs.html#grep","emacs.html#lisp-mode","emacs.html#narrow","emacs.html#org","emacs.html#org-source","fish.html#fish1","fish.html#keymaps","fish.html#debug","strace.html#strace1","strace.html#examples","lsof.html#lsof8","lsof.html#examples","lsof.html#file-flags","lsof.html#open-tcp-connections","lsof.html#open-connection-to-specific-host","pidstat.html#pidstat1","pidstat.html#page-fault-and-memory-utilization","pidstat.html#io-statistics","time.html#usrbintime1","pgrep.html#pgrep1","pgrep.html#debug-newest-process","pstack.html#pstack1","perf.html#perf1","perf.html#flamegraph","perf.html#flamegraph-with-single-event-trace","perf.html#flamegraph-with-multiple-event-traces","oprofile.html#oprofile","od.html#od1","od.html#ascii-to-hex-string","od.html#extract-parts-of-file","xxd.html#xxd1","xxd.html#ascii-to-hex-stream","xxd.html#hex-to-binary-stream","xxd.html#ascii-to-binary","xxd.html#ascii-to-c-array-hex-encoded","readelf.html#readelf1","objdump.html#objdump1","objdump.html#disassemble-section","nm.html#nm1","c++filt.html#cfilt1","c++filt.html#demangle-symbol","c++filt.html#demangle-stream","c++.html#c","c++.html#type-deduction","glibc.html#glibc","glibc.html#malloc-tracer--mtrace3","glibc.html#malloc-check--mallopt3","gcc.html#gcc1","gcc.html#cli","gcc.html#preprocessing","gcc.html#builtins","gcc.html#__builtin_expectexpr-cond"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":38,"breadcrumbs":2,"title":2},"10":{"body":22,"breadcrumbs":1,"title":1},"100":{"body":76,"breadcrumbs":3,"title":3},"101":{"body":19,"breadcrumbs":1,"title":1},"102":{"body":6,"breadcrumbs":3,"title":3},"103":{"body":7,"breadcrumbs":3,"title":3},"104":{"body":11,"breadcrumbs":2,"title":2},"105":{"body":15,"breadcrumbs":5,"title":5},"106":{"body":55,"breadcrumbs":1,"title":1},"107":{"body":36,"breadcrumbs":1,"title":1},"108":{"body":8,"breadcrumbs":2,"title":2},"109":{"body":7,"breadcrumbs":1,"title":1},"11":{"body":27,"breadcrumbs":1,"title":1},"110":{"body":0,"breadcrumbs":1,"title":1},"111":{"body":3,"breadcrumbs":2,"title":2},"112":{"body":10,"breadcrumbs":2,"title":2},"113":{"body":0,"breadcrumbs":1,"title":1},"114":{"body":14,"breadcrumbs":2,"title":2},"115":{"body":0,"breadcrumbs":1,"title":1},"116":{"body":62,"breadcrumbs":3,"title":3},"117":{"body":34,"breadcrumbs":3,"title":3},"118":{"body":0,"breadcrumbs":1,"title":1},"119":{"body":0,"breadcrumbs":1,"title":1},"12":{"body":19,"breadcrumbs":2,"title":2},"120":{"body":15,"breadcrumbs":1,"title":1},"121":{"body":0,"breadcrumbs":1,"title":1},"122":{"body":90,"breadcrumbs":2,"title":2},"13":{"body":109,"breadcrumbs":1,"title":1},"14":{"body":64,"breadcrumbs":1,"title":1},"15":{"body":27,"breadcrumbs":1,"title":1},"16":{"body":28,"breadcrumbs":2,"title":2},"17":{"body":0,"breadcrumbs":1,"title":1},"18":{"body":0,"breadcrumbs":1,"title":1},"19":{"body":16,"breadcrumbs":1,"title":1},"2":{"body":128,"breadcrumbs":5,"title":5},"20":{"body":60,"breadcrumbs":1,"title":1},"21":{"body":93,"breadcrumbs":1,"title":1},"22":{"body":24,"breadcrumbs":2,"title":2},"23":{"body":26,"breadcrumbs":1,"title":1},"24":{"body":123,"breadcrumbs":1,"title":1},"25":{"body":66,"breadcrumbs":1,"title":1},"26":{"body":0,"breadcrumbs":1,"title":1},"27":{"body":53,"breadcrumbs":1,"title":1},"28":{"body":0,"breadcrumbs":1,"title":1},"29":{"body":36,"breadcrumbs":1,"title":1},"3":{"body":246,"breadcrumbs":3,"title":3},"30":{"body":25,"breadcrumbs":2,"title":2},"31":{"body":89,"breadcrumbs":2,"title":2},"32":{"body":62,"breadcrumbs":1,"title":1},"33":{"body":19,"breadcrumbs":1,"title":1},"34":{"body":86,"breadcrumbs":2,"title":2},"35":{"body":119,"breadcrumbs":1,"title":1},"36":{"body":128,"breadcrumbs":1,"title":1},"37":{"body":24,"breadcrumbs":2,"title":2},"38":{"body":18,"breadcrumbs":1,"title":1},"39":{"body":45,"breadcrumbs":2,"title":2},"4":{"body":0,"breadcrumbs":1,"title":1},"40":{"body":37,"breadcrumbs":1,"title":1},"41":{"body":29,"breadcrumbs":2,"title":2},"42":{"body":22,"breadcrumbs":2,"title":2},"43":{"body":72,"breadcrumbs":3,"title":3},"44":{"body":0,"breadcrumbs":1,"title":1},"45":{"body":18,"breadcrumbs":2,"title":2},"46":{"body":39,"breadcrumbs":2,"title":2},"47":{"body":25,"breadcrumbs":5,"title":5},"48":{"body":0,"breadcrumbs":1,"title":1},"49":{"body":42,"breadcrumbs":1,"title":1},"5":{"body":7,"breadcrumbs":1,"title":1},"50":{"body":180,"breadcrumbs":2,"title":2},"51":{"body":25,"breadcrumbs":3,"title":3},"52":{"body":24,"breadcrumbs":1,"title":1},"53":{"body":0,"breadcrumbs":1,"title":1},"54":{"body":13,"breadcrumbs":4,"title":4},"55":{"body":9,"breadcrumbs":6,"title":6},"56":{"body":36,"breadcrumbs":5,"title":5},"57":{"body":0,"breadcrumbs":2,"title":2},"58":{"body":27,"breadcrumbs":4,"title":4},"59":{"body":0,"breadcrumbs":1,"title":1},"6":{"body":21,"breadcrumbs":1,"title":1},"60":{"body":11,"breadcrumbs":1,"title":1},"61":{"body":16,"breadcrumbs":1,"title":1},"62":{"body":9,"breadcrumbs":1,"title":1},"63":{"body":15,"breadcrumbs":1,"title":1},"64":{"body":0,"breadcrumbs":1,"title":1},"65":{"body":59,"breadcrumbs":1,"title":1},"66":{"body":12,"breadcrumbs":2,"title":2},"67":{"body":21,"breadcrumbs":1,"title":1},"68":{"body":28,"breadcrumbs":1,"title":1},"69":{"body":16,"breadcrumbs":1,"title":1},"7":{"body":46,"breadcrumbs":1,"title":1},"70":{"body":35,"breadcrumbs":2,"title":2},"71":{"body":17,"breadcrumbs":1,"title":1},"72":{"body":36,"breadcrumbs":2,"title":2},"73":{"body":16,"breadcrumbs":1,"title":1},"74":{"body":36,"breadcrumbs":1,"title":1},"75":{"body":20,"breadcrumbs":2,"title":2},"76":{"body":0,"breadcrumbs":1,"title":1},"77":{"body":28,"breadcrumbs":1,"title":1},"78":{"body":19,"breadcrumbs":1,"title":1},"79":{"body":64,"breadcrumbs":1,"title":1},"8":{"body":50,"breadcrumbs":1,"title":1},"80":{"body":25,"breadcrumbs":1,"title":1},"81":{"body":49,"breadcrumbs":1,"title":1},"82":{"body":0,"breadcrumbs":1,"title":1},"83":{"body":10,"breadcrumbs":2,"title":2},"84":{"body":21,"breadcrumbs":3,"title":3},"85":{"body":9,"breadcrumbs":4,"title":4},"86":{"body":26,"breadcrumbs":1,"title":1},"87":{"body":50,"breadcrumbs":4,"title":4},"88":{"body":6,"breadcrumbs":2,"title":2},"89":{"body":6,"breadcrumbs":1,"title":1},"9":{"body":35,"breadcrumbs":1,"title":1},"90":{"body":22,"breadcrumbs":1,"title":1},"91":{"body":14,"breadcrumbs":3,"title":3},"92":{"body":6,"breadcrumbs":1,"title":1},"93":{"body":128,"breadcrumbs":1,"title":1},"94":{"body":0,"breadcrumbs":1,"title":1},"95":{"body":15,"breadcrumbs":4,"title":4},"96":{"body":17,"breadcrumbs":4,"title":4},"97":{"body":43,"breadcrumbs":1,"title":1},"98":{"body":45,"breadcrumbs":1,"title":1},"99":{"body":34,"breadcrumbs":3,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"ld.so(8)","id":"0","title":"ld.so(8)"},"1":{"body":"LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded LD_DEBUG=<opts> comma separated list of debug options =help list available options =libs show library search path =files processing of input files =symbols show search path for symbol lookup =bindings show against which definition a symbol is bound","breadcrumbs":"Environment Variables","id":"1","title":"Environment Variables"},"10":{"body":"git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs instead of usual diff snippets","breadcrumbs":"Diff","id":"10","title":"Diff"},"100":{"body":"For example .rodata section from an elf file. We can use readelf to get the offset into the file where the .rodata section starts. readelf -W -S foo >> Section Headers: >> [Nr] Name Type Address Off Size ES Flg Lk Inf Al >> ... >> [15] .rodata PROGBITS 00000000004009c0 0009c0 000030 00 A 0 0 16 With the offset of -j 0x0009c0 we can dump -N 0x30 bytes from the beginning of the .rodata section as follows: od -j 0x0009c0 -N 0x30 -tx4 -w4 foo >> 0004700 00020001 >> 0004704 00000000 >> * >> 0004740 00000001 >> 0004744 00000002 >> 0004750 00000003 >> 0004754 00000004 Note : Numbers starting with 0x will be interpreted as hex by od.","breadcrumbs":"Extract parts of file","id":"100","title":"Extract parts of file"},"101":{"body":"xxd [opts] -p dump continuous hexdump -r convert hexdump into binary ('revert') -e dump as little endian mode -i output as C array","breadcrumbs":"xxd(1)","id":"101","title":"xxd(1)"},"102":{"body":"echo -n 'aabb' | xxd -p >> 61616262","breadcrumbs":"ASCII to hex stream","id":"102","title":"ASCII to hex stream"},"103":{"body":"echo -n '61616262' | xxd -p -r >> aabb","breadcrumbs":"Hex to binary stream","id":"103","title":"Hex to binary stream"},"104":{"body":"echo -n '\\x7fELF' | xxd -p | xxd -p -r | file -p - >> ELF","breadcrumbs":"ASCII to binary","id":"104","title":"ASCII to binary"},"105":{"body":"xxd -i <(echo -n '\\x7fELF') >> unsigned char _proc_self_fd_11[] = { >> 0x7f, 0x45, 0x4c, 0x46 >> }; >> unsigned int _proc_self_fd_11_len = 4;","breadcrumbs":"ASCII to C array (hex encoded)","id":"105","title":"ASCII to C array (hex encoded)"},"106":{"body":"readelf [opts] <elf> -W|--wide wide output, dont break output at 80 chars -h print ELF header -S print section headers -l print program headers + segment mapping -d print .dynamic section (dynamic link information) --syms print symbol tables (.symtab .dynsym) --dyn-syms print dynamic symbol table (exported symbols for dynamic linker) -r print relocation sections (.rel.*, .rela.*)","breadcrumbs":"readelf(1)","id":"106","title":"readelf(1)"},"107":{"body":"objdump [opts] <elf> -M intel use intil syntax -d disassemble text section -D disassemble all sections -S mix disassembly with source code -C demangle -j <section> display info for section --[no-]show-raw-insn [dont] show object code next to disassembly","breadcrumbs":"objdump(1)","id":"107","title":"objdump(1)"},"108":{"body":"For example .plt section: objdump -j .plt -d <elf>","breadcrumbs":"Disassemble section","id":"108","title":"Disassemble section"},"109":{"body":"nm [opts] <elf> -C demangle -u undefined only","breadcrumbs":"nm(1)","id":"109","title":"nm(1)"},"11":{"body":"git log --oneline .... shows log in single line per commit -> alias for '--pretty=oneline --abbrev-commit' git log --graph ...... text based graph of commit history git log --decorate ... decorate log with REFs","breadcrumbs":"Log","id":"11","title":"Log"},"110":{"body":"","breadcrumbs":"c++filt(1)","id":"110","title":"c++filt(1)"},"111":{"body":"c++-filt <symbol_str>","breadcrumbs":"Demangle symbol","id":"111","title":"Demangle symbol"},"112":{"body":"For example dynamic symbol table: readelf -W --dyn-syms <elf> | c++filt","breadcrumbs":"Demangle stream","id":"112","title":"Demangle stream"},"113":{"body":"","breadcrumbs":"c++","id":"113","title":"c++"},"114":{"body":"Force compile error to see what auto is deduced to. auto foo = bar(); // force compile error\ntypename decltype(foo)::_;","breadcrumbs":"Type deduction","id":"114","title":"Type deduction"},"115":{"body":"","breadcrumbs":"glibc","id":"115","title":"glibc"},"116":{"body":"Trace memory allocation and de-allocation to detect memory leaks. Need to call mtrace(3) to install the tracing hooks. If we can't modify the binary to call mtrace we can create a small shared library and pre-load it. // libmtrace.c\n#include <mcheck.h>\n__attribute__((constructor)) static void init_mtrace() { mtrace(); } Compile as: gcc -shared -fPIC -o libmtrace.so libmtrace.c To generate the trace file run: export MALLOC_TRACE=<file>\nLD_PRELOAD=./libmtrace.so <binary> Note : If MALLOC_TRACE is not set mtrace won't install tracing hooks. To get the results of the trace file: mtrace <binary> $MALLOC_TRACE","breadcrumbs":"malloc tracer mtrace(3)","id":"116","title":"malloc tracer mtrace(3)"},"117":{"body":"Configure action when glibc detects memory error. export MALLOC_CHECK_=<N> Useful values: 1 print detailed error & continue\n3 print detailed error + stack trace + memory mappings & abort\n7 print simple error message + stack trace + memory mappings & abort","breadcrumbs":"malloc check mallopt(3)","id":"117","title":"malloc check mallopt(3)"},"118":{"body":"","breadcrumbs":"gcc(1)","id":"118","title":"gcc(1)"},"119":{"body":"","breadcrumbs":"CLI","id":"119","title":"CLI"},"12":{"body":"git log -p <file> ......... show commit history + diffs for <file> git log --oneline <file> .. show commit history for <file> in compact format","breadcrumbs":"File history","id":"12","title":"File history"},"120":{"body":"While debugging can be helpful to just pre-process files. gcc -E [-dM] ... -E run only preprocessor -dM list only #define statements","breadcrumbs":"Preprocessing","id":"120","title":"Preprocessing"},"121":{"body":"","breadcrumbs":"Builtins","id":"121","title":"Builtins"},"122":{"body":"Give the compiler a hint which branch is hot, so it can lay out the code accordingly to reduce number of jump instructions. See on compiler explorer . echo \"\nextern void foo();\nextern void bar();\nvoid run0(int x) { if (__builtin_expect(x,0)) { foo(); } else { bar(); }\n}\nvoid run1(int x) { if (__builtin_expect(x,1)) { foo(); } else { bar(); }\n}\n\" | gcc -O2 -S -masm=intel -o /dev/stdout -xc - Will generate something similar to the following. run0: bar is on the path without branch run1: foo is on the path without branch run0: test edi, edi jne .L4 xor eax, eax jmp bar\n.L4: xor eax, eax jmp foo\nrun1: test edi, edi je .L6 xor eax, eax jmp foo\n.L6: xor eax, eax jmp bar","breadcrumbs":"__builtin_expect(expr, cond)","id":"122","title":"__builtin_expect(expr, cond)"},"13":{"body":"git format-patch <opt> <since>/<revision range> opt: -N ................... use [PATCH] instead [PATCH n/m] in subject when generating patch description (for patches spanning multiple commits) --start-number <n> ... start output file generation with <n> as start number instead '1' since spcifier: -3 .................. e.g: create a patch from last three commits <commit hash> ....... create patch with commits starting after <commit hash> git am <patch> ......... apply patch and create a commit for it git apply --stat <PATCH> ... see which files the patch would change git apply --check <PATCH> .. see if the patch can be applied cleanly git apply <PATCH> .......... apply the patch locally without creating a commit # eg: generate patches for each commit from initial commit on git format-patch -N $(git rev-list --max-parents=0 HEAD) # generate single patch file from a certain commit/ref git format-patch <COMMIT/REF> --stdout > my-patch.patch","breadcrumbs":"Patching","id":"13","title":"Patching"},"14":{"body":"git submodule add <url> [<path>] .......... add new submodule to current project git clone --recursive <url> ............... clone project and recursively all submodules (same as using 'git submodule update --init --recursive' after clone) git submodule update --init --recursive ... checkout submodules recursively using the commit listed in the super-project (in detached HEAD) git submodule update --remote <submod> .... fetch & merge remote changes for <submod>, this will pull origin/HEAD or a branch specified for the submodule git diff --submodule ...................... show commits that are part of the submodule diff","breadcrumbs":"Submodules","id":"14","title":"Submodules"},"15":{"body":"git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees git show <obj> ............ show <obj> git cat-file -p <obj> ..... print content of <obj>","breadcrumbs":"Inspection","id":"15","title":"Inspection"},"16":{"body":"HEAD ........ last commit HEAD~1 ...... last commit-1 HEAD~N ...... last commit-N (linear backwards when in tree structure, check difference between HEAD^ and HEAD~) git rev-list --max-parents=0 HEAD ........... first commit","breadcrumbs":"Revision Specifier","id":"16","title":"Revision Specifier"},"17":{"body":"","breadcrumbs":"bash(1)","id":"17","title":"bash(1)"},"18":{"body":"","breadcrumbs":"Expansion","id":"18","title":"Expansion"},"19":{"body":"# generate sequence from n to m\n{n..m}\n# generate sequence from n to m step by s\n{n..m..s} # expand cartesian product\n{a,b}{c,d}","breadcrumbs":"Generator","id":"19","title":"Generator"},"2":{"body":"Libraries specified in LD_PRELOAD are loaded from left-to-right but initialized from right-to-left. > ldd ./main >> libc.so.6 => /usr/lib/libc.so.6 > LD_PRELOAD=liba.so:libb.so ./main --> preloaded in this order <-- initialized in this order The preload order determines: the order libraries are inserted into the link map the initialization order for libraries For the example listed above the resulting link map will look like the following: +------+ +------+ +------+ +------+ | main | -> | liba | -> | libb | -> | libc | +------+ +------+ +------+ +------+ This can be seen when running with LD_DEBUG=files: > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main # load order (-> determines link map) >> file=liba.so [0]; generating link map >> file=libb.so [0]; generating link map >> file=libc.so.6 [0]; generating link map # init order >> calling init: /usr/lib/libc.so.6 >> calling init: <path>/libb.so >> calling init: <path>/liba.so >> initialize program: ./main To verify the link map order we let ld.so resolve the memcpy(3) libc symbol (used in main ) dynamically, while enabling LD_DEBUG=symbols,bindings to see the resolving in action. > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main >> symbol=memcpy; lookup in file=./main [0] >> symbol=memcpy; lookup in file=<path>/liba.so [0] >> symbol=memcpy; lookup in file=<path>/libb.so [0] >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14]","breadcrumbs":"LD_PRELOAD: Initialization Order and Link Map","id":"2","title":"LD_PRELOAD: Initialization Order and Link Map"},"20":{"body":"# default param\nbar=${foo:-some_val} # if $foo set, then bar=$foo else bar=some_val # check param set\nbar=${foo:?msg} # if $foo set, then bar=$foo else exit and print msg # indirect\nFOO=foo\nBAR=FOO\nbar=${!BAR} # deref value of BAR -> bar=$FOO # prefix\n${foo#prefix} # remove prefix when expanding $foo\n# suffix\n${foo%suffix} # remove suffix when expanding $foo # substitute\n${foo/pattern/string} # replace pattern with string when expanding foo\n# pattern starts with\n# '/' replace all occurences of pattern\n# '#' pattern match at beginning\n# '%' pattern match at end Note: prefix/suffix/pattern are expanded as pathnames .","breadcrumbs":"Parameter","id":"20","title":"Parameter"},"21":{"body":"* match any string\n? match any single char\n\\\\ match backslash\n[abc] match any char of 'a' 'b' 'c'\n[a-z] match any char between 'a' - 'z'\n[^ab] negate, match all not 'a' 'b'\n[:class:] match any char in class, available: alnum,alpha,ascii,blank,cntrl,digit,graph,lower, print,punct,space,upper,word,xdigit Wit extglob shell option enabled it is possible to have more powerful patterns. In the following pattern-list is one ore more patterns separated by | char. ?(pattern-list) matches zero or one occurrence of the given patterns\n*(pattern-list) matches zero or more occurrences of the given patterns\n+(pattern-list) matches one or more occurrences of the given patterns\n@(pattern-list) matches one of the given patterns\n!(pattern-list) matches anything except one of the given patterns Note: shopt -s extglob/shopt -u extglob to enable/disable extglob option.","breadcrumbs":"Pathname","id":"21","title":"Pathname"},"22":{"body":"Note: The trick with bash I/O redirection is to interpret from left-to-right. # stdout & stderr to file\ncommand >file 2>&1\n# equivalent\ncommand &>file # stderr to stdout & stdout to file\ncommand 2>&1 >file","breadcrumbs":"I/O redirection","id":"22","title":"I/O redirection"},"23":{"body":"j>&i Duplicate fd i to fd j, making j a copy of i. See dup2(2) . Example: command 2>&1 >file duplicate fd 1 to fd 2, effectively redirecting stderr to stdout redirect stdout to file","breadcrumbs":"Explanation","id":"23","title":"Explanation"},"24":{"body":"The complete builtin is used to interact with the completion system. complete # print currently installed completion handler\ncomplete -F <func> <cmd> # install <func> as completion handler for <cmd>\ncomplete -r <cmd> # uninstall completion handler for <cmd> Variables available in completion functions: # in\n$1 # <cmd>\n$2 # current word\n$3 # privous word COMP_WORDS # array with current command line words\nCOMP_CWORD # index into COMP_WORDS with current cursor position # out\nCOMPREPLY # array with possible completions The compgen builtin is used to generate possible matches by comparing word against words generated by option. compgen [option] [word] # usefule options:\n# -W <list> specify list of possible completions\n# -d generate list with dirs\n# -f generate list with files\n# -u generate list with users\n# -e generate list with exported variables # compare \"f\" against words \"foo\" \"foobar\" \"bar\" and generate matches\ncompgen -W \"foo foobar bar\" \"f\" # compare \"hom\" against file/dir names and generate matches\ncompgen -d -f \"hom\"","breadcrumbs":"Completion","id":"24","title":"Completion"},"25":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -h The completion handler could be implemented as follows: function _foo() { local curr=$2 local prev=$3 local opts=\"-c -s -f -h\" case $prev in -c) COMPREPLY=( $(compgen -W \"green red blue\" -- $curr) );; -s) COMPREPLY=( $(compgen -W \"low high\" -- $curr) );; -f) COMPREPLY=( $(compgen -f -- $curr) );; *) COMPREPLY=( $(compgen -W \"$opts\" -- $curr) );; esac\n} complete -F _foo foo","breadcrumbs":"Example","id":"25","title":"Example"},"26":{"body":"","breadcrumbs":"zsh(1)","id":"26","title":"zsh(1)"},"27":{"body":"Change input mode: bindkey -v change to vi keymap\nbindkey -e change to emacs keymap Define key-mappings: bindkey list mappings in current keymap\nbindkey in-str cmd create mapping for `in-str` to `cmd`\nbindkey -r in-str remove binding for `in-str` # C-v <key> dump <key> code, which can be used in `in-str`\n# zle -l list all functions for keybindings\n# man zshzle(1) STANDARD WIDGETS: get description of functions","breadcrumbs":"Keybindings","id":"27","title":"Keybindings"},"28":{"body":"","breadcrumbs":"Completion","id":"28","title":"Completion"},"29":{"body":"Completion functions are provided via files and need to be placed in a location covered by $fpath. By convention the completion files are names as _<CMD>. A completion skeleton for the command foo, stored in _foo #compdef _foo foo function _foo() { ...\n} Alternatively one can install a completion function explicitly by calling compdef <FUNC> <CMD>.","breadcrumbs":"Installation","id":"29","title":"Installation"},"3":{"body":"Dynamic linking basically works via one indirect jump. It uses a combination of function trampolines (.plt section) and a function pointer table (.got.plt section). On the first call the trampoline sets up some metadata and then jumps to the ld.so runtime resolve function, which in turn patches the table with the correct function pointer. .plt ....... procedure linkage table, contains function trampolines, usually located in code segment (rx permission) .got.plt ... global offset table for .plt, holds the function pointer table Using radare2 we can analyze this in more detail: [0x00401040]> pd 4 @ section..got.plt ;-- section..got.plt: ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt ;-- _GLOBAL_OFFSET_TABLE_: [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic [1] 0x00404008 .qword 0x0000000000000000 ; CODE XREF from section..plt @ +0x6 [2] 0x00404010 .qword 0x0000000000000000 ;-- reloc.puts: ; CODE XREF from sym.imp.puts @ 0x401030 [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts [0x00401040]> pd 6 @ section..plt ;-- section..plt: ;-- .plt: ; [12] -r-x section size 32 named .plt ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] ╎ 0x0040102c 0f1f4000 nop dword [rax] ┌ 6: int sym.imp.puts (const char *s); └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] ╎ 0x00401036 6800000000 push 0 └─< 0x0040103b e9e0ffffff jmp sym..plt At address 0x00401030 in the .plt section we see the indirect jump for puts using the function pointer in _GLOBAL_OFFSET_TABLE_[3] (GOT). GOT[3] initially points to instruction after the puts trampoline 0x00401036. This pushes the relocation index 0 and then jumps to the first trampoline 0x00401020. The first trampoline jumps to GOT[2] which will be filled at program startup by the ld.so with its resolve function. The ld.so resolve function fixes the relocation referenced by the relocation index pushed by the puts trampoline. The relocation entry at index 0 tells the resolve function which symbol to search for and where to put the function pointer: > readelf -r <main> >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: >> Offset Info Type Sym. Value Sym. Name + Addend >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 As we can see the offset from relocation at index 0 points to GOT[3].","breadcrumbs":"Dynamic Linking (x86_64)","id":"3","title":"Dynamic Linking (x86_64)"},"30":{"body":"Following variables are available in Completion functions: $words # array with command line in words\n$#words # number words\n$CURRENT # index into $words for cursor position\n$words[CURRENT-1] # previous word (relative to cursor position)","breadcrumbs":"Completion Variables","id":"30","title":"Completion Variables"},"31":{"body":"_describe simple completion, just words + description _arguments sophisticated completion, allow to specify actions Completion with _describe _describe MSG COMP MSG simple string with header message COMP array of completions where each entry is \"opt:description\" function _foo() { local -a opts opts=('bla:desc for bla' 'blu:desc for blu') _describe 'foo-msg' opts\n}\ncompdef _foo foo foo <TAB><TAB> -- foo-msg --\nbla -- desc for bla\nblu -- desc for blu Completion with _arguments _arguments SPEC [SPEC...] where SPEC can have one of the following forms: OPT[DESC]:MSG:ACTION N:MSG:ACTION Available actions (op1 op2) list possible matches\n->VAL set $state=VAL and continue, `$state` can be checked later in switch case\nFUNC call func to generate matches\n{STR} evaluate `STR` to generate matches","breadcrumbs":"Completion Functions","id":"31","title":"Completion Functions"},"32":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -d <dir> -h The completion handler could be implemented as follows in a file called _foo: #compdef _foo foo function _foo_color() { local colors=() colors+=('green:green color') colors+=('red:red color') colors+=('blue:blue color') _describe \"color\" colors\n} function _foo() { _arguments \\ \"-c[define color]:color:->s_color\" \\ \"-s[select sound]:color:(low high)\" \\ \"-f[select file]:file:_files\" \\ \"-d[select dir]:fir:_files -/\" \\ \"-h[help]\" case $state in s_color) _foo_color;; esac\n}","breadcrumbs":"Example","id":"32","title":"Example"},"33":{"body":"Terminology: session is a collection of pseudo terminals which can have multiple windows window uses the entire screen and can be split into rectangular panes pane is a single pseudo terminal instance","breadcrumbs":"tmux(1)","id":"33","title":"tmux(1)"},"34":{"body":"# Session\ntmux creates new session\ntmux ls list running sessions\ntmux kill-session -t <s> kill running session <s>\ntmux attach -t <s> [-d] attach to session <s>, detach other clients [-d]\ntmux detach -s <s> detach all clients from session <s> # Environment\ntmux showenv -g show global tmux environment variables\ntmux setenv -g <var> <val> set variable in global tmux env # Misc\ntmux source-file <file> source config <file>\ntmux lscm list available tmux commnds\ntmux show -g show global tmux options\ntmux display <msg> display message in tmux status line","breadcrumbs":"Tmux cli","id":"34","title":"Tmux cli"},"35":{"body":"# Session\ntmux list-sessions -F '#S' list running sessions, only IDs # Window\ntmux list-windows -F '#I' -t <s> list window IDs for session <s>\ntmux selectw -t <s>:<w> select window <w> in session <s> # Pane\ntmux list-panes -F '#P' -t <s>:<w> list pane IDs for window <w> in session <s>\ntmux selectp -t <s>:<w>.<p> select pane <p> in window <w> in session <s> # Run commands\ntmux send -t <s>:<w>.<p> \"ls\" C-m send cmds/keys to pane\ntmux run -t <p> <sh-cmd> run shell command <sh-cmd> in background and report output on pane -t <p> For example cycle through all panes in all windows in all sessions: # bash\nfor s in $(tmux list-sessions -F '#S'); do for w in $(tmux list-windows -F '#I' -t $s); do for p in $(tmux list-panes -F '#P' -t $s:$w); do echo $s:$w.$p done done\ndone","breadcrumbs":"Scripting","id":"35","title":"Scripting"},"36":{"body":"prefix d detach from current session\nprefix c create new window\nprefix w open window list\nprefix $ rename session\nprefix , rename window\nprefix . move current window Following bindings are specific to my tmux.conf : C-s prefix # Panes\nprefix s horizontal split\nprefix v vertical split\nprefix f toggle maximize/minimize current pane # Movement\nprefix Tab toggle between window prefix h move to pane left\nprefix j move to pane down\nprefix k move to pane up\nprefix l move to pane right # Resize\nprefix C-h resize pane left\nprefix C-j resize pane down\nprefix C-k resize pane up\nprefix C-l resize pane right # Copy/Paste\nprefix C-v enter copy mode\nprefix C-p paste yanked text\nprefix C-b open copy-buffer list # In Copy Mode\nv enable visual mode\ny yank selected text","breadcrumbs":"Bindings","id":"36","title":"Bindings"},"37":{"body":"To enter command mode prefix :. Some useful commands are: setw synchronize-panes on/off enables/disables synchronized input to all panes\nlist-keys -t vi-copy list keymaps for vi-copy mode","breadcrumbs":"Command mode","id":"37","title":"Command mode"},"38":{"body":"awk [opt] program [input] -F <sepstr> field separator string (can be regex) program awk program input file or stdin if not file given","breadcrumbs":"awk(1)","id":"38","title":"awk(1)"},"39":{"body":"Input is processed in two stages: Splitting input into a sequence of records. By default split at newline character, but can be changed via the builtin RS variable. Splitting a record into fields. By default strings without whitespace, but can be changed via the builtin variable FS or command line option -F. Fields are accessed as follows: $0 whole record $1 field one $2 field two ...","breadcrumbs":"Input processing","id":"39","title":"Input processing"},"4":{"body":"","breadcrumbs":"git(1)","id":"4","title":"git(1)"},"40":{"body":"An awk program is composed of pairs of the form: pattern { action } The program is run against each record in the input stream. If a pattern matches a record the corresponding action is executed and can access the fields. INPUT | v\nrecord ----> ∀ pattern matched | | v v\nfields ----> run associated action Any valid awk expr can be a pattern.","breadcrumbs":"Program","id":"40","title":"Program"},"41":{"body":"awk provides two special patterns, BEGIN and END, which can be used multiple times. Actions with those patterns are executed exactly once . BEGIN actions are run before processing the first record END actions are run after processing the last record","breadcrumbs":"Special pattern","id":"41","title":"Special pattern"},"42":{"body":"RS record separator : first char is the record separator, by default FS field separator : regex to split records into fields, by default NR number record : number of current record","breadcrumbs":"Special variables","id":"42","title":"Special variables"},"43":{"body":"printf \"fmt\", args... Print format string, args are comma separated. %s string %d decimal %x hex %f float Width can be specified as %Ns, this reserves N chars for a string. For floats one can use %N.Mf, N is the total number including . and M. strftime(\"fmt\") Print time stamp formatted by fmt. %Y full year (eg 2020) %m month (01-12) %d day (01-31) %F alias for %Y-%m-%d %H hour (00-23) %M minute (00-59) %S second (00-59) %T alias for %H:%M:%S","breadcrumbs":"Special statements & functions","id":"43","title":"Special statements & functions"},"44":{"body":"","breadcrumbs":"Examples","id":"44","title":"Examples"},"45":{"body":"awk 'NR%2 == 0 { print $0 }' <file> The pattern NR%2 == 0 matches every second record and the action { print $0 } prints the whole record.","breadcrumbs":"Filter records","id":"45","title":"Filter records"},"46":{"body":"# /proc/<pid>/status\n# Name: cat\n# ...\n# VmRSS: 516 kB\n# ... for f in /proc/*/status; do cat $f | awk ' /^VmRSS/ { rss = $2/1024 } /^Name/ { name = $2 } END { printf \"%16s %6d MB\\n\", name, rss }';\ndone | sort -k2 -n We capture values from VmRSS and Name into variables and print them at the END once processing all records is done.","breadcrumbs":"Capture in variables","id":"46","title":"Capture in variables"},"47":{"body":"cat /proc/1/status | awk ' /^Pid/ { \"ps --no-header -o user \" $2 | getline user; print user }' We build a ps command line and capture the first line of the processes output in the user variable and then print it.","breadcrumbs":"Run shell command and capture output","id":"47","title":"Run shell command and capture output"},"48":{"body":"","breadcrumbs":"gdb(1)","id":"48","title":"gdb(1)"},"49":{"body":"gdb [opts] [prg [-c coredump | -p pid]] gdb [opts] --args prg <prg-args> opts: -p <pid> attach to pid -c <coredump> use <coredump> -x <file> execute script <file> before prompt -ex <cmd> execute command <cmd> before prompt --tty <tty> set I/O tty for debugee","breadcrumbs":"CLI","id":"49","title":"CLI"},"5":{"body":"git add -p [<file>] ............ partial staging (interactive)","breadcrumbs":"staging","id":"5","title":"staging"},"50":{"body":"tty <tty> Set <tty> as tty for debugee. Make sure nobody reads from target tty, easiest is to spawn a shell and run following in target tty: > while true; do sleep 1024; done set follow-fork-mode <child | parent> Specify which process to follow when debuggee makes a fork(2) syscall. sharedlibrary [<regex>] Load symbols of shared libs loaded by debugee. Optionally use <regex> to filter libs for symbol loading. break [-qualified] <sym> thread <tnum> Set a breakpoint only for a specific thread. -qualified: Tred <sym> as fully qualified symbol (quiet handy to set breakpoints on C symbols in C++ contexts) rbreak <regex> Set breakpoints matching <regex>, where matching internally is done on: .*<regex>.* command [<bp_list>] Define commands to run after breakpoint hit. If <bp_list> is not specified attach command to last created breakpoint. Command block terminated with 'end' token. <bp_list>: Space separates list, eg 'command 2 5-8' to run command for breakpoints: 2,5,6,7,8. info functions [<regex>] List functions matching <regex>. List all functions if no <regex> provided. info variables [<regex>] List variables matching <regex>. List all variables if no <regex> provided. info handle [<signal>] Print how to handle <signal>. If no <signal> specified print for all signals. handle <signal> <action> Configure how gdb handles <signal> sent to debugee. <action>: stop/nostop Catch signal in gdb and break. print/noprint Print message when gdb catches signal. pass/nopass Pass signal down to debugee. catch signal <signal> Create a catchpoint for <signal>.","breadcrumbs":"Interactive usage","id":"50","title":"Interactive usage"},"51":{"body":"Gdb allows to create & document user commands as follows: define <cmd> # cmds end document <cmd> # docu end To get all user commands or documentations one can use: help user-defined help <cmd>","breadcrumbs":"User commands (macros)","id":"51","title":"User commands (macros)"},"52":{"body":"Gdb allows to create two types of command hooks hook- will be run before <cmd> hookpost- will be run after <cmd> define hook-<cmd> # cmds end define hookpost-<cmd> # cmds end","breadcrumbs":"Hooks","id":"52","title":"Hooks"},"53":{"body":"","breadcrumbs":"Examples","id":"53","title":"Examples"},"54":{"body":"This creates a catchpoint for the SIGSEGV signal and attached the command to it. catch signal SIGSEGV command bt c end","breadcrumbs":"Catch SIGSEGV and execute commands","id":"54","title":"Catch SIGSEGV and execute commands"},"55":{"body":"gdb --batch -ex 'thread 1' -ex 'bt' -p <pid>","breadcrumbs":"Run backtrace on thread 1 (batch mode)","id":"55","title":"Run backtrace on thread 1 (batch mode)"},"56":{"body":"To script gdb add commands into a file and pass it to gdb via -x. For example create run.gdb: set pagination off break mmap command info reg rdi rsi rdx bt c end #initial drop c This script can be used as: gdb --batch -x ./run.gdb -p <pid>","breadcrumbs":"Script gdb for automating debugging sessions","id":"56","title":"Script gdb for automating debugging sessions"},"57":{"body":"","breadcrumbs":"Know Bugs","id":"57","title":"Know Bugs"},"58":{"body":"When using finish inside a command block, commands after finish are not executed. To workaround that bug one can create a wrapper function which calls finish. define handler bt finish info reg rax end command handler end","breadcrumbs":"Workaround command + finish bug","id":"58","title":"Workaround command + finish bug"},"59":{"body":"","breadcrumbs":"radare2(1)","id":"59","title":"radare2(1)"},"6":{"body":"git remote -v .................. list remotes verbose (with URLs) git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, remote branches, tracking mapping)","breadcrumbs":"Remote","id":"6","title":"Remote"},"60":{"body":"pd <n> [@ <addr>] # print disassembly for <n> instructions # with optional temporary seek to <addr>","breadcrumbs":"print","id":"60","title":"print"},"61":{"body":"fs # list flag-spaces fs <fs> # select flag-space <fs> f # print flags of selected flag-space","breadcrumbs":"flags","id":"61","title":"flags"},"62":{"body":"?*~<kw> # '?*' list all commands and '~' grep for <kw> ?*~... # '..' less mode /'...' interactive search","breadcrumbs":"help","id":"62","title":"help"},"63":{"body":"> r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr> oob <addr> # reopen current file at <baddr>","breadcrumbs":"relocation","id":"63","title":"relocation"},"64":{"body":"","breadcrumbs":"emacs(1)","id":"64","title":"emacs(1)"},"65":{"body":"C-h ? list available help modes C-h f describe function C-h v describe variable C-h c <KEY> print command bound to <KEY> C-h k <KEY> describe command bound to <KEY> C-h b list buffer local key-bindings <kseq> C-h list possible key-bindings with <kseq> eg C-x C-h -> list key-bindings beginning with C-x","breadcrumbs":"help","id":"65","title":"help"},"66":{"body":"package-refresh-contents refresh package list package-list-packages list available/installed packages","breadcrumbs":"package manager","id":"66","title":"package manager"},"67":{"body":"C-x 0 kill focused window C-x 1 kill all other windows C-x 2 split horizontal C-x 3 split vertical","breadcrumbs":"window","id":"67","title":"window"},"68":{"body":"C-<SPACE> set start mark to select text M-w copy selected text C-w kill selected text C-y paste selected text M-y cycle through kill-ring","breadcrumbs":"yank/paste","id":"68","title":"yank/paste"},"69":{"body":"C-x <SPC> activate rectangle-mark-mode M-x string-rectangle <RET> insert text in marked rect","breadcrumbs":"block/rect","id":"69","title":"block/rect"},"7":{"body":"git branch [-a] ................ list available branches; -a to include remote branches git branch -vv ................. list branch & annotate with head sha1 & remote tracking branch git branch <bname> ............. create branch with name <bname> git checkout <bname> ........... switch to branch with name <bname> git push -u origin <rbname> .... push branch to origin (or other remote), and setup <rbname> as tracking branch","breadcrumbs":"Branching","id":"7","title":"Branching"},"70":{"body":"C-x h mark whole buffer (mark-whole-buffer) M-x delete-matching-line <RET> delete lines matching regex M-x % search & replace region (query-replace) C-M-x % search & replace regex (query-replace-regexp)","breadcrumbs":"mass edit","id":"70","title":"mass edit"},"71":{"body":"M-x find-grep <RET> run find-grep result in *grep* buffer n/p navigate next/previous match in *grep* buffer","breadcrumbs":"grep","id":"71","title":"grep"},"72":{"body":"M-x lisp-interaction-mode activate lisp mode C-M-x evaluate top expr under cursor C-x C-e eval-last-sexp C-u C-x C-e eval-last-sexp and prints result in current buffer","breadcrumbs":"lisp mode","id":"72","title":"lisp mode"},"73":{"body":"C-x n n show only focused region (narrow) C-x n w show whole buffer (wide)","breadcrumbs":"narrow","id":"73","title":"narrow"},"74":{"body":"M-up/M-down re-arrange items in same hierarchy M-left/M-right change item hierarchy C-RET create new item below current C-S-RET create new TODO item below current S-left/S-right cycle TODO states","breadcrumbs":"org","id":"74","title":"org"},"75":{"body":"<s TAB generate a source block C-c ' edit source block (in lang specific buffer) C-c C-c eval source block","breadcrumbs":"org source","id":"75","title":"org source"},"76":{"body":"","breadcrumbs":"fish(1)","id":"76","title":"fish(1)"},"77":{"body":"Shift-Tab ........... tab-completion with search Alt-Up / Alt-Down ... search history with token under the cursor Alt-l ............... list content of dir under cursor Alt-p ............... append '2>&1 | less;' to current cmdline","breadcrumbs":"keymaps","id":"77","title":"keymaps"},"78":{"body":"status print-stack-trace .. prints function stacktrace (can be used in scripts) breakpoint ................ halt script execution and gives shell (C-d | exit to continue)","breadcrumbs":"debug","id":"78","title":"debug"},"79":{"body":"strace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -s <size> ... max string size, truncate of longer (default: 32) -e <expr> ... expression for trace filtering -o <file> ... log output into <file> -c .......... dump syscall statitics at the end <expr>: trace=syscall[,syscall] .... trace only syscall listed trace=file ................. trace all syscall that take a filename as arg trace=process .............. trace process management related syscalls trace=signal ............... trace signal related syscalls signal ..................... trace signals delivered to the process","breadcrumbs":"strace(1)","id":"79","title":"strace(1)"},"8":{"body":"git reset [opt] <ref|commit> opt: --mixed .................... resets index, but not working tree --hard ..................... matches the working tree and index to that of the tree being switched to any changes to tracked files in the working tree since <commit> are lost git reset HEAD <file> .......... remove file from staging git reset --soft HEAD~1 ........ delete most recent commit but keep work git reset --hard HEAD~1 ........ delete most recent commit and delete work","breadcrumbs":"Resetting","id":"8","title":"Resetting"},"80":{"body":"Trace open(2) & socket(2) syscalls for a running process + child processes: strace -f -e trace=open,socket -p <pid> Trace signals delivered to a running process: strace -f -e signal -p <pid>","breadcrumbs":"Examples","id":"80","title":"Examples"},"81":{"body":"lsof -a ......... AND slection filters instead ORing (OR: default) -p <pid> ... filter by <pid> +fg ........ show file flags for file descripros -n ......... don't convert network addr to hostnames -P ......... don't convert network port to service names -i <@h[:p]>. show connections to h (hostname|ip addr) with optional port p file flags: R/W/RW ..... read/write/read-write CR ......... create AP ......... append TR ......... truncate","breadcrumbs":"lsof(8)","id":"81","title":"lsof(8)"},"82":{"body":"","breadcrumbs":"Examples","id":"82","title":"Examples"},"83":{"body":"Show open files with file flags for process: lsof +fg -p <pid>","breadcrumbs":"File flags","id":"83","title":"File flags"},"84":{"body":"Show open tcp connections for $USER: lsof -a -u $USER -i tcp Note : -a ands the results. If -a is not given all open files matching $USER and all tcp connections are listed ( ored ).","breadcrumbs":"Open TCP connections","id":"84","title":"Open TCP connections"},"85":{"body":"Show open connections to localhost for $USER: lsof -a -u $USER -i @localhost","breadcrumbs":"Open connection to specific host","id":"85","title":"Open connection to specific host"},"86":{"body":"pidstat [opt] [interval] [cont] -U [user] show username instead UID, optionally only show for user -r memory statistics -d I/O statistics -h single line per process and no lines with average","breadcrumbs":"pidstat(1)","id":"86","title":"pidstat(1)"},"87":{"body":"pidstat -r -p <pid> [interval] [count] minor_pagefault: Happens when the page needed is already in memory but not allocated to the faulting process, in that case the kernel only has to create a new page-table entry pointing to the shared physical page (not required to load a memory page from disk). major_pagefault: Happens when the page needed is NOT in memory, the kernel has to create a new page-table entry and populate the physical page (required to load a memory page from disk).","breadcrumbs":"Page fault and memory utilization","id":"87","title":"Page fault and memory utilization"},"88":{"body":"pidstat -d -p <pid> [interval] [count]","breadcrumbs":"I/O statistics","id":"88","title":"I/O statistics"},"89":{"body":"# statistics of process run\n/usr/bin/time -v <cmd>","breadcrumbs":"/usr/bin/time(1)","id":"89","title":"/usr/bin/time(1)"},"9":{"body":"git tag -a <tname> -m \"descr\" ........ creates an annotated tag (full object containing tagger, date, ...) git tag -l ........................... list available tags git checkout tag/<tname> ............. checkout specific tag git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch","breadcrumbs":"Tags","id":"9","title":"Tags"},"90":{"body":"pgrep [opts] <pattern> -n only list newest matching process -u <usr> only show matching for user <usr> -l additionally list command -a additionally list command + arguments","breadcrumbs":"pgrep(1)","id":"90","title":"pgrep(1)"},"91":{"body":"For example attach gdb to newest zsh process from $USER. gdb -p $(pgrep -n -u $USER zsh)","breadcrumbs":"Debug newest process","id":"91","title":"Debug newest process"},"92":{"body":"pstack <pid> Dump stack for all threads of process.","breadcrumbs":"pstack(1)","id":"92","title":"pstack(1)"},"93":{"body":"perf list show supported hw/sw events perf stat -p <pid> .. show stats for running process -I <ms> ... show stats periodically over interval <ms> -e <ev> ... filter for events perf top -p <pid> .. show stats for running process -F <hz> ... sampling frequency -K ........ hide kernel threads perf record -p <pid> ............... record stats for running process -F <hz> ................ sampling frequency --call-graph <method> .. [fp, dwarf, lbr] method how to caputre backtrace fp : use frame-pointer, need to compile with -fno-omit-frame-pointer dwarf: use .cfi debug information lbr : use hardware last branch record facility -g ..................... short-hand for --call-graph fp -e <ev> ................ filter for events perf report -n .................... annotate symbols with nr of samples --stdio ............... report to stdio, if not presen tui mode -g graph,0.5,caller ... show caller based call chains with value >0.5 Useful <ev>: page-faults minor-faults major-faults cpu-cycles` task-clock","breadcrumbs":"perf(1)","id":"93","title":"perf(1)"},"94":{"body":"","breadcrumbs":"Flamegraph","id":"94","title":"Flamegraph"},"95":{"body":"perf record -g -e cpu-cycles -p <pid>\nperf script | FlameGraph/stackcollapse-perf.pl | FlameGraph/flamegraph.pl > cycles-flamegraph.svg","breadcrumbs":"Flamegraph with single event trace","id":"95","title":"Flamegraph with single event trace"},"96":{"body":"perf record -g -e cpu-cycles,page-faults -p <pid>\nperf script --per-event-dump\n# fold & generate as above","breadcrumbs":"Flamegraph with multiple event traces","id":"96","title":"Flamegraph with multiple event traces"},"97":{"body":"operf -g -p <pid> -g ...... caputre call-graph information opreport [opt] FILE show time spent per binary image -l ...... show time spent per symbol -c ...... show callgraph information (see below) -a ...... add column with time spent accumulated over child nodes ophelp show supported hw/sw events","breadcrumbs":"OProfile","id":"97","title":"OProfile"},"98":{"body":"od [opts] <file> -An don't print addr info -tx4 print hex in 4 byte chunks -ta print as named character -tc printable chars or backslash escape -w4 print 4 bytes per line -j <n> skip <n> bytes from <file> (hex if start with 0x) -N <n> dump <n> bytes (hex of start with 0x)","breadcrumbs":"od(1)","id":"98","title":"od(1)"},"99":{"body":"echo -n AAAABBBB | od -An -w4 -tx4 >> 41414141 >> 42424242 echo -n '\\x7fELF\\n' | od -tx1 -ta -tc >> 0000000 7f 45 4c 46 0a # tx1 >> del E L F nl # ta >> 177 E L F \\n # tc","breadcrumbs":"ASCII to hex string","id":"99","title":"ASCII to hex string"}},"length":123,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"3":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"2":{"tf":3.0},"3":{"tf":2.449489742783178},"39":{"tf":1.0},"45":{"tf":2.0},"67":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"3":{"tf":1.0},"43":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"6":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"43":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"99":{"tf":1.0}}},"6":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"5":{"1":{"6":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":1,"docs":{"50":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"117":{"tf":1.0}},"f":{"df":1,"docs":{"99":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"x":{",":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"31":{"tf":2.0},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"2":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"100":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"11":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"77":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"79":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"y":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"24":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"35":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":1,"docs":{"8":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"7":{"tf":2.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"122":{"tf":1.7320508075688772},"14":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.4641016151377544},"9":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"106":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":2.449489742783178},"78":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"36":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":2.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"116":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"df":3,"docs":{"15":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":28,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":3.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"21":{"tf":2.23606797749979},"3":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":2.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"50":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"119":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"24":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"43":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"14":{"tf":1.4142135623730951},"16":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":2.0},"25":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"24":{"tf":3.4641016151377544},"25":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.0},"50":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"31":{"tf":1.0},"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"116":{"tf":1.0},"13":{"tf":2.0},"27":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"24":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"42":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"35":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}},"y":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"114":{"tf":1.0}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"116":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"10":{"tf":2.449489742783178},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"16":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"27":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"106":{"tf":2.0},"112":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"112":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"122":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"35":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":2.0}},"t":{"df":2,"docs":{"70":{"tf":1.0},"75":{"tf":1.0}}}}},"df":11,"docs":{"101":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"13":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"75":{"tf":1.0}},"u":{"df":2,"docs":{"31":{"tf":1.0},"72":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":3,"docs":{"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}},"r":{"df":3,"docs":{"40":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"23":{"tf":2.0}}},"df":15,"docs":{"24":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"32":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"3":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":2.23606797749979},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"79":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":2,"docs":{"50":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"50":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}},"df":2,"docs":{"31":{"tf":1.0},"40":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"31":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"14":{"tf":2.449489742783178},"15":{"tf":2.0},"16":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.0},"9":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":3,"docs":{"21":{"tf":2.23606797749979},"38":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"62":{"tf":1.0},"71":{"tf":2.23606797749979}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}},"l":{"df":1,"docs":{"50":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"8":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"106":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":2.8284271247461903},"70":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"16":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"51":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"52":{"tf":2.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"22":{"tf":1.4142135623730951},"49":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"116":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"24":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}},"o":{"df":7,"docs":{"107":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"2":{"tf":2.0}},"i":{"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":2.23606797749979},"3":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"50":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"22":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"23":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":1,"docs":{"122":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":2.0},"3":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"65":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":3,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"62":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"2":{"tf":1.0}}},"b":{"df":1,"docs":{"2":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"2":{"tf":2.8284271247461903},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"t":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":2.449489742783178},"24":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"13":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"2":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"w":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":3,"docs":{"15":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":2.8284271247461903},"3":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"66":{"tf":1.0},"79":{"tf":1.0}}}},"df":1,"docs":{"27":{"tf":1.0}}},"p":{"df":6,"docs":{"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"107":{"tf":1.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"107":{"tf":1.0},"8":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":2.0},"3":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"20":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"81":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":2.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"116":{"tf":1.0},"29":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"109":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"122":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}},"r":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":4,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"41":{"tf":1.0},"46":{"tf":1.0}}},"df":8,"docs":{"21":{"tf":2.23606797749979},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.4142135623730951},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":3.0}}}}},"df":3,"docs":{"21":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":3.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":3.1622776601683795},"37":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"14":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}},"t":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":4.47213595499958},"3":{"tf":1.0}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"14":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":3.605551275463989},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":24,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":15,"docs":{"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"31":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"36":{"tf":4.69041575982343},"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"106":{"tf":2.6457513110645907},"117":{"tf":1.7320508075688772},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.4142135623730951},"98":{"tf":2.0}},"f":{"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"3":{"tf":2.0},"7":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"3":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"58":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":10,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"73":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":1,"docs":{"106":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"3":{"tf":2.6457513110645907},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":2.8284271247461903},"7":{"tf":1.7320508075688772}}},"v":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"8":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"36":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"3":{"tf":1.0}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"74":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"35":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"2":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":2.0}},"p":{"df":1,"docs":{"35":{"tf":1.0}}},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":1,"docs":{"37":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"50":{"tf":1.0},"87":{"tf":1.0}}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"6":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"50":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"3":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"c":{"df":1,"docs":{"69":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"31":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"36":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"39":{"tf":1.0},"5":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":2.0},"20":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"74":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":2,"docs":{"34":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"15":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":9,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"50":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"84":{"tf":2.0}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"37":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":4.123105625617661},"35":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"116":{"tf":1.0}}}},"k":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"8":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}},"r":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":20,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":8,"docs":{"24":{"tf":1.0},"47":{"tf":2.0},"51":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"34":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.0},"24":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"116":{"tf":1.0},"122":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"21":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"24":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"31":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":12,"docs":{"122":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"3":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"2":{"tf":3.0},"3":{"tf":2.449489742783178},"39":{"tf":1.0},"45":{"tf":2.0},"67":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"3":{"tf":1.0},"43":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"6":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"43":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"99":{"tf":1.0}}},"6":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"5":{"1":{"6":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":1,"docs":{"50":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"117":{"tf":1.0}},"f":{"df":1,"docs":{"99":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}},"x":{",":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"31":{"tf":2.0},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"2":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"100":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"11":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"77":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"79":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"y":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":6,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"35":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":1,"docs":{"8":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"7":{"tf":2.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"122":{"tf":1.7320508075688772},"14":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.605551275463989},"9":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"106":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":2.449489742783178},"78":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"36":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":2.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"116":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"df":3,"docs":{"15":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":28,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":3.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"21":{"tf":2.23606797749979},"3":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":2.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"50":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"24":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"43":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.0},"39":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"14":{"tf":1.4142135623730951},"16":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":2.0},"25":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"24":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.0},"50":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"31":{"tf":1.0},"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"116":{"tf":1.0},"13":{"tf":2.0},"27":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"24":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"42":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"35":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}},"y":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"114":{"tf":1.0}},"t":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"116":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"16":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"27":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"106":{"tf":2.0},"112":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":2,"docs":{"106":{"tf":1.0},"112":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"122":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"35":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":2.0}},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":11,"docs":{"101":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"13":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"75":{"tf":1.0}},"u":{"df":2,"docs":{"31":{"tf":1.0},"72":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":3,"docs":{"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}},"r":{"df":3,"docs":{"40":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"23":{"tf":2.0}}},"df":15,"docs":{"24":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"32":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"3":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"79":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":2,"docs":{"50":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"50":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}},"df":2,"docs":{"31":{"tf":1.0},"40":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":7,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"19":{"tf":2.0},"2":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"31":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"14":{"tf":2.449489742783178},"15":{"tf":2.0},"16":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.0},"9":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":3,"docs":{"21":{"tf":2.23606797749979},"38":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"62":{"tf":1.0},"71":{"tf":2.449489742783178}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}},"l":{"df":1,"docs":{"50":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"8":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"106":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":2.8284271247461903},"70":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"16":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"51":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"43":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":2.0},"77":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"22":{"tf":1.7320508075688772},"49":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"116":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"24":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}},"o":{"df":7,"docs":{"107":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"2":{"tf":2.0}},"i":{"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":2.449489742783178},"3":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"40":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772}}},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"50":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"22":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"23":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":1,"docs":{"122":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":2.0},"3":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"65":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":3,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"62":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"2":{"tf":1.0}}},"b":{"df":1,"docs":{"2":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"2":{"tf":3.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":2.0}}},"t":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":2.449489742783178},"24":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"13":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"2":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"w":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":3,"docs":{"15":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":2.8284271247461903},"3":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":1,"docs":{"27":{"tf":1.0}}},"p":{"df":6,"docs":{"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"2":{"tf":3.0},"27":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"107":{"tf":1.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"107":{"tf":1.0},"8":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":2.0},"3":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"20":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"81":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":2.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"116":{"tf":1.0},"29":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"109":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"122":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}},"r":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":4,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"41":{"tf":1.0},"46":{"tf":1.0}}},"df":8,"docs":{"21":{"tf":2.23606797749979},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.4142135623730951},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":3.1622776601683795}}}}},"df":3,"docs":{"21":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":3.1622776601683795},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":3.1622776601683795},"37":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}},"t":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":4.58257569495584},"3":{"tf":1.0}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"14":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":3.605551275463989},"40":{"tf":2.0},"41":{"tf":2.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":24,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":15,"docs":{"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"31":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"36":{"tf":4.69041575982343},"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"106":{"tf":2.6457513110645907},"117":{"tf":1.7320508075688772},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.4142135623730951},"98":{"tf":2.0}},"f":{"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"3":{"tf":2.0},"7":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"3":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"58":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":10,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"45":{"tf":2.0},"46":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"73":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":1,"docs":{"106":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"3":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":3.0},"7":{"tf":1.7320508075688772}}},"v":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"8":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"36":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"3":{"tf":1.0}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"74":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":2.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"2":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":2.0}},"p":{"df":1,"docs":{"35":{"tf":1.0}}},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":1,"docs":{"37":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"50":{"tf":1.0},"87":{"tf":1.0}}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"6":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"50":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"3":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"c":{"df":1,"docs":{"69":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"31":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"36":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":2.0},"20":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"74":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":2,"docs":{"34":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"15":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":3.4641016151377544}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":9,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"50":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"37":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":4.242640687119285},"35":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"k":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"8":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}},"r":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}},"df":20,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":8,"docs":{"24":{"tf":1.0},"47":{"tf":2.0},"51":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"34":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"116":{"tf":1.0},"122":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":2.23606797749979},"67":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"21":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"24":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"31":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":12,"docs":{"122":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"_":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}},"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"105":{"tf":1.0},"113":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"37":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"56":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"83":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"2":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file +Object.assign(window.search, {"doc_urls":["misc/zsh.html#zsh1","misc/zsh.html#keybindings","misc/zsh.html#completion","misc/zsh.html#installation","misc/zsh.html#completion-variables","misc/zsh.html#completion-functions","misc/zsh.html#example","misc/bash.html#bash1","misc/bash.html#expansion","misc/bash.html#generator","misc/bash.html#parameter","misc/bash.html#pathname","misc/bash.html#io-redirection","misc/bash.html#explanation","misc/bash.html#completion","misc/bash.html#example","misc/fish.html#fish1","misc/fish.html#keymaps","misc/fish.html#debug","misc/tmux.html#tmux1","misc/tmux.html#tmux-cli","misc/tmux.html#scripting","misc/tmux.html#bindings","misc/tmux.html#command-mode","misc/git.html#git1","misc/git.html#staging","misc/git.html#remote","misc/git.html#branching","misc/git.html#resetting","misc/git.html#tags","misc/git.html#diff","misc/git.html#log","misc/git.html#file-history","misc/git.html#patching","misc/git.html#submodules","misc/git.html#inspection","misc/git.html#revision-specifier","misc/awk.html#awk1","misc/awk.html#input-processing","misc/awk.html#program","misc/awk.html#special-pattern","misc/awk.html#special-variables","misc/awk.html#special-statements--functions","misc/awk.html#examples","misc/awk.html#filter-records","misc/awk.html#capture-in-variables","misc/awk.html#run-shell-command-and-capture-output","misc/emacs.html#emacs1","misc/emacs.html#help","misc/emacs.html#package-manager","misc/emacs.html#window","misc/emacs.html#yankpaste","misc/emacs.html#blockrect","misc/emacs.html#mass-edit","misc/emacs.html#grep","misc/emacs.html#lisp-mode","misc/emacs.html#narrow","misc/emacs.html#org","misc/emacs.html#org-source","misc/gdb.html#gdb1","misc/gdb.html#cli","misc/gdb.html#interactive-usage","misc/gdb.html#user-commands-macros","misc/gdb.html#hooks","misc/gdb.html#examples","misc/gdb.html#catch-sigsegv-and-execute-commands","misc/gdb.html#run-backtrace-on-thread-1-batch-mode","misc/gdb.html#script-gdb-for-automating-debugging-sessions","misc/gdb.html#know-bugs","misc/gdb.html#workaround-command--finish-bug","misc/radare2.html#radare21","misc/radare2.html#print","misc/radare2.html#flags","misc/radare2.html#help","misc/radare2.html#relocation","monitor/index.html#resource-analysis--monitor","monitor/lsof.html#lsof8","monitor/lsof.html#examples","monitor/lsof.html#file-flags","monitor/lsof.html#open-tcp-connections","monitor/lsof.html#open-connection-to-specific-host","monitor/pidstat.html#pidstat1","monitor/pidstat.html#page-fault-and-memory-utilization","monitor/pidstat.html#io-statistics","monitor/pgrep.html#pgrep1","monitor/pgrep.html#debug-newest-process","monitor/pmap.html#pmap1","monitor/pstack.html#pstack1","trace_profile/index.html#trace-and-profile","trace_profile/strace.html#strace1","trace_profile/strace.html#examples","trace_profile/ltrace.html#ltrace1","trace_profile/ltrace.html#example","trace_profile/perf.html#perf1","trace_profile/perf.html#flamegraph","trace_profile/perf.html#flamegraph-with-single-event-trace","trace_profile/perf.html#flamegraph-with-multiple-event-traces","trace_profile/oprofile.html#oprofile","trace_profile/time.html#usrbintime1","binary/index.html#binary","binary/od.html#od1","binary/od.html#ascii-to-hex-string","binary/od.html#extract-parts-of-file","binary/xxd.html#xxd1","binary/xxd.html#ascii-to-hex-stream","binary/xxd.html#hex-to-binary-stream","binary/xxd.html#ascii-to-binary","binary/xxd.html#ascii-to-c-array-hex-encoded","binary/readelf.html#readelf1","binary/objdump.html#objdump1","binary/objdump.html#disassemble-section","binary/nm.html#nm1","development/index.html#development","development/c++filt.html#cfilt1","development/c++filt.html#demangle-symbol","development/c++filt.html#demangle-stream","development/c++.html#c","development/c++.html#type-deduction","development/glibc.html#glibc","development/glibc.html#malloc-tracer--mtrace3","development/glibc.html#malloc-check--mallopt3","development/gcc.html#gcc1","development/gcc.html#cli","development/gcc.html#preprocessing","development/gcc.html#builtins","development/gcc.html#__builtin_expectexpr-cond","development/ld.so.html#ldso8","development/ld.so.html#environment-variables","development/ld.so.html#ld_preload-initialization-order-and-link-map","development/ld.so.html#dynamic-linking-x86_64"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":2,"title":1},"10":{"body":60,"breadcrumbs":2,"title":1},"100":{"body":45,"breadcrumbs":2,"title":1},"101":{"body":34,"breadcrumbs":4,"title":3},"102":{"body":76,"breadcrumbs":4,"title":3},"103":{"body":19,"breadcrumbs":2,"title":1},"104":{"body":6,"breadcrumbs":4,"title":3},"105":{"body":7,"breadcrumbs":4,"title":3},"106":{"body":11,"breadcrumbs":3,"title":2},"107":{"body":15,"breadcrumbs":6,"title":5},"108":{"body":55,"breadcrumbs":2,"title":1},"109":{"body":36,"breadcrumbs":2,"title":1},"11":{"body":93,"breadcrumbs":2,"title":1},"110":{"body":8,"breadcrumbs":3,"title":2},"111":{"body":7,"breadcrumbs":2,"title":1},"112":{"body":0,"breadcrumbs":1,"title":1},"113":{"body":0,"breadcrumbs":2,"title":1},"114":{"body":3,"breadcrumbs":3,"title":2},"115":{"body":10,"breadcrumbs":3,"title":2},"116":{"body":0,"breadcrumbs":2,"title":1},"117":{"body":14,"breadcrumbs":3,"title":2},"118":{"body":0,"breadcrumbs":2,"title":1},"119":{"body":62,"breadcrumbs":4,"title":3},"12":{"body":24,"breadcrumbs":3,"title":2},"120":{"body":34,"breadcrumbs":4,"title":3},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":0,"breadcrumbs":2,"title":1},"123":{"body":15,"breadcrumbs":2,"title":1},"124":{"body":0,"breadcrumbs":2,"title":1},"125":{"body":90,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":38,"breadcrumbs":3,"title":2},"128":{"body":128,"breadcrumbs":6,"title":5},"129":{"body":246,"breadcrumbs":4,"title":3},"13":{"body":26,"breadcrumbs":2,"title":1},"14":{"body":123,"breadcrumbs":2,"title":1},"15":{"body":66,"breadcrumbs":2,"title":1},"16":{"body":0,"breadcrumbs":2,"title":1},"17":{"body":28,"breadcrumbs":2,"title":1},"18":{"body":19,"breadcrumbs":2,"title":1},"19":{"body":19,"breadcrumbs":2,"title":1},"2":{"body":0,"breadcrumbs":2,"title":1},"20":{"body":86,"breadcrumbs":3,"title":2},"21":{"body":119,"breadcrumbs":2,"title":1},"22":{"body":128,"breadcrumbs":2,"title":1},"23":{"body":24,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":2,"title":1},"25":{"body":7,"breadcrumbs":2,"title":1},"26":{"body":21,"breadcrumbs":2,"title":1},"27":{"body":46,"breadcrumbs":2,"title":1},"28":{"body":50,"breadcrumbs":2,"title":1},"29":{"body":35,"breadcrumbs":2,"title":1},"3":{"body":36,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":1},"31":{"body":27,"breadcrumbs":2,"title":1},"32":{"body":19,"breadcrumbs":3,"title":2},"33":{"body":109,"breadcrumbs":2,"title":1},"34":{"body":64,"breadcrumbs":2,"title":1},"35":{"body":27,"breadcrumbs":2,"title":1},"36":{"body":28,"breadcrumbs":3,"title":2},"37":{"body":18,"breadcrumbs":2,"title":1},"38":{"body":45,"breadcrumbs":3,"title":2},"39":{"body":37,"breadcrumbs":2,"title":1},"4":{"body":25,"breadcrumbs":3,"title":2},"40":{"body":29,"breadcrumbs":3,"title":2},"41":{"body":22,"breadcrumbs":3,"title":2},"42":{"body":72,"breadcrumbs":4,"title":3},"43":{"body":0,"breadcrumbs":2,"title":1},"44":{"body":18,"breadcrumbs":3,"title":2},"45":{"body":39,"breadcrumbs":3,"title":2},"46":{"body":25,"breadcrumbs":6,"title":5},"47":{"body":0,"breadcrumbs":2,"title":1},"48":{"body":59,"breadcrumbs":2,"title":1},"49":{"body":12,"breadcrumbs":3,"title":2},"5":{"body":89,"breadcrumbs":3,"title":2},"50":{"body":21,"breadcrumbs":2,"title":1},"51":{"body":28,"breadcrumbs":2,"title":1},"52":{"body":16,"breadcrumbs":2,"title":1},"53":{"body":35,"breadcrumbs":3,"title":2},"54":{"body":17,"breadcrumbs":2,"title":1},"55":{"body":36,"breadcrumbs":3,"title":2},"56":{"body":16,"breadcrumbs":2,"title":1},"57":{"body":36,"breadcrumbs":2,"title":1},"58":{"body":20,"breadcrumbs":3,"title":2},"59":{"body":0,"breadcrumbs":2,"title":1},"6":{"body":62,"breadcrumbs":2,"title":1},"60":{"body":42,"breadcrumbs":2,"title":1},"61":{"body":180,"breadcrumbs":3,"title":2},"62":{"body":25,"breadcrumbs":4,"title":3},"63":{"body":24,"breadcrumbs":2,"title":1},"64":{"body":0,"breadcrumbs":2,"title":1},"65":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":9,"breadcrumbs":7,"title":6},"67":{"body":36,"breadcrumbs":6,"title":5},"68":{"body":0,"breadcrumbs":3,"title":2},"69":{"body":27,"breadcrumbs":5,"title":4},"7":{"body":0,"breadcrumbs":2,"title":1},"70":{"body":0,"breadcrumbs":2,"title":1},"71":{"body":11,"breadcrumbs":2,"title":1},"72":{"body":16,"breadcrumbs":2,"title":1},"73":{"body":9,"breadcrumbs":2,"title":1},"74":{"body":15,"breadcrumbs":2,"title":1},"75":{"body":0,"breadcrumbs":3,"title":3},"76":{"body":49,"breadcrumbs":4,"title":1},"77":{"body":0,"breadcrumbs":4,"title":1},"78":{"body":10,"breadcrumbs":5,"title":2},"79":{"body":21,"breadcrumbs":6,"title":3},"8":{"body":0,"breadcrumbs":2,"title":1},"80":{"body":9,"breadcrumbs":7,"title":4},"81":{"body":26,"breadcrumbs":4,"title":1},"82":{"body":50,"breadcrumbs":7,"title":4},"83":{"body":6,"breadcrumbs":5,"title":2},"84":{"body":22,"breadcrumbs":4,"title":1},"85":{"body":14,"breadcrumbs":6,"title":3},"86":{"body":12,"breadcrumbs":4,"title":1},"87":{"body":6,"breadcrumbs":4,"title":1},"88":{"body":0,"breadcrumbs":2,"title":2},"89":{"body":64,"breadcrumbs":3,"title":1},"9":{"body":16,"breadcrumbs":2,"title":1},"90":{"body":25,"breadcrumbs":3,"title":1},"91":{"body":27,"breadcrumbs":3,"title":1},"92":{"body":11,"breadcrumbs":3,"title":1},"93":{"body":128,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":3,"title":1},"95":{"body":15,"breadcrumbs":6,"title":4},"96":{"body":17,"breadcrumbs":6,"title":4},"97":{"body":43,"breadcrumbs":3,"title":1},"98":{"body":6,"breadcrumbs":3,"title":1},"99":{"body":0,"breadcrumbs":1,"title":1}},"docs":{"0":{"body":"","breadcrumbs":"Misc » zsh(1)","id":"0","title":"zsh(1)"},"1":{"body":"Change input mode: bindkey -v change to vi keymap\nbindkey -e change to emacs keymap Define key-mappings: bindkey list mappings in current keymap\nbindkey in-str cmd create mapping for `in-str` to `cmd`\nbindkey -r in-str remove binding for `in-str` # C-v <key> dump <key> code, which can be used in `in-str`\n# zle -l list all functions for keybindings\n# man zshzle(1) STANDARD WIDGETS: get description of functions","breadcrumbs":"Misc » Keybindings","id":"1","title":"Keybindings"},"10":{"body":"# default param\nbar=${foo:-some_val} # if $foo set, then bar=$foo else bar=some_val # check param set\nbar=${foo:?msg} # if $foo set, then bar=$foo else exit and print msg # indirect\nFOO=foo\nBAR=FOO\nbar=${!BAR} # deref value of BAR -> bar=$FOO # prefix\n${foo#prefix} # remove prefix when expanding $foo\n# suffix\n${foo%suffix} # remove suffix when expanding $foo # substitute\n${foo/pattern/string} # replace pattern with string when expanding foo\n# pattern starts with\n# '/' replace all occurences of pattern\n# '#' pattern match at beginning\n# '%' pattern match at end Note: prefix/suffix/pattern are expanded as pathnames .","breadcrumbs":"Misc » Parameter","id":"10","title":"Parameter"},"100":{"body":"od [opts] <file> -An don't print addr info -tx4 print hex in 4 byte chunks -ta print as named character -tc printable chars or backslash escape -w4 print 4 bytes per line -j <n> skip <n> bytes from <file> (hex if start with 0x) -N <n> dump <n> bytes (hex of start with 0x)","breadcrumbs":"Binary » od(1)","id":"100","title":"od(1)"},"101":{"body":"echo -n AAAABBBB | od -An -w4 -tx4 >> 41414141 >> 42424242 echo -n '\\x7fELF\\n' | od -tx1 -ta -tc >> 0000000 7f 45 4c 46 0a # tx1 >> del E L F nl # ta >> 177 E L F \\n # tc","breadcrumbs":"Binary » ASCII to hex string","id":"101","title":"ASCII to hex string"},"102":{"body":"For example .rodata section from an elf file. We can use readelf to get the offset into the file where the .rodata section starts. readelf -W -S foo >> Section Headers: >> [Nr] Name Type Address Off Size ES Flg Lk Inf Al >> ... >> [15] .rodata PROGBITS 00000000004009c0 0009c0 000030 00 A 0 0 16 With the offset of -j 0x0009c0 we can dump -N 0x30 bytes from the beginning of the .rodata section as follows: od -j 0x0009c0 -N 0x30 -tx4 -w4 foo >> 0004700 00020001 >> 0004704 00000000 >> * >> 0004740 00000001 >> 0004744 00000002 >> 0004750 00000003 >> 0004754 00000004 Note : Numbers starting with 0x will be interpreted as hex by od.","breadcrumbs":"Binary » Extract parts of file","id":"102","title":"Extract parts of file"},"103":{"body":"xxd [opts] -p dump continuous hexdump -r convert hexdump into binary ('revert') -e dump as little endian mode -i output as C array","breadcrumbs":"Binary » xxd(1)","id":"103","title":"xxd(1)"},"104":{"body":"echo -n 'aabb' | xxd -p >> 61616262","breadcrumbs":"Binary » ASCII to hex stream","id":"104","title":"ASCII to hex stream"},"105":{"body":"echo -n '61616262' | xxd -p -r >> aabb","breadcrumbs":"Binary » Hex to binary stream","id":"105","title":"Hex to binary stream"},"106":{"body":"echo -n '\\x7fELF' | xxd -p | xxd -p -r | file -p - >> ELF","breadcrumbs":"Binary » ASCII to binary","id":"106","title":"ASCII to binary"},"107":{"body":"xxd -i <(echo -n '\\x7fELF') >> unsigned char _proc_self_fd_11[] = { >> 0x7f, 0x45, 0x4c, 0x46 >> }; >> unsigned int _proc_self_fd_11_len = 4;","breadcrumbs":"Binary » ASCII to C array (hex encoded)","id":"107","title":"ASCII to C array (hex encoded)"},"108":{"body":"readelf [opts] <elf> -W|--wide wide output, dont break output at 80 chars -h print ELF header -S print section headers -l print program headers + segment mapping -d print .dynamic section (dynamic link information) --syms print symbol tables (.symtab .dynsym) --dyn-syms print dynamic symbol table (exported symbols for dynamic linker) -r print relocation sections (.rel.*, .rela.*)","breadcrumbs":"Binary » readelf(1)","id":"108","title":"readelf(1)"},"109":{"body":"objdump [opts] <elf> -M intel use intil syntax -d disassemble text section -D disassemble all sections -S mix disassembly with source code -C demangle -j <section> display info for section --[no-]show-raw-insn [dont] show object code next to disassembly","breadcrumbs":"Binary » objdump(1)","id":"109","title":"objdump(1)"},"11":{"body":"* match any string\n? match any single char\n\\\\ match backslash\n[abc] match any char of 'a' 'b' 'c'\n[a-z] match any char between 'a' - 'z'\n[^ab] negate, match all not 'a' 'b'\n[:class:] match any char in class, available: alnum,alpha,ascii,blank,cntrl,digit,graph,lower, print,punct,space,upper,word,xdigit Wit extglob shell option enabled it is possible to have more powerful patterns. In the following pattern-list is one ore more patterns separated by | char. ?(pattern-list) matches zero or one occurrence of the given patterns\n*(pattern-list) matches zero or more occurrences of the given patterns\n+(pattern-list) matches one or more occurrences of the given patterns\n@(pattern-list) matches one of the given patterns\n!(pattern-list) matches anything except one of the given patterns Note: shopt -s extglob/shopt -u extglob to enable/disable extglob option.","breadcrumbs":"Misc » Pathname","id":"11","title":"Pathname"},"110":{"body":"For example .plt section: objdump -j .plt -d <elf>","breadcrumbs":"Binary » Disassemble section","id":"110","title":"Disassemble section"},"111":{"body":"nm [opts] <elf> -C demangle -u undefined only","breadcrumbs":"Binary » nm(1)","id":"111","title":"nm(1)"},"112":{"body":"","breadcrumbs":"Development","id":"112","title":"Development"},"113":{"body":"","breadcrumbs":"Development » c++filt(1)","id":"113","title":"c++filt(1)"},"114":{"body":"c++-filt <symbol_str>","breadcrumbs":"Development » Demangle symbol","id":"114","title":"Demangle symbol"},"115":{"body":"For example dynamic symbol table: readelf -W --dyn-syms <elf> | c++filt","breadcrumbs":"Development » Demangle stream","id":"115","title":"Demangle stream"},"116":{"body":"","breadcrumbs":"Development » c++","id":"116","title":"c++"},"117":{"body":"Force compile error to see what auto is deduced to. auto foo = bar(); // force compile error\ntypename decltype(foo)::_;","breadcrumbs":"Development » Type deduction","id":"117","title":"Type deduction"},"118":{"body":"","breadcrumbs":"Development » glibc","id":"118","title":"glibc"},"119":{"body":"Trace memory allocation and de-allocation to detect memory leaks. Need to call mtrace(3) to install the tracing hooks. If we can't modify the binary to call mtrace we can create a small shared library and pre-load it. // libmtrace.c\n#include <mcheck.h>\n__attribute__((constructor)) static void init_mtrace() { mtrace(); } Compile as: gcc -shared -fPIC -o libmtrace.so libmtrace.c To generate the trace file run: export MALLOC_TRACE=<file>\nLD_PRELOAD=./libmtrace.so <binary> Note : If MALLOC_TRACE is not set mtrace won't install tracing hooks. To get the results of the trace file: mtrace <binary> $MALLOC_TRACE","breadcrumbs":"Development » malloc tracer mtrace(3)","id":"119","title":"malloc tracer mtrace(3)"},"12":{"body":"Note: The trick with bash I/O redirection is to interpret from left-to-right. # stdout & stderr to file\ncommand >file 2>&1\n# equivalent\ncommand &>file # stderr to stdout & stdout to file\ncommand 2>&1 >file","breadcrumbs":"Misc » I/O redirection","id":"12","title":"I/O redirection"},"120":{"body":"Configure action when glibc detects memory error. export MALLOC_CHECK_=<N> Useful values: 1 print detailed error & continue\n3 print detailed error + stack trace + memory mappings & abort\n7 print simple error message + stack trace + memory mappings & abort","breadcrumbs":"Development » malloc check mallopt(3)","id":"120","title":"malloc check mallopt(3)"},"121":{"body":"","breadcrumbs":"Development » gcc(1)","id":"121","title":"gcc(1)"},"122":{"body":"","breadcrumbs":"Development » CLI","id":"122","title":"CLI"},"123":{"body":"While debugging can be helpful to just pre-process files. gcc -E [-dM] ... -E run only preprocessor -dM list only #define statements","breadcrumbs":"Development » Preprocessing","id":"123","title":"Preprocessing"},"124":{"body":"","breadcrumbs":"Development » Builtins","id":"124","title":"Builtins"},"125":{"body":"Give the compiler a hint which branch is hot, so it can lay out the code accordingly to reduce number of jump instructions. See on compiler explorer . echo \"\nextern void foo();\nextern void bar();\nvoid run0(int x) { if (__builtin_expect(x,0)) { foo(); } else { bar(); }\n}\nvoid run1(int x) { if (__builtin_expect(x,1)) { foo(); } else { bar(); }\n}\n\" | gcc -O2 -S -masm=intel -o /dev/stdout -xc - Will generate something similar to the following. run0: bar is on the path without branch run1: foo is on the path without branch run0: test edi, edi jne .L4 xor eax, eax jmp bar\n.L4: xor eax, eax jmp foo\nrun1: test edi, edi je .L6 xor eax, eax jmp foo\n.L6: xor eax, eax jmp bar","breadcrumbs":"Development » __builtin_expect(expr, cond)","id":"125","title":"__builtin_expect(expr, cond)"},"126":{"body":"","breadcrumbs":"Development » ld.so(8)","id":"126","title":"ld.so(8)"},"127":{"body":"LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded LD_DEBUG=<opts> comma separated list of debug options =help list available options =libs show library search path =files processing of input files =symbols show search path for symbol lookup =bindings show against which definition a symbol is bound","breadcrumbs":"Development » Environment Variables","id":"127","title":"Environment Variables"},"128":{"body":"Libraries specified in LD_PRELOAD are loaded from left-to-right but initialized from right-to-left. > ldd ./main >> libc.so.6 => /usr/lib/libc.so.6 > LD_PRELOAD=liba.so:libb.so ./main --> preloaded in this order <-- initialized in this order The preload order determines: the order libraries are inserted into the link map the initialization order for libraries For the example listed above the resulting link map will look like the following: +------+ +------+ +------+ +------+ | main | -> | liba | -> | libb | -> | libc | +------+ +------+ +------+ +------+ This can be seen when running with LD_DEBUG=files: > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main # load order (-> determines link map) >> file=liba.so [0]; generating link map >> file=libb.so [0]; generating link map >> file=libc.so.6 [0]; generating link map # init order >> calling init: /usr/lib/libc.so.6 >> calling init: <path>/libb.so >> calling init: <path>/liba.so >> initialize program: ./main To verify the link map order we let ld.so resolve the memcpy(3) libc symbol (used in main ) dynamically, while enabling LD_DEBUG=symbols,bindings to see the resolving in action. > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main >> symbol=memcpy; lookup in file=./main [0] >> symbol=memcpy; lookup in file=<path>/liba.so [0] >> symbol=memcpy; lookup in file=<path>/libb.so [0] >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14]","breadcrumbs":"Development » LD_PRELOAD: Initialization Order and Link Map","id":"128","title":"LD_PRELOAD: Initialization Order and Link Map"},"129":{"body":"Dynamic linking basically works via one indirect jump. It uses a combination of function trampolines (.plt section) and a function pointer table (.got.plt section). On the first call the trampoline sets up some metadata and then jumps to the ld.so runtime resolve function, which in turn patches the table with the correct function pointer. .plt ....... procedure linkage table, contains function trampolines, usually located in code segment (rx permission) .got.plt ... global offset table for .plt, holds the function pointer table Using radare2 we can analyze this in more detail: [0x00401040]> pd 4 @ section..got.plt ;-- section..got.plt: ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt ;-- _GLOBAL_OFFSET_TABLE_: [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic [1] 0x00404008 .qword 0x0000000000000000 ; CODE XREF from section..plt @ +0x6 [2] 0x00404010 .qword 0x0000000000000000 ;-- reloc.puts: ; CODE XREF from sym.imp.puts @ 0x401030 [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts [0x00401040]> pd 6 @ section..plt ;-- section..plt: ;-- .plt: ; [12] -r-x section size 32 named .plt ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] ╎ 0x0040102c 0f1f4000 nop dword [rax] ┌ 6: int sym.imp.puts (const char *s); └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] ╎ 0x00401036 6800000000 push 0 └─< 0x0040103b e9e0ffffff jmp sym..plt At address 0x00401030 in the .plt section we see the indirect jump for puts using the function pointer in _GLOBAL_OFFSET_TABLE_[3] (GOT). GOT[3] initially points to instruction after the puts trampoline 0x00401036. This pushes the relocation index 0 and then jumps to the first trampoline 0x00401020. The first trampoline jumps to GOT[2] which will be filled at program startup by the ld.so with its resolve function. The ld.so resolve function fixes the relocation referenced by the relocation index pushed by the puts trampoline. The relocation entry at index 0 tells the resolve function which symbol to search for and where to put the function pointer: > readelf -r <main> >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: >> Offset Info Type Sym. Value Sym. Name + Addend >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 As we can see the offset from relocation at index 0 points to GOT[3].","breadcrumbs":"Development » Dynamic Linking (x86_64)","id":"129","title":"Dynamic Linking (x86_64)"},"13":{"body":"j>&i Duplicate fd i to fd j, making j a copy of i. See dup2(2) . Example: command 2>&1 >file duplicate fd 1 to fd 2, effectively redirecting stderr to stdout redirect stdout to file","breadcrumbs":"Misc » Explanation","id":"13","title":"Explanation"},"14":{"body":"The complete builtin is used to interact with the completion system. complete # print currently installed completion handler\ncomplete -F <func> <cmd> # install <func> as completion handler for <cmd>\ncomplete -r <cmd> # uninstall completion handler for <cmd> Variables available in completion functions: # in\n$1 # <cmd>\n$2 # current word\n$3 # privous word COMP_WORDS # array with current command line words\nCOMP_CWORD # index into COMP_WORDS with current cursor position # out\nCOMPREPLY # array with possible completions The compgen builtin is used to generate possible matches by comparing word against words generated by option. compgen [option] [word] # usefule options:\n# -W <list> specify list of possible completions\n# -d generate list with dirs\n# -f generate list with files\n# -u generate list with users\n# -e generate list with exported variables # compare \"f\" against words \"foo\" \"foobar\" \"bar\" and generate matches\ncompgen -W \"foo foobar bar\" \"f\" # compare \"hom\" against file/dir names and generate matches\ncompgen -d -f \"hom\"","breadcrumbs":"Misc » Completion","id":"14","title":"Completion"},"15":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -h The completion handler could be implemented as follows: function _foo() { local curr=$2 local prev=$3 local opts=\"-c -s -f -h\" case $prev in -c) COMPREPLY=( $(compgen -W \"green red blue\" -- $curr) );; -s) COMPREPLY=( $(compgen -W \"low high\" -- $curr) );; -f) COMPREPLY=( $(compgen -f -- $curr) );; *) COMPREPLY=( $(compgen -W \"$opts\" -- $curr) );; esac\n} complete -F _foo foo","breadcrumbs":"Misc » Example","id":"15","title":"Example"},"16":{"body":"","breadcrumbs":"Misc » fish(1)","id":"16","title":"fish(1)"},"17":{"body":"Shift-Tab ........... tab-completion with search Alt-Up / Alt-Down ... search history with token under the cursor Alt-l ............... list content of dir under cursor Alt-p ............... append '2>&1 | less;' to current cmdline","breadcrumbs":"Misc » keymaps","id":"17","title":"keymaps"},"18":{"body":"status print-stack-trace .. prints function stacktrace (can be used in scripts) breakpoint ................ halt script execution and gives shell (C-d | exit to continue)","breadcrumbs":"Misc » debug","id":"18","title":"debug"},"19":{"body":"Terminology: session is a collection of pseudo terminals which can have multiple windows window uses the entire screen and can be split into rectangular panes pane is a single pseudo terminal instance","breadcrumbs":"Misc » tmux(1)","id":"19","title":"tmux(1)"},"2":{"body":"","breadcrumbs":"Misc » Completion","id":"2","title":"Completion"},"20":{"body":"# Session\ntmux creates new session\ntmux ls list running sessions\ntmux kill-session -t <s> kill running session <s>\ntmux attach -t <s> [-d] attach to session <s>, detach other clients [-d]\ntmux detach -s <s> detach all clients from session <s> # Environment\ntmux showenv -g show global tmux environment variables\ntmux setenv -g <var> <val> set variable in global tmux env # Misc\ntmux source-file <file> source config <file>\ntmux lscm list available tmux commnds\ntmux show -g show global tmux options\ntmux display <msg> display message in tmux status line","breadcrumbs":"Misc » Tmux cli","id":"20","title":"Tmux cli"},"21":{"body":"# Session\ntmux list-sessions -F '#S' list running sessions, only IDs # Window\ntmux list-windows -F '#I' -t <s> list window IDs for session <s>\ntmux selectw -t <s>:<w> select window <w> in session <s> # Pane\ntmux list-panes -F '#P' -t <s>:<w> list pane IDs for window <w> in session <s>\ntmux selectp -t <s>:<w>.<p> select pane <p> in window <w> in session <s> # Run commands\ntmux send -t <s>:<w>.<p> \"ls\" C-m send cmds/keys to pane\ntmux run -t <p> <sh-cmd> run shell command <sh-cmd> in background and report output on pane -t <p> For example cycle through all panes in all windows in all sessions: # bash\nfor s in $(tmux list-sessions -F '#S'); do for w in $(tmux list-windows -F '#I' -t $s); do for p in $(tmux list-panes -F '#P' -t $s:$w); do echo $s:$w.$p done done\ndone","breadcrumbs":"Misc » Scripting","id":"21","title":"Scripting"},"22":{"body":"prefix d detach from current session\nprefix c create new window\nprefix w open window list\nprefix $ rename session\nprefix , rename window\nprefix . move current window Following bindings are specific to my tmux.conf : C-s prefix # Panes\nprefix s horizontal split\nprefix v vertical split\nprefix f toggle maximize/minimize current pane # Movement\nprefix Tab toggle between window prefix h move to pane left\nprefix j move to pane down\nprefix k move to pane up\nprefix l move to pane right # Resize\nprefix C-h resize pane left\nprefix C-j resize pane down\nprefix C-k resize pane up\nprefix C-l resize pane right # Copy/Paste\nprefix C-v enter copy mode\nprefix C-p paste yanked text\nprefix C-b open copy-buffer list # In Copy Mode\nv enable visual mode\ny yank selected text","breadcrumbs":"Misc » Bindings","id":"22","title":"Bindings"},"23":{"body":"To enter command mode prefix :. Some useful commands are: setw synchronize-panes on/off enables/disables synchronized input to all panes\nlist-keys -t vi-copy list keymaps for vi-copy mode","breadcrumbs":"Misc » Command mode","id":"23","title":"Command mode"},"24":{"body":"","breadcrumbs":"Misc » git(1)","id":"24","title":"git(1)"},"25":{"body":"git add -p [<file>] ............ partial staging (interactive)","breadcrumbs":"Misc » staging","id":"25","title":"staging"},"26":{"body":"git remote -v .................. list remotes verbose (with URLs) git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, remote branches, tracking mapping)","breadcrumbs":"Misc » Remote","id":"26","title":"Remote"},"27":{"body":"git branch [-a] ................ list available branches; -a to include remote branches git branch -vv ................. list branch & annotate with head sha1 & remote tracking branch git branch <bname> ............. create branch with name <bname> git checkout <bname> ........... switch to branch with name <bname> git push -u origin <rbname> .... push branch to origin (or other remote), and setup <rbname> as tracking branch","breadcrumbs":"Misc » Branching","id":"27","title":"Branching"},"28":{"body":"git reset [opt] <ref|commit> opt: --mixed .................... resets index, but not working tree --hard ..................... matches the working tree and index to that of the tree being switched to any changes to tracked files in the working tree since <commit> are lost git reset HEAD <file> .......... remove file from staging git reset --soft HEAD~1 ........ delete most recent commit but keep work git reset --hard HEAD~1 ........ delete most recent commit and delete work","breadcrumbs":"Misc » Resetting","id":"28","title":"Resetting"},"29":{"body":"git tag -a <tname> -m \"descr\" ........ creates an annotated tag (full object containing tagger, date, ...) git tag -l ........................... list available tags git checkout tag/<tname> ............. checkout specific tag git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch","breadcrumbs":"Misc » Tags","id":"29","title":"Tags"},"3":{"body":"Completion functions are provided via files and need to be placed in a location covered by $fpath. By convention the completion files are names as _<CMD>. A completion skeleton for the command foo, stored in _foo #compdef _foo foo function _foo() { ...\n} Alternatively one can install a completion function explicitly by calling compdef <FUNC> <CMD>.","breadcrumbs":"Misc » Installation","id":"3","title":"Installation"},"30":{"body":"git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs instead of usual diff snippets","breadcrumbs":"Misc » Diff","id":"30","title":"Diff"},"31":{"body":"git log --oneline .... shows log in single line per commit -> alias for '--pretty=oneline --abbrev-commit' git log --graph ...... text based graph of commit history git log --decorate ... decorate log with REFs","breadcrumbs":"Misc » Log","id":"31","title":"Log"},"32":{"body":"git log -p <file> ......... show commit history + diffs for <file> git log --oneline <file> .. show commit history for <file> in compact format","breadcrumbs":"Misc » File history","id":"32","title":"File history"},"33":{"body":"git format-patch <opt> <since>/<revision range> opt: -N ................... use [PATCH] instead [PATCH n/m] in subject when generating patch description (for patches spanning multiple commits) --start-number <n> ... start output file generation with <n> as start number instead '1' since spcifier: -3 .................. e.g: create a patch from last three commits <commit hash> ....... create patch with commits starting after <commit hash> git am <patch> ......... apply patch and create a commit for it git apply --stat <PATCH> ... see which files the patch would change git apply --check <PATCH> .. see if the patch can be applied cleanly git apply <PATCH> .......... apply the patch locally without creating a commit # eg: generate patches for each commit from initial commit on git format-patch -N $(git rev-list --max-parents=0 HEAD) # generate single patch file from a certain commit/ref git format-patch <COMMIT/REF> --stdout > my-patch.patch","breadcrumbs":"Misc » Patching","id":"33","title":"Patching"},"34":{"body":"git submodule add <url> [<path>] .......... add new submodule to current project git clone --recursive <url> ............... clone project and recursively all submodules (same as using 'git submodule update --init --recursive' after clone) git submodule update --init --recursive ... checkout submodules recursively using the commit listed in the super-project (in detached HEAD) git submodule update --remote <submod> .... fetch & merge remote changes for <submod>, this will pull origin/HEAD or a branch specified for the submodule git diff --submodule ...................... show commits that are part of the submodule diff","breadcrumbs":"Misc » Submodules","id":"34","title":"Submodules"},"35":{"body":"git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees git show <obj> ............ show <obj> git cat-file -p <obj> ..... print content of <obj>","breadcrumbs":"Misc » Inspection","id":"35","title":"Inspection"},"36":{"body":"HEAD ........ last commit HEAD~1 ...... last commit-1 HEAD~N ...... last commit-N (linear backwards when in tree structure, check difference between HEAD^ and HEAD~) git rev-list --max-parents=0 HEAD ........... first commit","breadcrumbs":"Misc » Revision Specifier","id":"36","title":"Revision Specifier"},"37":{"body":"awk [opt] program [input] -F <sepstr> field separator string (can be regex) program awk program input file or stdin if not file given","breadcrumbs":"Misc » awk(1)","id":"37","title":"awk(1)"},"38":{"body":"Input is processed in two stages: Splitting input into a sequence of records. By default split at newline character, but can be changed via the builtin RS variable. Splitting a record into fields. By default strings without whitespace, but can be changed via the builtin variable FS or command line option -F. Fields are accessed as follows: $0 whole record $1 field one $2 field two ...","breadcrumbs":"Misc » Input processing","id":"38","title":"Input processing"},"39":{"body":"An awk program is composed of pairs of the form: pattern { action } The program is run against each record in the input stream. If a pattern matches a record the corresponding action is executed and can access the fields. INPUT | v\nrecord ----> ∀ pattern matched | | v v\nfields ----> run associated action Any valid awk expr can be a pattern.","breadcrumbs":"Misc » Program","id":"39","title":"Program"},"4":{"body":"Following variables are available in Completion functions: $words # array with command line in words\n$#words # number words\n$CURRENT # index into $words for cursor position\n$words[CURRENT-1] # previous word (relative to cursor position)","breadcrumbs":"Misc » Completion Variables","id":"4","title":"Completion Variables"},"40":{"body":"awk provides two special patterns, BEGIN and END, which can be used multiple times. Actions with those patterns are executed exactly once . BEGIN actions are run before processing the first record END actions are run after processing the last record","breadcrumbs":"Misc » Special pattern","id":"40","title":"Special pattern"},"41":{"body":"RS record separator : first char is the record separator, by default FS field separator : regex to split records into fields, by default NR number record : number of current record","breadcrumbs":"Misc » Special variables","id":"41","title":"Special variables"},"42":{"body":"printf \"fmt\", args... Print format string, args are comma separated. %s string %d decimal %x hex %f float Width can be specified as %Ns, this reserves N chars for a string. For floats one can use %N.Mf, N is the total number including . and M. strftime(\"fmt\") Print time stamp formatted by fmt. %Y full year (eg 2020) %m month (01-12) %d day (01-31) %F alias for %Y-%m-%d %H hour (00-23) %M minute (00-59) %S second (00-59) %T alias for %H:%M:%S","breadcrumbs":"Misc » Special statements & functions","id":"42","title":"Special statements & functions"},"43":{"body":"","breadcrumbs":"Misc » Examples","id":"43","title":"Examples"},"44":{"body":"awk 'NR%2 == 0 { print $0 }' <file> The pattern NR%2 == 0 matches every second record and the action { print $0 } prints the whole record.","breadcrumbs":"Misc » Filter records","id":"44","title":"Filter records"},"45":{"body":"# /proc/<pid>/status\n# Name: cat\n# ...\n# VmRSS: 516 kB\n# ... for f in /proc/*/status; do cat $f | awk ' /^VmRSS/ { rss = $2/1024 } /^Name/ { name = $2 } END { printf \"%16s %6d MB\\n\", name, rss }';\ndone | sort -k2 -n We capture values from VmRSS and Name into variables and print them at the END once processing all records is done.","breadcrumbs":"Misc » Capture in variables","id":"45","title":"Capture in variables"},"46":{"body":"cat /proc/1/status | awk ' /^Pid/ { \"ps --no-header -o user \" $2 | getline user; print user }' We build a ps command line and capture the first line of the processes output in the user variable and then print it.","breadcrumbs":"Misc » Run shell command and capture output","id":"46","title":"Run shell command and capture output"},"47":{"body":"","breadcrumbs":"Misc » emacs(1)","id":"47","title":"emacs(1)"},"48":{"body":"C-h ? list available help modes C-h f describe function C-h v describe variable C-h c <KEY> print command bound to <KEY> C-h k <KEY> describe command bound to <KEY> C-h b list buffer local key-bindings <kseq> C-h list possible key-bindings with <kseq> eg C-x C-h -> list key-bindings beginning with C-x","breadcrumbs":"Misc » help","id":"48","title":"help"},"49":{"body":"package-refresh-contents refresh package list package-list-packages list available/installed packages","breadcrumbs":"Misc » package manager","id":"49","title":"package manager"},"5":{"body":"_describe simple completion, just words + description _arguments sophisticated completion, allow to specify actions Completion with _describe _describe MSG COMP MSG simple string with header message COMP array of completions where each entry is \"opt:description\" function _foo() { local -a opts opts=('bla:desc for bla' 'blu:desc for blu') _describe 'foo-msg' opts\n}\ncompdef _foo foo foo <TAB><TAB> -- foo-msg --\nbla -- desc for bla\nblu -- desc for blu Completion with _arguments _arguments SPEC [SPEC...] where SPEC can have one of the following forms: OPT[DESC]:MSG:ACTION N:MSG:ACTION Available actions (op1 op2) list possible matches\n->VAL set $state=VAL and continue, `$state` can be checked later in switch case\nFUNC call func to generate matches\n{STR} evaluate `STR` to generate matches","breadcrumbs":"Misc » Completion Functions","id":"5","title":"Completion Functions"},"50":{"body":"C-x 0 kill focused window C-x 1 kill all other windows C-x 2 split horizontal C-x 3 split vertical","breadcrumbs":"Misc » window","id":"50","title":"window"},"51":{"body":"C-<SPACE> set start mark to select text M-w copy selected text C-w kill selected text C-y paste selected text M-y cycle through kill-ring","breadcrumbs":"Misc » yank/paste","id":"51","title":"yank/paste"},"52":{"body":"C-x <SPC> activate rectangle-mark-mode M-x string-rectangle <RET> insert text in marked rect","breadcrumbs":"Misc » block/rect","id":"52","title":"block/rect"},"53":{"body":"C-x h mark whole buffer (mark-whole-buffer) M-x delete-matching-line <RET> delete lines matching regex M-x % search & replace region (query-replace) C-M-x % search & replace regex (query-replace-regexp)","breadcrumbs":"Misc » mass edit","id":"53","title":"mass edit"},"54":{"body":"M-x find-grep <RET> run find-grep result in *grep* buffer n/p navigate next/previous match in *grep* buffer","breadcrumbs":"Misc » grep","id":"54","title":"grep"},"55":{"body":"M-x lisp-interaction-mode activate lisp mode C-M-x evaluate top expr under cursor C-x C-e eval-last-sexp C-u C-x C-e eval-last-sexp and prints result in current buffer","breadcrumbs":"Misc » lisp mode","id":"55","title":"lisp mode"},"56":{"body":"C-x n n show only focused region (narrow) C-x n w show whole buffer (wide)","breadcrumbs":"Misc » narrow","id":"56","title":"narrow"},"57":{"body":"M-up/M-down re-arrange items in same hierarchy M-left/M-right change item hierarchy C-RET create new item below current C-S-RET create new TODO item below current S-left/S-right cycle TODO states","breadcrumbs":"Misc » org","id":"57","title":"org"},"58":{"body":"<s TAB generate a source block C-c ' edit source block (in lang specific buffer) C-c C-c eval source block","breadcrumbs":"Misc » org source","id":"58","title":"org source"},"59":{"body":"","breadcrumbs":"Misc » gdb(1)","id":"59","title":"gdb(1)"},"6":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -d <dir> -h The completion handler could be implemented as follows in a file called _foo: #compdef _foo foo function _foo_color() { local colors=() colors+=('green:green color') colors+=('red:red color') colors+=('blue:blue color') _describe \"color\" colors\n} function _foo() { _arguments \\ \"-c[define color]:color:->s_color\" \\ \"-s[select sound]:color:(low high)\" \\ \"-f[select file]:file:_files\" \\ \"-d[select dir]:fir:_files -/\" \\ \"-h[help]\" case $state in s_color) _foo_color;; esac\n}","breadcrumbs":"Misc » Example","id":"6","title":"Example"},"60":{"body":"gdb [opts] [prg [-c coredump | -p pid]] gdb [opts] --args prg <prg-args> opts: -p <pid> attach to pid -c <coredump> use <coredump> -x <file> execute script <file> before prompt -ex <cmd> execute command <cmd> before prompt --tty <tty> set I/O tty for debugee","breadcrumbs":"Misc » CLI","id":"60","title":"CLI"},"61":{"body":"tty <tty> Set <tty> as tty for debugee. Make sure nobody reads from target tty, easiest is to spawn a shell and run following in target tty: > while true; do sleep 1024; done set follow-fork-mode <child | parent> Specify which process to follow when debuggee makes a fork(2) syscall. sharedlibrary [<regex>] Load symbols of shared libs loaded by debugee. Optionally use <regex> to filter libs for symbol loading. break [-qualified] <sym> thread <tnum> Set a breakpoint only for a specific thread. -qualified: Tred <sym> as fully qualified symbol (quiet handy to set breakpoints on C symbols in C++ contexts) rbreak <regex> Set breakpoints matching <regex>, where matching internally is done on: .*<regex>.* command [<bp_list>] Define commands to run after breakpoint hit. If <bp_list> is not specified attach command to last created breakpoint. Command block terminated with 'end' token. <bp_list>: Space separates list, eg 'command 2 5-8' to run command for breakpoints: 2,5,6,7,8. info functions [<regex>] List functions matching <regex>. List all functions if no <regex> provided. info variables [<regex>] List variables matching <regex>. List all variables if no <regex> provided. info handle [<signal>] Print how to handle <signal>. If no <signal> specified print for all signals. handle <signal> <action> Configure how gdb handles <signal> sent to debugee. <action>: stop/nostop Catch signal in gdb and break. print/noprint Print message when gdb catches signal. pass/nopass Pass signal down to debugee. catch signal <signal> Create a catchpoint for <signal>.","breadcrumbs":"Misc » Interactive usage","id":"61","title":"Interactive usage"},"62":{"body":"Gdb allows to create & document user commands as follows: define <cmd> # cmds end document <cmd> # docu end To get all user commands or documentations one can use: help user-defined help <cmd>","breadcrumbs":"Misc » User commands (macros)","id":"62","title":"User commands (macros)"},"63":{"body":"Gdb allows to create two types of command hooks hook- will be run before <cmd> hookpost- will be run after <cmd> define hook-<cmd> # cmds end define hookpost-<cmd> # cmds end","breadcrumbs":"Misc » Hooks","id":"63","title":"Hooks"},"64":{"body":"","breadcrumbs":"Misc » Examples","id":"64","title":"Examples"},"65":{"body":"This creates a catchpoint for the SIGSEGV signal and attached the command to it. catch signal SIGSEGV command bt c end","breadcrumbs":"Misc » Catch SIGSEGV and execute commands","id":"65","title":"Catch SIGSEGV and execute commands"},"66":{"body":"gdb --batch -ex 'thread 1' -ex 'bt' -p <pid>","breadcrumbs":"Misc » Run backtrace on thread 1 (batch mode)","id":"66","title":"Run backtrace on thread 1 (batch mode)"},"67":{"body":"To script gdb add commands into a file and pass it to gdb via -x. For example create run.gdb: set pagination off break mmap command info reg rdi rsi rdx bt c end #initial drop c This script can be used as: gdb --batch -x ./run.gdb -p <pid>","breadcrumbs":"Misc » Script gdb for automating debugging sessions","id":"67","title":"Script gdb for automating debugging sessions"},"68":{"body":"","breadcrumbs":"Misc » Know Bugs","id":"68","title":"Know Bugs"},"69":{"body":"When using finish inside a command block, commands after finish are not executed. To workaround that bug one can create a wrapper function which calls finish. define handler bt finish info reg rax end command handler end","breadcrumbs":"Misc » Workaround command + finish bug","id":"69","title":"Workaround command + finish bug"},"7":{"body":"","breadcrumbs":"Misc » bash(1)","id":"7","title":"bash(1)"},"70":{"body":"","breadcrumbs":"Misc » radare2(1)","id":"70","title":"radare2(1)"},"71":{"body":"pd <n> [@ <addr>] # print disassembly for <n> instructions # with optional temporary seek to <addr>","breadcrumbs":"Misc » print","id":"71","title":"print"},"72":{"body":"fs # list flag-spaces fs <fs> # select flag-space <fs> f # print flags of selected flag-space","breadcrumbs":"Misc » flags","id":"72","title":"flags"},"73":{"body":"?*~<kw> # '?*' list all commands and '~' grep for <kw> ?*~... # '..' less mode /'...' interactive search","breadcrumbs":"Misc » help","id":"73","title":"help"},"74":{"body":"> r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr> oob <addr> # reopen current file at <baddr>","breadcrumbs":"Misc » relocation","id":"74","title":"relocation"},"75":{"body":"","breadcrumbs":"Resource analysis & monitor","id":"75","title":"Resource analysis & monitor"},"76":{"body":"lsof -a ......... AND slection filters instead ORing (OR: default) -p <pid> ... filter by <pid> +fg ........ show file flags for file descripros -n ......... don't convert network addr to hostnames -P ......... don't convert network port to service names -i <@h[:p]>. show connections to h (hostname|ip addr) with optional port p file flags: R/W/RW ..... read/write/read-write CR ......... create AP ......... append TR ......... truncate","breadcrumbs":"Resource analysis & monitor » lsof(8)","id":"76","title":"lsof(8)"},"77":{"body":"","breadcrumbs":"Resource analysis & monitor » Examples","id":"77","title":"Examples"},"78":{"body":"Show open files with file flags for process: lsof +fg -p <pid>","breadcrumbs":"Resource analysis & monitor » File flags","id":"78","title":"File flags"},"79":{"body":"Show open tcp connections for $USER: lsof -a -u $USER -i tcp Note : -a ands the results. If -a is not given all open files matching $USER and all tcp connections are listed ( ored ).","breadcrumbs":"Resource analysis & monitor » Open TCP connections","id":"79","title":"Open TCP connections"},"8":{"body":"","breadcrumbs":"Misc » Expansion","id":"8","title":"Expansion"},"80":{"body":"Show open connections to localhost for $USER: lsof -a -u $USER -i @localhost","breadcrumbs":"Resource analysis & monitor » Open connection to specific host","id":"80","title":"Open connection to specific host"},"81":{"body":"pidstat [opt] [interval] [cont] -U [user] show username instead UID, optionally only show for user -r memory statistics -d I/O statistics -h single line per process and no lines with average","breadcrumbs":"Resource analysis & monitor » pidstat(1)","id":"81","title":"pidstat(1)"},"82":{"body":"pidstat -r -p <pid> [interval] [count] minor_pagefault: Happens when the page needed is already in memory but not allocated to the faulting process, in that case the kernel only has to create a new page-table entry pointing to the shared physical page (not required to load a memory page from disk). major_pagefault: Happens when the page needed is NOT in memory, the kernel has to create a new page-table entry and populate the physical page (required to load a memory page from disk).","breadcrumbs":"Resource analysis & monitor » Page fault and memory utilization","id":"82","title":"Page fault and memory utilization"},"83":{"body":"pidstat -d -p <pid> [interval] [count]","breadcrumbs":"Resource analysis & monitor » I/O statistics","id":"83","title":"I/O statistics"},"84":{"body":"pgrep [opts] <pattern> -n only list newest matching process -u <usr> only show matching for user <usr> -l additionally list command -a additionally list command + arguments","breadcrumbs":"Resource analysis & monitor » pgrep(1)","id":"84","title":"pgrep(1)"},"85":{"body":"For example attach gdb to newest zsh process from $USER. gdb -p $(pgrep -n -u $USER zsh)","breadcrumbs":"Resource analysis & monitor » Debug newest process","id":"85","title":"Debug newest process"},"86":{"body":"pmap <pid> Dump virtual memory map of process. Compared to /proc/<pid>/maps it shows the size of the mappings.","breadcrumbs":"Resource analysis & monitor » pmap(1)","id":"86","title":"pmap(1)"},"87":{"body":"pstack <pid> Dump stack for all threads of process.","breadcrumbs":"Resource analysis & monitor » pstack(1)","id":"87","title":"pstack(1)"},"88":{"body":"","breadcrumbs":"Trace and Profile","id":"88","title":"Trace and Profile"},"89":{"body":"strace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -s <size> ... max string size, truncate of longer (default: 32) -e <expr> ... expression for trace filtering -o <file> ... log output into <file> -c .......... dump syscall statitics at the end <expr>: trace=syscall[,syscall] .... trace only syscall listed trace=file ................. trace all syscall that take a filename as arg trace=process .............. trace process management related syscalls trace=signal ............... trace signal related syscalls signal ..................... trace signals delivered to the process","breadcrumbs":"Trace and Profile » strace(1)","id":"89","title":"strace(1)"},"9":{"body":"# generate sequence from n to m\n{n..m}\n# generate sequence from n to m step by s\n{n..m..s} # expand cartesian product\n{a,b}{c,d}","breadcrumbs":"Misc » Generator","id":"9","title":"Generator"},"90":{"body":"Trace open(2) & socket(2) syscalls for a running process + child processes: strace -f -e trace=open,socket -p <pid> Trace signals delivered to a running process: strace -f -e signal -p <pid>","breadcrumbs":"Trace and Profile » Examples","id":"90","title":"Examples"},"91":{"body":"ltrace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -o <file> ... log output into <file> -l <filter> . show who calls into lib matched by <filter> -C .......... demangle","breadcrumbs":"Trace and Profile » ltrace(1)","id":"91","title":"ltrace(1)"},"92":{"body":"List which program/libs call into libstdc++: ltrace -l '*libstdc++*' -C -o ltrace.log ./main","breadcrumbs":"Trace and Profile » Example","id":"92","title":"Example"},"93":{"body":"perf list show supported hw/sw events perf stat -p <pid> .. show stats for running process -I <ms> ... show stats periodically over interval <ms> -e <ev> ... filter for events perf top -p <pid> .. show stats for running process -F <hz> ... sampling frequency -K ........ hide kernel threads perf record -p <pid> ............... record stats for running process -F <hz> ................ sampling frequency --call-graph <method> .. [fp, dwarf, lbr] method how to caputre backtrace fp : use frame-pointer, need to compile with -fno-omit-frame-pointer dwarf: use .cfi debug information lbr : use hardware last branch record facility -g ..................... short-hand for --call-graph fp -e <ev> ................ filter for events perf report -n .................... annotate symbols with nr of samples --stdio ............... report to stdio, if not presen tui mode -g graph,0.5,caller ... show caller based call chains with value >0.5 Useful <ev>: page-faults minor-faults major-faults cpu-cycles` task-clock","breadcrumbs":"Trace and Profile » perf(1)","id":"93","title":"perf(1)"},"94":{"body":"","breadcrumbs":"Trace and Profile » Flamegraph","id":"94","title":"Flamegraph"},"95":{"body":"perf record -g -e cpu-cycles -p <pid>\nperf script | FlameGraph/stackcollapse-perf.pl | FlameGraph/flamegraph.pl > cycles-flamegraph.svg","breadcrumbs":"Trace and Profile » Flamegraph with single event trace","id":"95","title":"Flamegraph with single event trace"},"96":{"body":"perf record -g -e cpu-cycles,page-faults -p <pid>\nperf script --per-event-dump\n# fold & generate as above","breadcrumbs":"Trace and Profile » Flamegraph with multiple event traces","id":"96","title":"Flamegraph with multiple event traces"},"97":{"body":"operf -g -p <pid> -g ...... caputre call-graph information opreport [opt] FILE show time spent per binary image -l ...... show time spent per symbol -c ...... show callgraph information (see below) -a ...... add column with time spent accumulated over child nodes ophelp show supported hw/sw events","breadcrumbs":"Trace and Profile » OProfile","id":"97","title":"OProfile"},"98":{"body":"# statistics of process run\n/usr/bin/time -v <cmd>","breadcrumbs":"Trace and Profile » /usr/bin/time(1)","id":"98","title":"/usr/bin/time(1)"},"99":{"body":"","breadcrumbs":"Binary","id":"99","title":"Binary"}},"length":130,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"3":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"42":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":6,"docs":{"102":{"tf":1.4142135623730951},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"129":{"tf":1.0},"42":{"tf":1.0}}},"5":{"df":1,"docs":{"102":{"tf":1.0}}},"6":{"df":2,"docs":{"102":{"tf":1.0},"45":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"101":{"tf":1.0}}},"6":{"df":1,"docs":{"101":{"tf":1.0}}},"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.0}}},"5":{"1":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":1,"docs":{"61":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.0}},"f":{"df":1,"docs":{"101":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"x":{",":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":2.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":1,"docs":{"11":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"128":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"52":{"tf":1.0},"55":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"102":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"31":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"17":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"76":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}},"y":{"df":5,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"66":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"11":{"tf":1.4142135623730951},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":2.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"29":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"61":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"22":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":2.0},"102":{"tf":1.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"15":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":3.0},"48":{"tf":3.3166247903554},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":2.23606797749979},"129":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"127":{"tf":1.0},"42":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":2.0},"15":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":3.4641016151377544},"15":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"18":{"tf":1.0},"5":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"22":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":11,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"18":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"117":{"tf":1.0}},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"119":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"30":{"tf":2.449489742783178},"32":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"36":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"6":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":2.0},"115":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"125":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":2.0}},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"10":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"127":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"58":{"tf":1.0}},"u":{"df":2,"docs":{"5":{"tf":1.0},"55":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"10":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":3,"docs":{"39":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"13":{"tf":2.0}}},"df":16,"docs":{"101":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"129":{"tf":1.0}}},"t":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"44":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"72":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"6":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"5":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":3.3166247903554},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"20":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"33":{"tf":2.0},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"36":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"18":{"tf":1.0}},"n":{"df":3,"docs":{"11":{"tf":2.23606797749979},"37":{"tf":1.0},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"31":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"54":{"tf":2.23606797749979},"73":{"tf":1.0}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}},"l":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"108":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":2.8284271247461903},"53":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"48":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"63":{"tf":2.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"d":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"119":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"129":{"tf":2.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}},"o":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":2.0},"34":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"25":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"61":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"125":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":2.0},"129":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"129":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.4142135623730951},"48":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1":{"tf":1.7320508075688772},"23":{"tf":1.0},"48":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"17":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"55":{"tf":1.4142135623730951},"61":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"57":{"tf":1.0}},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":3,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"b":{"df":1,"docs":{"128":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":3,"docs":{"127":{"tf":1.0},"61":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"d":{"c":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":3,"docs":{"108":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"t":{"df":28,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"123":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"14":{"tf":2.449489742783178},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":2.8284271247461903},"129":{"tf":1.0},"92":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}},"p":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"128":{"tf":2.8284271247461903},"26":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":2.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"109":{"tf":1.0},"28":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":2.0},"129":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"42":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"119":{"tf":1.0},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":1,"docs":{"35":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951}}},"df":6,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"11":{"tf":2.23606797749979},"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"5":{"tf":1.0}}},"2":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"15":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"20":{"tf":1.0},"38":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":3.0}}}}},"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":3.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":3.1622776601683795},"23":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"102":{"tf":1.0},"34":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}},"t":{"df":2,"docs":{"22":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":4.47213595499958}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"34":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":3.605551275463989},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":25,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"17":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":17,"docs":{"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"48":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":4.69041575982343},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"108":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"f":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"3":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"129":{"tf":2.0},"27":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"74":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"w":{"df":1,"docs":{"109":{"tf":1.0}}},"x":{"df":2,"docs":{"129":{"tf":1.0},"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":10,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"35":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"61":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":2.23606797749979},"35":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.0}},"f":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554}},"p":{"df":1,"docs":{"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"108":{"tf":1.0}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"4":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"108":{"tf":1.0},"129":{"tf":2.6457513110645907},"74":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"22":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":17,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"57":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.7320508075688772},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"33":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"129":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"51":{"tf":2.0},"72":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"38":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"df":1,"docs":{"23":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":20,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"61":{"tf":3.4641016151377544},"65":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"51":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"c":{"df":1,"docs":{"52":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"5":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":7,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"33":{"tf":2.0},"51":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"33":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":3,"docs":{"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"35":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":9,"docs":{"108":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"61":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951}}}},"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"79":{"tf":2.0}}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"23":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"20":{"tf":4.123105625617661},"21":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":8,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"k":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":2.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"63":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"63":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"r":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":2.0},"62":{"tf":2.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"5":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"1":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"119":{"tf":1.0},"125":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"11":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"14":{"tf":2.6457513110645907},"4":{"tf":2.449489742783178},"5":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"129":{"tf":1.0},"28":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":12,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"22":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"3":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"42":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":6,"docs":{"102":{"tf":1.4142135623730951},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"129":{"tf":1.0},"42":{"tf":1.0}}},"5":{"df":1,"docs":{"102":{"tf":1.0}}},"6":{"df":2,"docs":{"102":{"tf":1.0},"45":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"101":{"tf":1.0}}},"6":{"df":1,"docs":{"101":{"tf":1.0}}},"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.0}}},"5":{"1":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":1,"docs":{"61":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.0}},"f":{"df":1,"docs":{"101":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}},"x":{",":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":2.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":1,"docs":{"11":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"128":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"52":{"tf":1.0},"55":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"102":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"31":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"17":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"76":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}},"y":{"df":5,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":6,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"11":{"tf":1.4142135623730951},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":2.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":3.605551275463989},"29":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"61":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"22":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":2.0},"102":{"tf":1.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"15":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":3.0},"48":{"tf":3.3166247903554},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":2.23606797749979},"129":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"127":{"tf":1.0},"42":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":2.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"73":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":2.0},"15":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":3.605551275463989},"15":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"6":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"76":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"18":{"tf":1.0},"5":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"22":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":11,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"117":{"tf":1.0}},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"119":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":18,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"30":{"tf":2.6457513110645907},"32":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"36":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"6":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":2.0},"115":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"125":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":2.0}},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"10":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"58":{"tf":1.0}},"u":{"df":2,"docs":{"5":{"tf":1.0},"55":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"10":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":3,"docs":{"39":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"13":{"tf":2.0}}},"df":16,"docs":{"101":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":2.0},"106":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"129":{"tf":1.0}}},"t":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"44":{"tf":1.4142135623730951},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"72":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"6":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"5":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":3.3166247903554},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"20":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"33":{"tf":2.0},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":12,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"36":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"18":{"tf":1.0}},"n":{"df":3,"docs":{"11":{"tf":2.23606797749979},"37":{"tf":1.0},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"31":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"54":{"tf":2.449489742783178},"73":{"tf":1.0}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}},"l":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"108":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":2.8284271247461903},"53":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"48":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.0}}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"119":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"129":{"tf":2.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}},"o":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":2.0},"34":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"128":{"tf":2.449489742783178},"129":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772}}},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"25":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"61":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"125":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":2.0},"129":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"129":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.4142135623730951},"48":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"1":{"tf":1.7320508075688772},"23":{"tf":1.0},"48":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"55":{"tf":1.4142135623730951},"61":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"57":{"tf":1.0}},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":3,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"b":{"df":1,"docs":{"128":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":3,"docs":{"127":{"tf":1.0},"61":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"d":{"c":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":3,"docs":{"108":{"tf":1.0},"128":{"tf":3.0},"129":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":2.0}}},"t":{"df":28,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"123":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"14":{"tf":2.449489742783178},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":2.8284271247461903},"129":{"tf":1.0},"92":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}},"p":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"128":{"tf":3.0},"26":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":2.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"c":{"df":75,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"109":{"tf":1.0},"28":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":2.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":2.0},"129":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"42":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"119":{"tf":1.0},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":1,"docs":{"35":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951}}},"df":6,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"11":{"tf":2.23606797749979},"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"5":{"tf":1.0}}},"2":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"15":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"20":{"tf":1.0},"38":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":3.1622776601683795}}}}},"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}},"g":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":3.1622776601683795},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":3.1622776601683795},"23":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}},"t":{"df":2,"docs":{"22":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":4.58257569495584}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"34":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":3.605551275463989},"39":{"tf":2.0},"40":{"tf":2.0},"44":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":25,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"17":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":17,"docs":{"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"48":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":4.69041575982343},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"108":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}},"f":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"3":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"129":{"tf":2.0},"27":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"74":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"w":{"df":1,"docs":{"109":{"tf":1.0}}},"x":{"df":2,"docs":{"129":{"tf":1.0},"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":10,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"35":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"61":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"44":{"tf":2.0},"45":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":2.23606797749979},"35":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.0}},"f":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554}},"p":{"df":1,"docs":{"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"108":{"tf":1.0}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"4":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"108":{"tf":1.0},"129":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":3.0},"27":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"22":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":17,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"57":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.7320508075688772},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"129":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"33":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"129":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"51":{"tf":2.0},"72":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"38":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"df":1,"docs":{"23":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":20,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"61":{"tf":3.4641016151377544},"65":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"51":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"c":{"df":1,"docs":{"52":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"5":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"33":{"tf":2.0},"51":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"33":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":3,"docs":{"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"39":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"35":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":9,"docs":{"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"61":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951}}}},"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"79":{"tf":2.23606797749979}}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"23":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"20":{"tf":4.242640687119285},"21":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"k":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":2.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"63":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"129":{"tf":1.0},"63":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"r":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":2.0},"62":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"5":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"127":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"1":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"119":{"tf":1.0},"125":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"50":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"11":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"14":{"tf":2.6457513110645907},"4":{"tf":2.449489742783178},"5":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"129":{"tf":1.0},"28":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":12,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"22":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"_":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"99":{"tf":1.0}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"73":{"tf":1.0}}}},"x":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"128":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file diff --git a/searchindex.json b/searchindex.json index 6aa25ea..a17ec7a 100644 --- a/searchindex.json +++ b/searchindex.json @@ -1 +1 @@ -{"doc_urls":["ld.so.html#ldso8","ld.so.html#environment-variables","ld.so.html#ld_preload-initialization-order-and-link-map","ld.so.html#dynamic-linking-x86_64","git.html#git1","git.html#staging","git.html#remote","git.html#branching","git.html#resetting","git.html#tags","git.html#diff","git.html#log","git.html#file-history","git.html#patching","git.html#submodules","git.html#inspection","git.html#revision-specifier","bash.html#bash1","bash.html#expansion","bash.html#generator","bash.html#parameter","bash.html#pathname","bash.html#io-redirection","bash.html#explanation","bash.html#completion","bash.html#example","zsh.html#zsh1","zsh.html#keybindings","zsh.html#completion","zsh.html#installation","zsh.html#completion-variables","zsh.html#completion-functions","zsh.html#example","tmux.html#tmux1","tmux.html#tmux-cli","tmux.html#scripting","tmux.html#bindings","tmux.html#command-mode","awk.html#awk1","awk.html#input-processing","awk.html#program","awk.html#special-pattern","awk.html#special-variables","awk.html#special-statements--functions","awk.html#examples","awk.html#filter-records","awk.html#capture-in-variables","awk.html#run-shell-command-and-capture-output","gdb.html#gdb1","gdb.html#cli","gdb.html#interactive-usage","gdb.html#user-commands-macros","gdb.html#hooks","gdb.html#examples","gdb.html#catch-sigsegv-and-execute-commands","gdb.html#run-backtrace-on-thread-1-batch-mode","gdb.html#script-gdb-for-automating-debugging-sessions","gdb.html#know-bugs","gdb.html#workaround-command--finish-bug","radare2.html#radare21","radare2.html#print","radare2.html#flags","radare2.html#help","radare2.html#relocation","emacs.html#emacs1","emacs.html#help","emacs.html#package-manager","emacs.html#window","emacs.html#yankpaste","emacs.html#blockrect","emacs.html#mass-edit","emacs.html#grep","emacs.html#lisp-mode","emacs.html#narrow","emacs.html#org","emacs.html#org-source","fish.html#fish1","fish.html#keymaps","fish.html#debug","strace.html#strace1","strace.html#examples","lsof.html#lsof8","lsof.html#examples","lsof.html#file-flags","lsof.html#open-tcp-connections","lsof.html#open-connection-to-specific-host","pidstat.html#pidstat1","pidstat.html#page-fault-and-memory-utilization","pidstat.html#io-statistics","time.html#usrbintime1","pgrep.html#pgrep1","pgrep.html#debug-newest-process","pstack.html#pstack1","perf.html#perf1","perf.html#flamegraph","perf.html#flamegraph-with-single-event-trace","perf.html#flamegraph-with-multiple-event-traces","oprofile.html#oprofile","od.html#od1","od.html#ascii-to-hex-string","od.html#extract-parts-of-file","xxd.html#xxd1","xxd.html#ascii-to-hex-stream","xxd.html#hex-to-binary-stream","xxd.html#ascii-to-binary","xxd.html#ascii-to-c-array-hex-encoded","readelf.html#readelf1","objdump.html#objdump1","objdump.html#disassemble-section","nm.html#nm1","c++filt.html#cfilt1","c++filt.html#demangle-symbol","c++filt.html#demangle-stream","c++.html#c","c++.html#type-deduction","glibc.html#glibc","glibc.html#malloc-tracer--mtrace3","glibc.html#malloc-check--mallopt3","gcc.html#gcc1","gcc.html#cli","gcc.html#preprocessing","gcc.html#builtins","gcc.html#__builtin_expectexpr-cond"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":38,"breadcrumbs":2,"title":2},"10":{"body":22,"breadcrumbs":1,"title":1},"100":{"body":76,"breadcrumbs":3,"title":3},"101":{"body":19,"breadcrumbs":1,"title":1},"102":{"body":6,"breadcrumbs":3,"title":3},"103":{"body":7,"breadcrumbs":3,"title":3},"104":{"body":11,"breadcrumbs":2,"title":2},"105":{"body":15,"breadcrumbs":5,"title":5},"106":{"body":55,"breadcrumbs":1,"title":1},"107":{"body":36,"breadcrumbs":1,"title":1},"108":{"body":8,"breadcrumbs":2,"title":2},"109":{"body":7,"breadcrumbs":1,"title":1},"11":{"body":27,"breadcrumbs":1,"title":1},"110":{"body":0,"breadcrumbs":1,"title":1},"111":{"body":3,"breadcrumbs":2,"title":2},"112":{"body":10,"breadcrumbs":2,"title":2},"113":{"body":0,"breadcrumbs":1,"title":1},"114":{"body":14,"breadcrumbs":2,"title":2},"115":{"body":0,"breadcrumbs":1,"title":1},"116":{"body":62,"breadcrumbs":3,"title":3},"117":{"body":34,"breadcrumbs":3,"title":3},"118":{"body":0,"breadcrumbs":1,"title":1},"119":{"body":0,"breadcrumbs":1,"title":1},"12":{"body":19,"breadcrumbs":2,"title":2},"120":{"body":15,"breadcrumbs":1,"title":1},"121":{"body":0,"breadcrumbs":1,"title":1},"122":{"body":90,"breadcrumbs":2,"title":2},"13":{"body":109,"breadcrumbs":1,"title":1},"14":{"body":64,"breadcrumbs":1,"title":1},"15":{"body":27,"breadcrumbs":1,"title":1},"16":{"body":28,"breadcrumbs":2,"title":2},"17":{"body":0,"breadcrumbs":1,"title":1},"18":{"body":0,"breadcrumbs":1,"title":1},"19":{"body":16,"breadcrumbs":1,"title":1},"2":{"body":128,"breadcrumbs":5,"title":5},"20":{"body":60,"breadcrumbs":1,"title":1},"21":{"body":93,"breadcrumbs":1,"title":1},"22":{"body":24,"breadcrumbs":2,"title":2},"23":{"body":26,"breadcrumbs":1,"title":1},"24":{"body":123,"breadcrumbs":1,"title":1},"25":{"body":66,"breadcrumbs":1,"title":1},"26":{"body":0,"breadcrumbs":1,"title":1},"27":{"body":53,"breadcrumbs":1,"title":1},"28":{"body":0,"breadcrumbs":1,"title":1},"29":{"body":36,"breadcrumbs":1,"title":1},"3":{"body":246,"breadcrumbs":3,"title":3},"30":{"body":25,"breadcrumbs":2,"title":2},"31":{"body":89,"breadcrumbs":2,"title":2},"32":{"body":62,"breadcrumbs":1,"title":1},"33":{"body":19,"breadcrumbs":1,"title":1},"34":{"body":86,"breadcrumbs":2,"title":2},"35":{"body":119,"breadcrumbs":1,"title":1},"36":{"body":128,"breadcrumbs":1,"title":1},"37":{"body":24,"breadcrumbs":2,"title":2},"38":{"body":18,"breadcrumbs":1,"title":1},"39":{"body":45,"breadcrumbs":2,"title":2},"4":{"body":0,"breadcrumbs":1,"title":1},"40":{"body":37,"breadcrumbs":1,"title":1},"41":{"body":29,"breadcrumbs":2,"title":2},"42":{"body":22,"breadcrumbs":2,"title":2},"43":{"body":72,"breadcrumbs":3,"title":3},"44":{"body":0,"breadcrumbs":1,"title":1},"45":{"body":18,"breadcrumbs":2,"title":2},"46":{"body":39,"breadcrumbs":2,"title":2},"47":{"body":25,"breadcrumbs":5,"title":5},"48":{"body":0,"breadcrumbs":1,"title":1},"49":{"body":42,"breadcrumbs":1,"title":1},"5":{"body":7,"breadcrumbs":1,"title":1},"50":{"body":180,"breadcrumbs":2,"title":2},"51":{"body":25,"breadcrumbs":3,"title":3},"52":{"body":24,"breadcrumbs":1,"title":1},"53":{"body":0,"breadcrumbs":1,"title":1},"54":{"body":13,"breadcrumbs":4,"title":4},"55":{"body":9,"breadcrumbs":6,"title":6},"56":{"body":36,"breadcrumbs":5,"title":5},"57":{"body":0,"breadcrumbs":2,"title":2},"58":{"body":27,"breadcrumbs":4,"title":4},"59":{"body":0,"breadcrumbs":1,"title":1},"6":{"body":21,"breadcrumbs":1,"title":1},"60":{"body":11,"breadcrumbs":1,"title":1},"61":{"body":16,"breadcrumbs":1,"title":1},"62":{"body":9,"breadcrumbs":1,"title":1},"63":{"body":15,"breadcrumbs":1,"title":1},"64":{"body":0,"breadcrumbs":1,"title":1},"65":{"body":59,"breadcrumbs":1,"title":1},"66":{"body":12,"breadcrumbs":2,"title":2},"67":{"body":21,"breadcrumbs":1,"title":1},"68":{"body":28,"breadcrumbs":1,"title":1},"69":{"body":16,"breadcrumbs":1,"title":1},"7":{"body":46,"breadcrumbs":1,"title":1},"70":{"body":35,"breadcrumbs":2,"title":2},"71":{"body":17,"breadcrumbs":1,"title":1},"72":{"body":36,"breadcrumbs":2,"title":2},"73":{"body":16,"breadcrumbs":1,"title":1},"74":{"body":36,"breadcrumbs":1,"title":1},"75":{"body":20,"breadcrumbs":2,"title":2},"76":{"body":0,"breadcrumbs":1,"title":1},"77":{"body":28,"breadcrumbs":1,"title":1},"78":{"body":19,"breadcrumbs":1,"title":1},"79":{"body":64,"breadcrumbs":1,"title":1},"8":{"body":50,"breadcrumbs":1,"title":1},"80":{"body":25,"breadcrumbs":1,"title":1},"81":{"body":49,"breadcrumbs":1,"title":1},"82":{"body":0,"breadcrumbs":1,"title":1},"83":{"body":10,"breadcrumbs":2,"title":2},"84":{"body":21,"breadcrumbs":3,"title":3},"85":{"body":9,"breadcrumbs":4,"title":4},"86":{"body":26,"breadcrumbs":1,"title":1},"87":{"body":50,"breadcrumbs":4,"title":4},"88":{"body":6,"breadcrumbs":2,"title":2},"89":{"body":6,"breadcrumbs":1,"title":1},"9":{"body":35,"breadcrumbs":1,"title":1},"90":{"body":22,"breadcrumbs":1,"title":1},"91":{"body":14,"breadcrumbs":3,"title":3},"92":{"body":6,"breadcrumbs":1,"title":1},"93":{"body":128,"breadcrumbs":1,"title":1},"94":{"body":0,"breadcrumbs":1,"title":1},"95":{"body":15,"breadcrumbs":4,"title":4},"96":{"body":17,"breadcrumbs":4,"title":4},"97":{"body":43,"breadcrumbs":1,"title":1},"98":{"body":45,"breadcrumbs":1,"title":1},"99":{"body":34,"breadcrumbs":3,"title":3}},"docs":{"0":{"body":"","breadcrumbs":"ld.so(8)","id":"0","title":"ld.so(8)"},"1":{"body":"LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded LD_DEBUG=<opts> comma separated list of debug options =help list available options =libs show library search path =files processing of input files =symbols show search path for symbol lookup =bindings show against which definition a symbol is bound","breadcrumbs":"Environment Variables","id":"1","title":"Environment Variables"},"10":{"body":"git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs instead of usual diff snippets","breadcrumbs":"Diff","id":"10","title":"Diff"},"100":{"body":"For example .rodata section from an elf file. We can use readelf to get the offset into the file where the .rodata section starts. readelf -W -S foo >> Section Headers: >> [Nr] Name Type Address Off Size ES Flg Lk Inf Al >> ... >> [15] .rodata PROGBITS 00000000004009c0 0009c0 000030 00 A 0 0 16 With the offset of -j 0x0009c0 we can dump -N 0x30 bytes from the beginning of the .rodata section as follows: od -j 0x0009c0 -N 0x30 -tx4 -w4 foo >> 0004700 00020001 >> 0004704 00000000 >> * >> 0004740 00000001 >> 0004744 00000002 >> 0004750 00000003 >> 0004754 00000004 Note : Numbers starting with 0x will be interpreted as hex by od.","breadcrumbs":"Extract parts of file","id":"100","title":"Extract parts of file"},"101":{"body":"xxd [opts] -p dump continuous hexdump -r convert hexdump into binary ('revert') -e dump as little endian mode -i output as C array","breadcrumbs":"xxd(1)","id":"101","title":"xxd(1)"},"102":{"body":"echo -n 'aabb' | xxd -p >> 61616262","breadcrumbs":"ASCII to hex stream","id":"102","title":"ASCII to hex stream"},"103":{"body":"echo -n '61616262' | xxd -p -r >> aabb","breadcrumbs":"Hex to binary stream","id":"103","title":"Hex to binary stream"},"104":{"body":"echo -n '\\x7fELF' | xxd -p | xxd -p -r | file -p - >> ELF","breadcrumbs":"ASCII to binary","id":"104","title":"ASCII to binary"},"105":{"body":"xxd -i <(echo -n '\\x7fELF') >> unsigned char _proc_self_fd_11[] = { >> 0x7f, 0x45, 0x4c, 0x46 >> }; >> unsigned int _proc_self_fd_11_len = 4;","breadcrumbs":"ASCII to C array (hex encoded)","id":"105","title":"ASCII to C array (hex encoded)"},"106":{"body":"readelf [opts] <elf> -W|--wide wide output, dont break output at 80 chars -h print ELF header -S print section headers -l print program headers + segment mapping -d print .dynamic section (dynamic link information) --syms print symbol tables (.symtab .dynsym) --dyn-syms print dynamic symbol table (exported symbols for dynamic linker) -r print relocation sections (.rel.*, .rela.*)","breadcrumbs":"readelf(1)","id":"106","title":"readelf(1)"},"107":{"body":"objdump [opts] <elf> -M intel use intil syntax -d disassemble text section -D disassemble all sections -S mix disassembly with source code -C demangle -j <section> display info for section --[no-]show-raw-insn [dont] show object code next to disassembly","breadcrumbs":"objdump(1)","id":"107","title":"objdump(1)"},"108":{"body":"For example .plt section: objdump -j .plt -d <elf>","breadcrumbs":"Disassemble section","id":"108","title":"Disassemble section"},"109":{"body":"nm [opts] <elf> -C demangle -u undefined only","breadcrumbs":"nm(1)","id":"109","title":"nm(1)"},"11":{"body":"git log --oneline .... shows log in single line per commit -> alias for '--pretty=oneline --abbrev-commit' git log --graph ...... text based graph of commit history git log --decorate ... decorate log with REFs","breadcrumbs":"Log","id":"11","title":"Log"},"110":{"body":"","breadcrumbs":"c++filt(1)","id":"110","title":"c++filt(1)"},"111":{"body":"c++-filt <symbol_str>","breadcrumbs":"Demangle symbol","id":"111","title":"Demangle symbol"},"112":{"body":"For example dynamic symbol table: readelf -W --dyn-syms <elf> | c++filt","breadcrumbs":"Demangle stream","id":"112","title":"Demangle stream"},"113":{"body":"","breadcrumbs":"c++","id":"113","title":"c++"},"114":{"body":"Force compile error to see what auto is deduced to. auto foo = bar(); // force compile error\ntypename decltype(foo)::_;","breadcrumbs":"Type deduction","id":"114","title":"Type deduction"},"115":{"body":"","breadcrumbs":"glibc","id":"115","title":"glibc"},"116":{"body":"Trace memory allocation and de-allocation to detect memory leaks. Need to call mtrace(3) to install the tracing hooks. If we can't modify the binary to call mtrace we can create a small shared library and pre-load it. // libmtrace.c\n#include <mcheck.h>\n__attribute__((constructor)) static void init_mtrace() { mtrace(); } Compile as: gcc -shared -fPIC -o libmtrace.so libmtrace.c To generate the trace file run: export MALLOC_TRACE=<file>\nLD_PRELOAD=./libmtrace.so <binary> Note : If MALLOC_TRACE is not set mtrace won't install tracing hooks. To get the results of the trace file: mtrace <binary> $MALLOC_TRACE","breadcrumbs":"malloc tracer mtrace(3)","id":"116","title":"malloc tracer mtrace(3)"},"117":{"body":"Configure action when glibc detects memory error. export MALLOC_CHECK_=<N> Useful values: 1 print detailed error & continue\n3 print detailed error + stack trace + memory mappings & abort\n7 print simple error message + stack trace + memory mappings & abort","breadcrumbs":"malloc check mallopt(3)","id":"117","title":"malloc check mallopt(3)"},"118":{"body":"","breadcrumbs":"gcc(1)","id":"118","title":"gcc(1)"},"119":{"body":"","breadcrumbs":"CLI","id":"119","title":"CLI"},"12":{"body":"git log -p <file> ......... show commit history + diffs for <file> git log --oneline <file> .. show commit history for <file> in compact format","breadcrumbs":"File history","id":"12","title":"File history"},"120":{"body":"While debugging can be helpful to just pre-process files. gcc -E [-dM] ... -E run only preprocessor -dM list only #define statements","breadcrumbs":"Preprocessing","id":"120","title":"Preprocessing"},"121":{"body":"","breadcrumbs":"Builtins","id":"121","title":"Builtins"},"122":{"body":"Give the compiler a hint which branch is hot, so it can lay out the code accordingly to reduce number of jump instructions. See on compiler explorer . echo \"\nextern void foo();\nextern void bar();\nvoid run0(int x) { if (__builtin_expect(x,0)) { foo(); } else { bar(); }\n}\nvoid run1(int x) { if (__builtin_expect(x,1)) { foo(); } else { bar(); }\n}\n\" | gcc -O2 -S -masm=intel -o /dev/stdout -xc - Will generate something similar to the following. run0: bar is on the path without branch run1: foo is on the path without branch run0: test edi, edi jne .L4 xor eax, eax jmp bar\n.L4: xor eax, eax jmp foo\nrun1: test edi, edi je .L6 xor eax, eax jmp foo\n.L6: xor eax, eax jmp bar","breadcrumbs":"__builtin_expect(expr, cond)","id":"122","title":"__builtin_expect(expr, cond)"},"13":{"body":"git format-patch <opt> <since>/<revision range> opt: -N ................... use [PATCH] instead [PATCH n/m] in subject when generating patch description (for patches spanning multiple commits) --start-number <n> ... start output file generation with <n> as start number instead '1' since spcifier: -3 .................. e.g: create a patch from last three commits <commit hash> ....... create patch with commits starting after <commit hash> git am <patch> ......... apply patch and create a commit for it git apply --stat <PATCH> ... see which files the patch would change git apply --check <PATCH> .. see if the patch can be applied cleanly git apply <PATCH> .......... apply the patch locally without creating a commit # eg: generate patches for each commit from initial commit on git format-patch -N $(git rev-list --max-parents=0 HEAD) # generate single patch file from a certain commit/ref git format-patch <COMMIT/REF> --stdout > my-patch.patch","breadcrumbs":"Patching","id":"13","title":"Patching"},"14":{"body":"git submodule add <url> [<path>] .......... add new submodule to current project git clone --recursive <url> ............... clone project and recursively all submodules (same as using 'git submodule update --init --recursive' after clone) git submodule update --init --recursive ... checkout submodules recursively using the commit listed in the super-project (in detached HEAD) git submodule update --remote <submod> .... fetch & merge remote changes for <submod>, this will pull origin/HEAD or a branch specified for the submodule git diff --submodule ...................... show commits that are part of the submodule diff","breadcrumbs":"Submodules","id":"14","title":"Submodules"},"15":{"body":"git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees git show <obj> ............ show <obj> git cat-file -p <obj> ..... print content of <obj>","breadcrumbs":"Inspection","id":"15","title":"Inspection"},"16":{"body":"HEAD ........ last commit HEAD~1 ...... last commit-1 HEAD~N ...... last commit-N (linear backwards when in tree structure, check difference between HEAD^ and HEAD~) git rev-list --max-parents=0 HEAD ........... first commit","breadcrumbs":"Revision Specifier","id":"16","title":"Revision Specifier"},"17":{"body":"","breadcrumbs":"bash(1)","id":"17","title":"bash(1)"},"18":{"body":"","breadcrumbs":"Expansion","id":"18","title":"Expansion"},"19":{"body":"# generate sequence from n to m\n{n..m}\n# generate sequence from n to m step by s\n{n..m..s} # expand cartesian product\n{a,b}{c,d}","breadcrumbs":"Generator","id":"19","title":"Generator"},"2":{"body":"Libraries specified in LD_PRELOAD are loaded from left-to-right but initialized from right-to-left. > ldd ./main >> libc.so.6 => /usr/lib/libc.so.6 > LD_PRELOAD=liba.so:libb.so ./main --> preloaded in this order <-- initialized in this order The preload order determines: the order libraries are inserted into the link map the initialization order for libraries For the example listed above the resulting link map will look like the following: +------+ +------+ +------+ +------+ | main | -> | liba | -> | libb | -> | libc | +------+ +------+ +------+ +------+ This can be seen when running with LD_DEBUG=files: > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main # load order (-> determines link map) >> file=liba.so [0]; generating link map >> file=libb.so [0]; generating link map >> file=libc.so.6 [0]; generating link map # init order >> calling init: /usr/lib/libc.so.6 >> calling init: <path>/libb.so >> calling init: <path>/liba.so >> initialize program: ./main To verify the link map order we let ld.so resolve the memcpy(3) libc symbol (used in main ) dynamically, while enabling LD_DEBUG=symbols,bindings to see the resolving in action. > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main >> symbol=memcpy; lookup in file=./main [0] >> symbol=memcpy; lookup in file=<path>/liba.so [0] >> symbol=memcpy; lookup in file=<path>/libb.so [0] >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14]","breadcrumbs":"LD_PRELOAD: Initialization Order and Link Map","id":"2","title":"LD_PRELOAD: Initialization Order and Link Map"},"20":{"body":"# default param\nbar=${foo:-some_val} # if $foo set, then bar=$foo else bar=some_val # check param set\nbar=${foo:?msg} # if $foo set, then bar=$foo else exit and print msg # indirect\nFOO=foo\nBAR=FOO\nbar=${!BAR} # deref value of BAR -> bar=$FOO # prefix\n${foo#prefix} # remove prefix when expanding $foo\n# suffix\n${foo%suffix} # remove suffix when expanding $foo # substitute\n${foo/pattern/string} # replace pattern with string when expanding foo\n# pattern starts with\n# '/' replace all occurences of pattern\n# '#' pattern match at beginning\n# '%' pattern match at end Note: prefix/suffix/pattern are expanded as pathnames .","breadcrumbs":"Parameter","id":"20","title":"Parameter"},"21":{"body":"* match any string\n? match any single char\n\\\\ match backslash\n[abc] match any char of 'a' 'b' 'c'\n[a-z] match any char between 'a' - 'z'\n[^ab] negate, match all not 'a' 'b'\n[:class:] match any char in class, available: alnum,alpha,ascii,blank,cntrl,digit,graph,lower, print,punct,space,upper,word,xdigit Wit extglob shell option enabled it is possible to have more powerful patterns. In the following pattern-list is one ore more patterns separated by | char. ?(pattern-list) matches zero or one occurrence of the given patterns\n*(pattern-list) matches zero or more occurrences of the given patterns\n+(pattern-list) matches one or more occurrences of the given patterns\n@(pattern-list) matches one of the given patterns\n!(pattern-list) matches anything except one of the given patterns Note: shopt -s extglob/shopt -u extglob to enable/disable extglob option.","breadcrumbs":"Pathname","id":"21","title":"Pathname"},"22":{"body":"Note: The trick with bash I/O redirection is to interpret from left-to-right. # stdout & stderr to file\ncommand >file 2>&1\n# equivalent\ncommand &>file # stderr to stdout & stdout to file\ncommand 2>&1 >file","breadcrumbs":"I/O redirection","id":"22","title":"I/O redirection"},"23":{"body":"j>&i Duplicate fd i to fd j, making j a copy of i. See dup2(2) . Example: command 2>&1 >file duplicate fd 1 to fd 2, effectively redirecting stderr to stdout redirect stdout to file","breadcrumbs":"Explanation","id":"23","title":"Explanation"},"24":{"body":"The complete builtin is used to interact with the completion system. complete # print currently installed completion handler\ncomplete -F <func> <cmd> # install <func> as completion handler for <cmd>\ncomplete -r <cmd> # uninstall completion handler for <cmd> Variables available in completion functions: # in\n$1 # <cmd>\n$2 # current word\n$3 # privous word COMP_WORDS # array with current command line words\nCOMP_CWORD # index into COMP_WORDS with current cursor position # out\nCOMPREPLY # array with possible completions The compgen builtin is used to generate possible matches by comparing word against words generated by option. compgen [option] [word] # usefule options:\n# -W <list> specify list of possible completions\n# -d generate list with dirs\n# -f generate list with files\n# -u generate list with users\n# -e generate list with exported variables # compare \"f\" against words \"foo\" \"foobar\" \"bar\" and generate matches\ncompgen -W \"foo foobar bar\" \"f\" # compare \"hom\" against file/dir names and generate matches\ncompgen -d -f \"hom\"","breadcrumbs":"Completion","id":"24","title":"Completion"},"25":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -h The completion handler could be implemented as follows: function _foo() { local curr=$2 local prev=$3 local opts=\"-c -s -f -h\" case $prev in -c) COMPREPLY=( $(compgen -W \"green red blue\" -- $curr) );; -s) COMPREPLY=( $(compgen -W \"low high\" -- $curr) );; -f) COMPREPLY=( $(compgen -f -- $curr) );; *) COMPREPLY=( $(compgen -W \"$opts\" -- $curr) );; esac\n} complete -F _foo foo","breadcrumbs":"Example","id":"25","title":"Example"},"26":{"body":"","breadcrumbs":"zsh(1)","id":"26","title":"zsh(1)"},"27":{"body":"Change input mode: bindkey -v change to vi keymap\nbindkey -e change to emacs keymap Define key-mappings: bindkey list mappings in current keymap\nbindkey in-str cmd create mapping for `in-str` to `cmd`\nbindkey -r in-str remove binding for `in-str` # C-v <key> dump <key> code, which can be used in `in-str`\n# zle -l list all functions for keybindings\n# man zshzle(1) STANDARD WIDGETS: get description of functions","breadcrumbs":"Keybindings","id":"27","title":"Keybindings"},"28":{"body":"","breadcrumbs":"Completion","id":"28","title":"Completion"},"29":{"body":"Completion functions are provided via files and need to be placed in a location covered by $fpath. By convention the completion files are names as _<CMD>. A completion skeleton for the command foo, stored in _foo #compdef _foo foo function _foo() { ...\n} Alternatively one can install a completion function explicitly by calling compdef <FUNC> <CMD>.","breadcrumbs":"Installation","id":"29","title":"Installation"},"3":{"body":"Dynamic linking basically works via one indirect jump. It uses a combination of function trampolines (.plt section) and a function pointer table (.got.plt section). On the first call the trampoline sets up some metadata and then jumps to the ld.so runtime resolve function, which in turn patches the table with the correct function pointer. .plt ....... procedure linkage table, contains function trampolines, usually located in code segment (rx permission) .got.plt ... global offset table for .plt, holds the function pointer table Using radare2 we can analyze this in more detail: [0x00401040]> pd 4 @ section..got.plt ;-- section..got.plt: ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt ;-- _GLOBAL_OFFSET_TABLE_: [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic [1] 0x00404008 .qword 0x0000000000000000 ; CODE XREF from section..plt @ +0x6 [2] 0x00404010 .qword 0x0000000000000000 ;-- reloc.puts: ; CODE XREF from sym.imp.puts @ 0x401030 [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts [0x00401040]> pd 6 @ section..plt ;-- section..plt: ;-- .plt: ; [12] -r-x section size 32 named .plt ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] ╎ 0x0040102c 0f1f4000 nop dword [rax] ┌ 6: int sym.imp.puts (const char *s); └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] ╎ 0x00401036 6800000000 push 0 └─< 0x0040103b e9e0ffffff jmp sym..plt At address 0x00401030 in the .plt section we see the indirect jump for puts using the function pointer in _GLOBAL_OFFSET_TABLE_[3] (GOT). GOT[3] initially points to instruction after the puts trampoline 0x00401036. This pushes the relocation index 0 and then jumps to the first trampoline 0x00401020. The first trampoline jumps to GOT[2] which will be filled at program startup by the ld.so with its resolve function. The ld.so resolve function fixes the relocation referenced by the relocation index pushed by the puts trampoline. The relocation entry at index 0 tells the resolve function which symbol to search for and where to put the function pointer: > readelf -r <main> >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: >> Offset Info Type Sym. Value Sym. Name + Addend >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 As we can see the offset from relocation at index 0 points to GOT[3].","breadcrumbs":"Dynamic Linking (x86_64)","id":"3","title":"Dynamic Linking (x86_64)"},"30":{"body":"Following variables are available in Completion functions: $words # array with command line in words\n$#words # number words\n$CURRENT # index into $words for cursor position\n$words[CURRENT-1] # previous word (relative to cursor position)","breadcrumbs":"Completion Variables","id":"30","title":"Completion Variables"},"31":{"body":"_describe simple completion, just words + description _arguments sophisticated completion, allow to specify actions Completion with _describe _describe MSG COMP MSG simple string with header message COMP array of completions where each entry is \"opt:description\" function _foo() { local -a opts opts=('bla:desc for bla' 'blu:desc for blu') _describe 'foo-msg' opts\n}\ncompdef _foo foo foo <TAB><TAB> -- foo-msg --\nbla -- desc for bla\nblu -- desc for blu Completion with _arguments _arguments SPEC [SPEC...] where SPEC can have one of the following forms: OPT[DESC]:MSG:ACTION N:MSG:ACTION Available actions (op1 op2) list possible matches\n->VAL set $state=VAL and continue, `$state` can be checked later in switch case\nFUNC call func to generate matches\n{STR} evaluate `STR` to generate matches","breadcrumbs":"Completion Functions","id":"31","title":"Completion Functions"},"32":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -d <dir> -h The completion handler could be implemented as follows in a file called _foo: #compdef _foo foo function _foo_color() { local colors=() colors+=('green:green color') colors+=('red:red color') colors+=('blue:blue color') _describe \"color\" colors\n} function _foo() { _arguments \\ \"-c[define color]:color:->s_color\" \\ \"-s[select sound]:color:(low high)\" \\ \"-f[select file]:file:_files\" \\ \"-d[select dir]:fir:_files -/\" \\ \"-h[help]\" case $state in s_color) _foo_color;; esac\n}","breadcrumbs":"Example","id":"32","title":"Example"},"33":{"body":"Terminology: session is a collection of pseudo terminals which can have multiple windows window uses the entire screen and can be split into rectangular panes pane is a single pseudo terminal instance","breadcrumbs":"tmux(1)","id":"33","title":"tmux(1)"},"34":{"body":"# Session\ntmux creates new session\ntmux ls list running sessions\ntmux kill-session -t <s> kill running session <s>\ntmux attach -t <s> [-d] attach to session <s>, detach other clients [-d]\ntmux detach -s <s> detach all clients from session <s> # Environment\ntmux showenv -g show global tmux environment variables\ntmux setenv -g <var> <val> set variable in global tmux env # Misc\ntmux source-file <file> source config <file>\ntmux lscm list available tmux commnds\ntmux show -g show global tmux options\ntmux display <msg> display message in tmux status line","breadcrumbs":"Tmux cli","id":"34","title":"Tmux cli"},"35":{"body":"# Session\ntmux list-sessions -F '#S' list running sessions, only IDs # Window\ntmux list-windows -F '#I' -t <s> list window IDs for session <s>\ntmux selectw -t <s>:<w> select window <w> in session <s> # Pane\ntmux list-panes -F '#P' -t <s>:<w> list pane IDs for window <w> in session <s>\ntmux selectp -t <s>:<w>.<p> select pane <p> in window <w> in session <s> # Run commands\ntmux send -t <s>:<w>.<p> \"ls\" C-m send cmds/keys to pane\ntmux run -t <p> <sh-cmd> run shell command <sh-cmd> in background and report output on pane -t <p> For example cycle through all panes in all windows in all sessions: # bash\nfor s in $(tmux list-sessions -F '#S'); do for w in $(tmux list-windows -F '#I' -t $s); do for p in $(tmux list-panes -F '#P' -t $s:$w); do echo $s:$w.$p done done\ndone","breadcrumbs":"Scripting","id":"35","title":"Scripting"},"36":{"body":"prefix d detach from current session\nprefix c create new window\nprefix w open window list\nprefix $ rename session\nprefix , rename window\nprefix . move current window Following bindings are specific to my tmux.conf : C-s prefix # Panes\nprefix s horizontal split\nprefix v vertical split\nprefix f toggle maximize/minimize current pane # Movement\nprefix Tab toggle between window prefix h move to pane left\nprefix j move to pane down\nprefix k move to pane up\nprefix l move to pane right # Resize\nprefix C-h resize pane left\nprefix C-j resize pane down\nprefix C-k resize pane up\nprefix C-l resize pane right # Copy/Paste\nprefix C-v enter copy mode\nprefix C-p paste yanked text\nprefix C-b open copy-buffer list # In Copy Mode\nv enable visual mode\ny yank selected text","breadcrumbs":"Bindings","id":"36","title":"Bindings"},"37":{"body":"To enter command mode prefix :. Some useful commands are: setw synchronize-panes on/off enables/disables synchronized input to all panes\nlist-keys -t vi-copy list keymaps for vi-copy mode","breadcrumbs":"Command mode","id":"37","title":"Command mode"},"38":{"body":"awk [opt] program [input] -F <sepstr> field separator string (can be regex) program awk program input file or stdin if not file given","breadcrumbs":"awk(1)","id":"38","title":"awk(1)"},"39":{"body":"Input is processed in two stages: Splitting input into a sequence of records. By default split at newline character, but can be changed via the builtin RS variable. Splitting a record into fields. By default strings without whitespace, but can be changed via the builtin variable FS or command line option -F. Fields are accessed as follows: $0 whole record $1 field one $2 field two ...","breadcrumbs":"Input processing","id":"39","title":"Input processing"},"4":{"body":"","breadcrumbs":"git(1)","id":"4","title":"git(1)"},"40":{"body":"An awk program is composed of pairs of the form: pattern { action } The program is run against each record in the input stream. If a pattern matches a record the corresponding action is executed and can access the fields. INPUT | v\nrecord ----> ∀ pattern matched | | v v\nfields ----> run associated action Any valid awk expr can be a pattern.","breadcrumbs":"Program","id":"40","title":"Program"},"41":{"body":"awk provides two special patterns, BEGIN and END, which can be used multiple times. Actions with those patterns are executed exactly once . BEGIN actions are run before processing the first record END actions are run after processing the last record","breadcrumbs":"Special pattern","id":"41","title":"Special pattern"},"42":{"body":"RS record separator : first char is the record separator, by default FS field separator : regex to split records into fields, by default NR number record : number of current record","breadcrumbs":"Special variables","id":"42","title":"Special variables"},"43":{"body":"printf \"fmt\", args... Print format string, args are comma separated. %s string %d decimal %x hex %f float Width can be specified as %Ns, this reserves N chars for a string. For floats one can use %N.Mf, N is the total number including . and M. strftime(\"fmt\") Print time stamp formatted by fmt. %Y full year (eg 2020) %m month (01-12) %d day (01-31) %F alias for %Y-%m-%d %H hour (00-23) %M minute (00-59) %S second (00-59) %T alias for %H:%M:%S","breadcrumbs":"Special statements & functions","id":"43","title":"Special statements & functions"},"44":{"body":"","breadcrumbs":"Examples","id":"44","title":"Examples"},"45":{"body":"awk 'NR%2 == 0 { print $0 }' <file> The pattern NR%2 == 0 matches every second record and the action { print $0 } prints the whole record.","breadcrumbs":"Filter records","id":"45","title":"Filter records"},"46":{"body":"# /proc/<pid>/status\n# Name: cat\n# ...\n# VmRSS: 516 kB\n# ... for f in /proc/*/status; do cat $f | awk ' /^VmRSS/ { rss = $2/1024 } /^Name/ { name = $2 } END { printf \"%16s %6d MB\\n\", name, rss }';\ndone | sort -k2 -n We capture values from VmRSS and Name into variables and print them at the END once processing all records is done.","breadcrumbs":"Capture in variables","id":"46","title":"Capture in variables"},"47":{"body":"cat /proc/1/status | awk ' /^Pid/ { \"ps --no-header -o user \" $2 | getline user; print user }' We build a ps command line and capture the first line of the processes output in the user variable and then print it.","breadcrumbs":"Run shell command and capture output","id":"47","title":"Run shell command and capture output"},"48":{"body":"","breadcrumbs":"gdb(1)","id":"48","title":"gdb(1)"},"49":{"body":"gdb [opts] [prg [-c coredump | -p pid]] gdb [opts] --args prg <prg-args> opts: -p <pid> attach to pid -c <coredump> use <coredump> -x <file> execute script <file> before prompt -ex <cmd> execute command <cmd> before prompt --tty <tty> set I/O tty for debugee","breadcrumbs":"CLI","id":"49","title":"CLI"},"5":{"body":"git add -p [<file>] ............ partial staging (interactive)","breadcrumbs":"staging","id":"5","title":"staging"},"50":{"body":"tty <tty> Set <tty> as tty for debugee. Make sure nobody reads from target tty, easiest is to spawn a shell and run following in target tty: > while true; do sleep 1024; done set follow-fork-mode <child | parent> Specify which process to follow when debuggee makes a fork(2) syscall. sharedlibrary [<regex>] Load symbols of shared libs loaded by debugee. Optionally use <regex> to filter libs for symbol loading. break [-qualified] <sym> thread <tnum> Set a breakpoint only for a specific thread. -qualified: Tred <sym> as fully qualified symbol (quiet handy to set breakpoints on C symbols in C++ contexts) rbreak <regex> Set breakpoints matching <regex>, where matching internally is done on: .*<regex>.* command [<bp_list>] Define commands to run after breakpoint hit. If <bp_list> is not specified attach command to last created breakpoint. Command block terminated with 'end' token. <bp_list>: Space separates list, eg 'command 2 5-8' to run command for breakpoints: 2,5,6,7,8. info functions [<regex>] List functions matching <regex>. List all functions if no <regex> provided. info variables [<regex>] List variables matching <regex>. List all variables if no <regex> provided. info handle [<signal>] Print how to handle <signal>. If no <signal> specified print for all signals. handle <signal> <action> Configure how gdb handles <signal> sent to debugee. <action>: stop/nostop Catch signal in gdb and break. print/noprint Print message when gdb catches signal. pass/nopass Pass signal down to debugee. catch signal <signal> Create a catchpoint for <signal>.","breadcrumbs":"Interactive usage","id":"50","title":"Interactive usage"},"51":{"body":"Gdb allows to create & document user commands as follows: define <cmd> # cmds end document <cmd> # docu end To get all user commands or documentations one can use: help user-defined help <cmd>","breadcrumbs":"User commands (macros)","id":"51","title":"User commands (macros)"},"52":{"body":"Gdb allows to create two types of command hooks hook- will be run before <cmd> hookpost- will be run after <cmd> define hook-<cmd> # cmds end define hookpost-<cmd> # cmds end","breadcrumbs":"Hooks","id":"52","title":"Hooks"},"53":{"body":"","breadcrumbs":"Examples","id":"53","title":"Examples"},"54":{"body":"This creates a catchpoint for the SIGSEGV signal and attached the command to it. catch signal SIGSEGV command bt c end","breadcrumbs":"Catch SIGSEGV and execute commands","id":"54","title":"Catch SIGSEGV and execute commands"},"55":{"body":"gdb --batch -ex 'thread 1' -ex 'bt' -p <pid>","breadcrumbs":"Run backtrace on thread 1 (batch mode)","id":"55","title":"Run backtrace on thread 1 (batch mode)"},"56":{"body":"To script gdb add commands into a file and pass it to gdb via -x. For example create run.gdb: set pagination off break mmap command info reg rdi rsi rdx bt c end #initial drop c This script can be used as: gdb --batch -x ./run.gdb -p <pid>","breadcrumbs":"Script gdb for automating debugging sessions","id":"56","title":"Script gdb for automating debugging sessions"},"57":{"body":"","breadcrumbs":"Know Bugs","id":"57","title":"Know Bugs"},"58":{"body":"When using finish inside a command block, commands after finish are not executed. To workaround that bug one can create a wrapper function which calls finish. define handler bt finish info reg rax end command handler end","breadcrumbs":"Workaround command + finish bug","id":"58","title":"Workaround command + finish bug"},"59":{"body":"","breadcrumbs":"radare2(1)","id":"59","title":"radare2(1)"},"6":{"body":"git remote -v .................. list remotes verbose (with URLs) git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, remote branches, tracking mapping)","breadcrumbs":"Remote","id":"6","title":"Remote"},"60":{"body":"pd <n> [@ <addr>] # print disassembly for <n> instructions # with optional temporary seek to <addr>","breadcrumbs":"print","id":"60","title":"print"},"61":{"body":"fs # list flag-spaces fs <fs> # select flag-space <fs> f # print flags of selected flag-space","breadcrumbs":"flags","id":"61","title":"flags"},"62":{"body":"?*~<kw> # '?*' list all commands and '~' grep for <kw> ?*~... # '..' less mode /'...' interactive search","breadcrumbs":"help","id":"62","title":"help"},"63":{"body":"> r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr> oob <addr> # reopen current file at <baddr>","breadcrumbs":"relocation","id":"63","title":"relocation"},"64":{"body":"","breadcrumbs":"emacs(1)","id":"64","title":"emacs(1)"},"65":{"body":"C-h ? list available help modes C-h f describe function C-h v describe variable C-h c <KEY> print command bound to <KEY> C-h k <KEY> describe command bound to <KEY> C-h b list buffer local key-bindings <kseq> C-h list possible key-bindings with <kseq> eg C-x C-h -> list key-bindings beginning with C-x","breadcrumbs":"help","id":"65","title":"help"},"66":{"body":"package-refresh-contents refresh package list package-list-packages list available/installed packages","breadcrumbs":"package manager","id":"66","title":"package manager"},"67":{"body":"C-x 0 kill focused window C-x 1 kill all other windows C-x 2 split horizontal C-x 3 split vertical","breadcrumbs":"window","id":"67","title":"window"},"68":{"body":"C-<SPACE> set start mark to select text M-w copy selected text C-w kill selected text C-y paste selected text M-y cycle through kill-ring","breadcrumbs":"yank/paste","id":"68","title":"yank/paste"},"69":{"body":"C-x <SPC> activate rectangle-mark-mode M-x string-rectangle <RET> insert text in marked rect","breadcrumbs":"block/rect","id":"69","title":"block/rect"},"7":{"body":"git branch [-a] ................ list available branches; -a to include remote branches git branch -vv ................. list branch & annotate with head sha1 & remote tracking branch git branch <bname> ............. create branch with name <bname> git checkout <bname> ........... switch to branch with name <bname> git push -u origin <rbname> .... push branch to origin (or other remote), and setup <rbname> as tracking branch","breadcrumbs":"Branching","id":"7","title":"Branching"},"70":{"body":"C-x h mark whole buffer (mark-whole-buffer) M-x delete-matching-line <RET> delete lines matching regex M-x % search & replace region (query-replace) C-M-x % search & replace regex (query-replace-regexp)","breadcrumbs":"mass edit","id":"70","title":"mass edit"},"71":{"body":"M-x find-grep <RET> run find-grep result in *grep* buffer n/p navigate next/previous match in *grep* buffer","breadcrumbs":"grep","id":"71","title":"grep"},"72":{"body":"M-x lisp-interaction-mode activate lisp mode C-M-x evaluate top expr under cursor C-x C-e eval-last-sexp C-u C-x C-e eval-last-sexp and prints result in current buffer","breadcrumbs":"lisp mode","id":"72","title":"lisp mode"},"73":{"body":"C-x n n show only focused region (narrow) C-x n w show whole buffer (wide)","breadcrumbs":"narrow","id":"73","title":"narrow"},"74":{"body":"M-up/M-down re-arrange items in same hierarchy M-left/M-right change item hierarchy C-RET create new item below current C-S-RET create new TODO item below current S-left/S-right cycle TODO states","breadcrumbs":"org","id":"74","title":"org"},"75":{"body":"<s TAB generate a source block C-c ' edit source block (in lang specific buffer) C-c C-c eval source block","breadcrumbs":"org source","id":"75","title":"org source"},"76":{"body":"","breadcrumbs":"fish(1)","id":"76","title":"fish(1)"},"77":{"body":"Shift-Tab ........... tab-completion with search Alt-Up / Alt-Down ... search history with token under the cursor Alt-l ............... list content of dir under cursor Alt-p ............... append '2>&1 | less;' to current cmdline","breadcrumbs":"keymaps","id":"77","title":"keymaps"},"78":{"body":"status print-stack-trace .. prints function stacktrace (can be used in scripts) breakpoint ................ halt script execution and gives shell (C-d | exit to continue)","breadcrumbs":"debug","id":"78","title":"debug"},"79":{"body":"strace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -s <size> ... max string size, truncate of longer (default: 32) -e <expr> ... expression for trace filtering -o <file> ... log output into <file> -c .......... dump syscall statitics at the end <expr>: trace=syscall[,syscall] .... trace only syscall listed trace=file ................. trace all syscall that take a filename as arg trace=process .............. trace process management related syscalls trace=signal ............... trace signal related syscalls signal ..................... trace signals delivered to the process","breadcrumbs":"strace(1)","id":"79","title":"strace(1)"},"8":{"body":"git reset [opt] <ref|commit> opt: --mixed .................... resets index, but not working tree --hard ..................... matches the working tree and index to that of the tree being switched to any changes to tracked files in the working tree since <commit> are lost git reset HEAD <file> .......... remove file from staging git reset --soft HEAD~1 ........ delete most recent commit but keep work git reset --hard HEAD~1 ........ delete most recent commit and delete work","breadcrumbs":"Resetting","id":"8","title":"Resetting"},"80":{"body":"Trace open(2) & socket(2) syscalls for a running process + child processes: strace -f -e trace=open,socket -p <pid> Trace signals delivered to a running process: strace -f -e signal -p <pid>","breadcrumbs":"Examples","id":"80","title":"Examples"},"81":{"body":"lsof -a ......... AND slection filters instead ORing (OR: default) -p <pid> ... filter by <pid> +fg ........ show file flags for file descripros -n ......... don't convert network addr to hostnames -P ......... don't convert network port to service names -i <@h[:p]>. show connections to h (hostname|ip addr) with optional port p file flags: R/W/RW ..... read/write/read-write CR ......... create AP ......... append TR ......... truncate","breadcrumbs":"lsof(8)","id":"81","title":"lsof(8)"},"82":{"body":"","breadcrumbs":"Examples","id":"82","title":"Examples"},"83":{"body":"Show open files with file flags for process: lsof +fg -p <pid>","breadcrumbs":"File flags","id":"83","title":"File flags"},"84":{"body":"Show open tcp connections for $USER: lsof -a -u $USER -i tcp Note : -a ands the results. If -a is not given all open files matching $USER and all tcp connections are listed ( ored ).","breadcrumbs":"Open TCP connections","id":"84","title":"Open TCP connections"},"85":{"body":"Show open connections to localhost for $USER: lsof -a -u $USER -i @localhost","breadcrumbs":"Open connection to specific host","id":"85","title":"Open connection to specific host"},"86":{"body":"pidstat [opt] [interval] [cont] -U [user] show username instead UID, optionally only show for user -r memory statistics -d I/O statistics -h single line per process and no lines with average","breadcrumbs":"pidstat(1)","id":"86","title":"pidstat(1)"},"87":{"body":"pidstat -r -p <pid> [interval] [count] minor_pagefault: Happens when the page needed is already in memory but not allocated to the faulting process, in that case the kernel only has to create a new page-table entry pointing to the shared physical page (not required to load a memory page from disk). major_pagefault: Happens when the page needed is NOT in memory, the kernel has to create a new page-table entry and populate the physical page (required to load a memory page from disk).","breadcrumbs":"Page fault and memory utilization","id":"87","title":"Page fault and memory utilization"},"88":{"body":"pidstat -d -p <pid> [interval] [count]","breadcrumbs":"I/O statistics","id":"88","title":"I/O statistics"},"89":{"body":"# statistics of process run\n/usr/bin/time -v <cmd>","breadcrumbs":"/usr/bin/time(1)","id":"89","title":"/usr/bin/time(1)"},"9":{"body":"git tag -a <tname> -m \"descr\" ........ creates an annotated tag (full object containing tagger, date, ...) git tag -l ........................... list available tags git checkout tag/<tname> ............. checkout specific tag git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch","breadcrumbs":"Tags","id":"9","title":"Tags"},"90":{"body":"pgrep [opts] <pattern> -n only list newest matching process -u <usr> only show matching for user <usr> -l additionally list command -a additionally list command + arguments","breadcrumbs":"pgrep(1)","id":"90","title":"pgrep(1)"},"91":{"body":"For example attach gdb to newest zsh process from $USER. gdb -p $(pgrep -n -u $USER zsh)","breadcrumbs":"Debug newest process","id":"91","title":"Debug newest process"},"92":{"body":"pstack <pid> Dump stack for all threads of process.","breadcrumbs":"pstack(1)","id":"92","title":"pstack(1)"},"93":{"body":"perf list show supported hw/sw events perf stat -p <pid> .. show stats for running process -I <ms> ... show stats periodically over interval <ms> -e <ev> ... filter for events perf top -p <pid> .. show stats for running process -F <hz> ... sampling frequency -K ........ hide kernel threads perf record -p <pid> ............... record stats for running process -F <hz> ................ sampling frequency --call-graph <method> .. [fp, dwarf, lbr] method how to caputre backtrace fp : use frame-pointer, need to compile with -fno-omit-frame-pointer dwarf: use .cfi debug information lbr : use hardware last branch record facility -g ..................... short-hand for --call-graph fp -e <ev> ................ filter for events perf report -n .................... annotate symbols with nr of samples --stdio ............... report to stdio, if not presen tui mode -g graph,0.5,caller ... show caller based call chains with value >0.5 Useful <ev>: page-faults minor-faults major-faults cpu-cycles` task-clock","breadcrumbs":"perf(1)","id":"93","title":"perf(1)"},"94":{"body":"","breadcrumbs":"Flamegraph","id":"94","title":"Flamegraph"},"95":{"body":"perf record -g -e cpu-cycles -p <pid>\nperf script | FlameGraph/stackcollapse-perf.pl | FlameGraph/flamegraph.pl > cycles-flamegraph.svg","breadcrumbs":"Flamegraph with single event trace","id":"95","title":"Flamegraph with single event trace"},"96":{"body":"perf record -g -e cpu-cycles,page-faults -p <pid>\nperf script --per-event-dump\n# fold & generate as above","breadcrumbs":"Flamegraph with multiple event traces","id":"96","title":"Flamegraph with multiple event traces"},"97":{"body":"operf -g -p <pid> -g ...... caputre call-graph information opreport [opt] FILE show time spent per binary image -l ...... show time spent per symbol -c ...... show callgraph information (see below) -a ...... add column with time spent accumulated over child nodes ophelp show supported hw/sw events","breadcrumbs":"OProfile","id":"97","title":"OProfile"},"98":{"body":"od [opts] <file> -An don't print addr info -tx4 print hex in 4 byte chunks -ta print as named character -tc printable chars or backslash escape -w4 print 4 bytes per line -j <n> skip <n> bytes from <file> (hex if start with 0x) -N <n> dump <n> bytes (hex of start with 0x)","breadcrumbs":"od(1)","id":"98","title":"od(1)"},"99":{"body":"echo -n AAAABBBB | od -An -w4 -tx4 >> 41414141 >> 42424242 echo -n '\\x7fELF\\n' | od -tx1 -ta -tc >> 0000000 7f 45 4c 46 0a # tx1 >> del E L F nl # ta >> 177 E L F \\n # tc","breadcrumbs":"ASCII to hex string","id":"99","title":"ASCII to hex string"}},"length":123,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"3":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"2":{"tf":3.0},"3":{"tf":2.449489742783178},"39":{"tf":1.0},"45":{"tf":2.0},"67":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"3":{"tf":1.0},"43":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"6":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"43":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"99":{"tf":1.0}}},"6":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"5":{"1":{"6":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":1,"docs":{"50":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"117":{"tf":1.0}},"f":{"df":1,"docs":{"99":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"x":{",":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"31":{"tf":2.0},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"2":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"100":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"11":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"77":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"79":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"y":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"24":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"35":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":1,"docs":{"8":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"7":{"tf":2.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"122":{"tf":1.7320508075688772},"14":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.4641016151377544},"9":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"106":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":2.449489742783178},"78":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"36":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":2.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"116":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"df":3,"docs":{"15":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":28,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":3.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"21":{"tf":2.23606797749979},"3":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":2.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"50":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"119":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"24":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"43":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"14":{"tf":1.4142135623730951},"16":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":2.0},"25":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"24":{"tf":3.4641016151377544},"25":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.0},"50":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"31":{"tf":1.0},"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"116":{"tf":1.0},"13":{"tf":2.0},"27":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"24":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"42":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"35":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}},"y":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"114":{"tf":1.0}},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"116":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"10":{"tf":2.449489742783178},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"16":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"27":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"106":{"tf":2.0},"112":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"112":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"122":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"35":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":2.0}},"t":{"df":2,"docs":{"70":{"tf":1.0},"75":{"tf":1.0}}}}},"df":11,"docs":{"101":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"13":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"75":{"tf":1.0}},"u":{"df":2,"docs":{"31":{"tf":1.0},"72":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":3,"docs":{"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}},"r":{"df":3,"docs":{"40":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"23":{"tf":2.0}}},"df":15,"docs":{"24":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"32":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"3":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":2.23606797749979},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"79":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":2,"docs":{"50":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"50":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}},"df":2,"docs":{"31":{"tf":1.0},"40":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"31":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"14":{"tf":2.449489742783178},"15":{"tf":2.0},"16":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.0},"9":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":3,"docs":{"21":{"tf":2.23606797749979},"38":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"62":{"tf":1.0},"71":{"tf":2.23606797749979}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}},"l":{"df":1,"docs":{"50":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"8":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"106":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":2.8284271247461903},"70":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"16":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"51":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"52":{"tf":2.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"22":{"tf":1.4142135623730951},"49":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"116":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"24":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}},"o":{"df":7,"docs":{"107":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"2":{"tf":2.0}},"i":{"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":2.23606797749979},"3":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"50":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"22":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"23":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":1,"docs":{"122":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":2.0},"3":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"65":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":3,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"62":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"2":{"tf":1.0}}},"b":{"df":1,"docs":{"2":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"2":{"tf":2.8284271247461903},"3":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"t":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":2.449489742783178},"24":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"13":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"2":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"w":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":3,"docs":{"15":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":2.8284271247461903},"3":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"66":{"tf":1.0},"79":{"tf":1.0}}}},"df":1,"docs":{"27":{"tf":1.0}}},"p":{"df":6,"docs":{"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"107":{"tf":1.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"107":{"tf":1.0},"8":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":2.0},"3":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"20":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"81":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":2.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"116":{"tf":1.0},"29":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"109":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"122":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}},"r":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":4,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"41":{"tf":1.0},"46":{"tf":1.0}}},"df":8,"docs":{"21":{"tf":2.23606797749979},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.4142135623730951},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":3.0}}}}},"df":3,"docs":{"21":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":3.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":3.1622776601683795},"37":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"14":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}},"t":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":4.47213595499958},"3":{"tf":1.0}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"14":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":3.605551275463989},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":24,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":15,"docs":{"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"31":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"36":{"tf":4.69041575982343},"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"106":{"tf":2.6457513110645907},"117":{"tf":1.7320508075688772},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.4142135623730951},"98":{"tf":2.0}},"f":{"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"3":{"tf":2.0},"7":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"3":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"58":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":10,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"73":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":1,"docs":{"106":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"3":{"tf":2.6457513110645907},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":2.8284271247461903},"7":{"tf":1.7320508075688772}}},"v":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"8":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"36":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"3":{"tf":1.0}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"74":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"35":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"2":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":2.0}},"p":{"df":1,"docs":{"35":{"tf":1.0}}},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":1,"docs":{"37":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"50":{"tf":1.0},"87":{"tf":1.0}}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"6":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"50":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"3":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"c":{"df":1,"docs":{"69":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"31":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"36":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"39":{"tf":1.0},"5":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":2.0},"20":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"74":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":2,"docs":{"34":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"15":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":9,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"50":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"84":{"tf":2.0}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"37":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":4.123105625617661},"35":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"116":{"tf":1.0}}}},"k":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"8":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}},"r":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":20,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":8,"docs":{"24":{"tf":1.0},"47":{"tf":2.0},"51":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"34":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.0},"24":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"116":{"tf":1.0},"122":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"21":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"24":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"31":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":12,"docs":{"122":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"2":{"df":1,"docs":{"100":{"tf":1.0}}},"3":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"2":{"tf":3.0},"3":{"tf":2.449489742783178},"39":{"tf":1.0},"45":{"tf":2.0},"67":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"3":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"3":{"tf":1.0},"43":{"tf":1.0}}},"5":{"df":1,"docs":{"100":{"tf":1.0}}},"6":{"df":2,"docs":{"100":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"43":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"43":{"tf":1.0}}},"2":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"df":5,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"67":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"99":{"tf":1.0}}},"6":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"5":{"1":{"6":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":1,"docs":{"50":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"3":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"117":{"tf":1.0}},"f":{"df":1,"docs":{"99":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":1,"docs":{"50":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}},"x":{",":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"1":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"31":{"tf":2.0},"32":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":1,"docs":{"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"2":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"100":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"11":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"77":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"79":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"y":{"df":5,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"34":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"79":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"114":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":6,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"22":{"tf":1.0},"35":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"21":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":1,"docs":{"8":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"27":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"50":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"7":{"tf":2.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"122":{"tf":1.7320508075688772},"14":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":3.605551275463989},"9":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"106":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":2.449489742783178},"78":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"36":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":2.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"116":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"54":{"tf":1.0}}}}}}}}},"df":3,"docs":{"15":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":28,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":3.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":3.3166247903554},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"21":{"tf":2.23606797749979},"3":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":2.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"50":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"24":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":2.449489742783178},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"43":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.0},"39":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":3.0},"14":{"tf":1.4142135623730951},"16":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":2.0},"25":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"24":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.0},"50":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"31":{"tf":1.0},"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"23":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"116":{"tf":1.0},"13":{"tf":2.0},"27":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"24":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"42":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"35":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}},"y":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"114":{"tf":1.0}},"t":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"116":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"20":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"31":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"16":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"24":{"tf":1.0},"32":{"tf":1.0},"77":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"36":{"tf":1.4142135623730951},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"27":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"106":{"tf":2.0},"112":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"df":2,"docs":{"106":{"tf":1.0},"112":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"122":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"35":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":2.0}},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":11,"docs":{"101":{"tf":1.0},"120":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"13":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"2":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"20":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"100":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"75":{"tf":1.0}},"u":{"df":2,"docs":{"31":{"tf":1.0},"72":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":3,"docs":{"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"78":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"24":{"tf":1.0}}}}},"r":{"df":3,"docs":{"40":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"23":{"tf":2.0}}},"df":15,"docs":{"24":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"32":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":2.0},"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"3":{"tf":1.0}}},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"3":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"79":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":2,"docs":{"50":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"50":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}},"df":2,"docs":{"31":{"tf":1.0},"40":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"39":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"24":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":7,"docs":{"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"34":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":2.0},"19":{"tf":2.0},"2":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"31":{"tf":1.4142135623730951},"75":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":2.8284271247461903},"14":{"tf":2.449489742783178},"15":{"tf":2.0},"16":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.0},"9":{"tf":2.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"122":{"tf":1.0},"78":{"tf":1.0}},"n":{"df":3,"docs":{"21":{"tf":2.23606797749979},"38":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"3":{"tf":1.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"3":{"tf":1.0}}},"3":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"62":{"tf":1.0},"71":{"tf":2.449489742783178}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"50":{"tf":1.0}}},"l":{"df":1,"docs":{"50":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"8":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"106":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.0},"65":{"tf":2.8284271247461903},"70":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"106":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"16":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"51":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"43":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":2.0},"77":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"22":{"tf":1.7320508075688772},"49":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"116":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"24":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}},"o":{"df":7,"docs":{"107":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"14":{"tf":1.4142135623730951},"2":{"tf":2.0}},"i":{"df":4,"docs":{"13":{"tf":1.0},"2":{"tf":2.449489742783178},"3":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"27":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.0},"40":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772}}},"n":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"50":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"22":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"23":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":1,"docs":{"122":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":2.0},"3":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"122":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"46":{"tf":1.0}}},"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":3,"docs":{"36":{"tf":1.4142135623730951},"65":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"27":{"tf":1.7320508075688772},"37":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"16":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"y":{"df":1,"docs":{"122":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":3,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"62":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"2":{"tf":1.0}}},"b":{"df":1,"docs":{"2":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":3,"docs":{"106":{"tf":1.0},"2":{"tf":3.0},"3":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":2.0}}},"t":{"df":27,"docs":{"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":2.449489742783178},"24":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"100":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"13":{"tf":1.0},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.4142135623730951},"79":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"2":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"w":{"df":1,"docs":{"25":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"25":{"tf":1.0},"32":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":3,"docs":{"15":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":2.8284271247461903},"3":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":1,"docs":{"27":{"tf":1.0}}},"p":{"df":6,"docs":{"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"2":{"tf":3.0},"27":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"107":{"tf":1.0},"19":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"107":{"tf":1.0},"8":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"101":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":2.0},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"21":{"tf":2.0},"3":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"20":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"81":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":2.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"116":{"tf":1.0},"29":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":1,"docs":{"107":{"tf":1.0}}}}},"l":{"df":1,"docs":{"99":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"109":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"43":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"122":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}},"r":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":4,"docs":{"116":{"tf":1.0},"122":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"41":{"tf":1.0},"46":{"tf":1.0}}},"df":8,"docs":{"21":{"tf":2.23606797749979},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"2":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.4142135623730951},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"38":{"tf":1.0},"49":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":3.1622776601683795}}}}},"df":3,"docs":{"21":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"24":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":3.1622776601683795},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":3.1622776601683795},"37":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"14":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}},"t":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":4.58257569495584},"3":{"tf":1.0}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"14":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"20":{"tf":2.23606797749979},"21":{"tf":3.605551275463989},"40":{"tf":2.0},"41":{"tf":2.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":24,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":2.449489742783178},"36":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"86":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":15,"docs":{"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"3":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"31":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.4142135623730951},"36":{"tf":4.69041575982343},"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"106":{"tf":2.6457513110645907},"117":{"tf":1.7320508075688772},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.4142135623730951},"98":{"tf":2.0}},"f":{"df":2,"docs":{"43":{"tf":1.0},"46":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"106":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":2.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"47":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"3":{"tf":2.0},"7":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"3":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"107":{"tf":1.0}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"58":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":10,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"50":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"45":{"tf":2.0},"46":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"25":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"74":{"tf":1.0}},"f":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":3.3166247903554},"70":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"73":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":1,"docs":{"106":{"tf":1.0}},"t":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"106":{"tf":1.0},"3":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":3.0},"7":{"tf":1.7320508075688772}}},"v":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.0},"8":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"70":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}},"t":{"df":1,"docs":{"8":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"36":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.0},"2":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"36":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"56":{"tf":1.0}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"3":{"tf":1.0}}},"x":{"df":1,"docs":{"3":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.0},"74":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":2.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.4142135623730951},"3":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":2.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.4142135623730951},"2":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"60":{"tf":1.0}}},"n":{"df":1,"docs":{"2":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"3":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":2.0}},"p":{"df":1,"docs":{"35":{"tf":1.0}}},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"33":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":3.0},"36":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"df":1,"docs":{"37":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"50":{"tf":1.0},"87":{"tf":1.0}}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"6":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"50":{"tf":3.4641016151377544},"54":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"3":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"107":{"tf":1.0},"34":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"c":{"df":1,"docs":{"69":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"31":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"36":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"39":{"tf":1.0},"5":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"13":{"tf":2.0},"20":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"13":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"74":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"u":{"df":2,"docs":{"34":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"15":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":3.4641016151377544}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"31":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":9,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"50":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"50":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"36":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"l":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"3":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951}}}},"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":3.0},"37":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"50":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":4.242640687119285},"35":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":7,"docs":{"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"k":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"8":{"tf":2.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"49":{"tf":1.7320508075688772},"50":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"100":{"tf":1.0},"114":{"tf":1.4142135623730951},"3":{"tf":1.0},"52":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}},"r":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}},"df":20,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":8,"docs":{"24":{"tf":1.0},"47":{"tf":2.0},"51":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"31":{"tf":1.0},"34":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"117":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"6":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":2,"docs":{"27":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"116":{"tf":1.0},"122":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"7":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":2.23606797749979},"67":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"21":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"24":{"tf":2.6457513110645907},"30":{"tf":2.449489742783178},"31":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":12,"docs":{"122":{"tf":1.4142135623730951},"3":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"_":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}},"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"105":{"tf":1.0},"113":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"37":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"56":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"83":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":1.0}}}},"x":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"2":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"m":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"55":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"d":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}
\ No newline at end of file +{"doc_urls":["misc/zsh.html#zsh1","misc/zsh.html#keybindings","misc/zsh.html#completion","misc/zsh.html#installation","misc/zsh.html#completion-variables","misc/zsh.html#completion-functions","misc/zsh.html#example","misc/bash.html#bash1","misc/bash.html#expansion","misc/bash.html#generator","misc/bash.html#parameter","misc/bash.html#pathname","misc/bash.html#io-redirection","misc/bash.html#explanation","misc/bash.html#completion","misc/bash.html#example","misc/fish.html#fish1","misc/fish.html#keymaps","misc/fish.html#debug","misc/tmux.html#tmux1","misc/tmux.html#tmux-cli","misc/tmux.html#scripting","misc/tmux.html#bindings","misc/tmux.html#command-mode","misc/git.html#git1","misc/git.html#staging","misc/git.html#remote","misc/git.html#branching","misc/git.html#resetting","misc/git.html#tags","misc/git.html#diff","misc/git.html#log","misc/git.html#file-history","misc/git.html#patching","misc/git.html#submodules","misc/git.html#inspection","misc/git.html#revision-specifier","misc/awk.html#awk1","misc/awk.html#input-processing","misc/awk.html#program","misc/awk.html#special-pattern","misc/awk.html#special-variables","misc/awk.html#special-statements--functions","misc/awk.html#examples","misc/awk.html#filter-records","misc/awk.html#capture-in-variables","misc/awk.html#run-shell-command-and-capture-output","misc/emacs.html#emacs1","misc/emacs.html#help","misc/emacs.html#package-manager","misc/emacs.html#window","misc/emacs.html#yankpaste","misc/emacs.html#blockrect","misc/emacs.html#mass-edit","misc/emacs.html#grep","misc/emacs.html#lisp-mode","misc/emacs.html#narrow","misc/emacs.html#org","misc/emacs.html#org-source","misc/gdb.html#gdb1","misc/gdb.html#cli","misc/gdb.html#interactive-usage","misc/gdb.html#user-commands-macros","misc/gdb.html#hooks","misc/gdb.html#examples","misc/gdb.html#catch-sigsegv-and-execute-commands","misc/gdb.html#run-backtrace-on-thread-1-batch-mode","misc/gdb.html#script-gdb-for-automating-debugging-sessions","misc/gdb.html#know-bugs","misc/gdb.html#workaround-command--finish-bug","misc/radare2.html#radare21","misc/radare2.html#print","misc/radare2.html#flags","misc/radare2.html#help","misc/radare2.html#relocation","monitor/index.html#resource-analysis--monitor","monitor/lsof.html#lsof8","monitor/lsof.html#examples","monitor/lsof.html#file-flags","monitor/lsof.html#open-tcp-connections","monitor/lsof.html#open-connection-to-specific-host","monitor/pidstat.html#pidstat1","monitor/pidstat.html#page-fault-and-memory-utilization","monitor/pidstat.html#io-statistics","monitor/pgrep.html#pgrep1","monitor/pgrep.html#debug-newest-process","monitor/pmap.html#pmap1","monitor/pstack.html#pstack1","trace_profile/index.html#trace-and-profile","trace_profile/strace.html#strace1","trace_profile/strace.html#examples","trace_profile/ltrace.html#ltrace1","trace_profile/ltrace.html#example","trace_profile/perf.html#perf1","trace_profile/perf.html#flamegraph","trace_profile/perf.html#flamegraph-with-single-event-trace","trace_profile/perf.html#flamegraph-with-multiple-event-traces","trace_profile/oprofile.html#oprofile","trace_profile/time.html#usrbintime1","binary/index.html#binary","binary/od.html#od1","binary/od.html#ascii-to-hex-string","binary/od.html#extract-parts-of-file","binary/xxd.html#xxd1","binary/xxd.html#ascii-to-hex-stream","binary/xxd.html#hex-to-binary-stream","binary/xxd.html#ascii-to-binary","binary/xxd.html#ascii-to-c-array-hex-encoded","binary/readelf.html#readelf1","binary/objdump.html#objdump1","binary/objdump.html#disassemble-section","binary/nm.html#nm1","development/index.html#development","development/c++filt.html#cfilt1","development/c++filt.html#demangle-symbol","development/c++filt.html#demangle-stream","development/c++.html#c","development/c++.html#type-deduction","development/glibc.html#glibc","development/glibc.html#malloc-tracer--mtrace3","development/glibc.html#malloc-check--mallopt3","development/gcc.html#gcc1","development/gcc.html#cli","development/gcc.html#preprocessing","development/gcc.html#builtins","development/gcc.html#__builtin_expectexpr-cond","development/ld.so.html#ldso8","development/ld.so.html#environment-variables","development/ld.so.html#ld_preload-initialization-order-and-link-map","development/ld.so.html#dynamic-linking-x86_64"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":2,"title":1},"10":{"body":60,"breadcrumbs":2,"title":1},"100":{"body":45,"breadcrumbs":2,"title":1},"101":{"body":34,"breadcrumbs":4,"title":3},"102":{"body":76,"breadcrumbs":4,"title":3},"103":{"body":19,"breadcrumbs":2,"title":1},"104":{"body":6,"breadcrumbs":4,"title":3},"105":{"body":7,"breadcrumbs":4,"title":3},"106":{"body":11,"breadcrumbs":3,"title":2},"107":{"body":15,"breadcrumbs":6,"title":5},"108":{"body":55,"breadcrumbs":2,"title":1},"109":{"body":36,"breadcrumbs":2,"title":1},"11":{"body":93,"breadcrumbs":2,"title":1},"110":{"body":8,"breadcrumbs":3,"title":2},"111":{"body":7,"breadcrumbs":2,"title":1},"112":{"body":0,"breadcrumbs":1,"title":1},"113":{"body":0,"breadcrumbs":2,"title":1},"114":{"body":3,"breadcrumbs":3,"title":2},"115":{"body":10,"breadcrumbs":3,"title":2},"116":{"body":0,"breadcrumbs":2,"title":1},"117":{"body":14,"breadcrumbs":3,"title":2},"118":{"body":0,"breadcrumbs":2,"title":1},"119":{"body":62,"breadcrumbs":4,"title":3},"12":{"body":24,"breadcrumbs":3,"title":2},"120":{"body":34,"breadcrumbs":4,"title":3},"121":{"body":0,"breadcrumbs":2,"title":1},"122":{"body":0,"breadcrumbs":2,"title":1},"123":{"body":15,"breadcrumbs":2,"title":1},"124":{"body":0,"breadcrumbs":2,"title":1},"125":{"body":90,"breadcrumbs":3,"title":2},"126":{"body":0,"breadcrumbs":2,"title":1},"127":{"body":38,"breadcrumbs":3,"title":2},"128":{"body":128,"breadcrumbs":6,"title":5},"129":{"body":246,"breadcrumbs":4,"title":3},"13":{"body":26,"breadcrumbs":2,"title":1},"14":{"body":123,"breadcrumbs":2,"title":1},"15":{"body":66,"breadcrumbs":2,"title":1},"16":{"body":0,"breadcrumbs":2,"title":1},"17":{"body":28,"breadcrumbs":2,"title":1},"18":{"body":19,"breadcrumbs":2,"title":1},"19":{"body":19,"breadcrumbs":2,"title":1},"2":{"body":0,"breadcrumbs":2,"title":1},"20":{"body":86,"breadcrumbs":3,"title":2},"21":{"body":119,"breadcrumbs":2,"title":1},"22":{"body":128,"breadcrumbs":2,"title":1},"23":{"body":24,"breadcrumbs":3,"title":2},"24":{"body":0,"breadcrumbs":2,"title":1},"25":{"body":7,"breadcrumbs":2,"title":1},"26":{"body":21,"breadcrumbs":2,"title":1},"27":{"body":46,"breadcrumbs":2,"title":1},"28":{"body":50,"breadcrumbs":2,"title":1},"29":{"body":35,"breadcrumbs":2,"title":1},"3":{"body":36,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":1},"31":{"body":27,"breadcrumbs":2,"title":1},"32":{"body":19,"breadcrumbs":3,"title":2},"33":{"body":109,"breadcrumbs":2,"title":1},"34":{"body":64,"breadcrumbs":2,"title":1},"35":{"body":27,"breadcrumbs":2,"title":1},"36":{"body":28,"breadcrumbs":3,"title":2},"37":{"body":18,"breadcrumbs":2,"title":1},"38":{"body":45,"breadcrumbs":3,"title":2},"39":{"body":37,"breadcrumbs":2,"title":1},"4":{"body":25,"breadcrumbs":3,"title":2},"40":{"body":29,"breadcrumbs":3,"title":2},"41":{"body":22,"breadcrumbs":3,"title":2},"42":{"body":72,"breadcrumbs":4,"title":3},"43":{"body":0,"breadcrumbs":2,"title":1},"44":{"body":18,"breadcrumbs":3,"title":2},"45":{"body":39,"breadcrumbs":3,"title":2},"46":{"body":25,"breadcrumbs":6,"title":5},"47":{"body":0,"breadcrumbs":2,"title":1},"48":{"body":59,"breadcrumbs":2,"title":1},"49":{"body":12,"breadcrumbs":3,"title":2},"5":{"body":89,"breadcrumbs":3,"title":2},"50":{"body":21,"breadcrumbs":2,"title":1},"51":{"body":28,"breadcrumbs":2,"title":1},"52":{"body":16,"breadcrumbs":2,"title":1},"53":{"body":35,"breadcrumbs":3,"title":2},"54":{"body":17,"breadcrumbs":2,"title":1},"55":{"body":36,"breadcrumbs":3,"title":2},"56":{"body":16,"breadcrumbs":2,"title":1},"57":{"body":36,"breadcrumbs":2,"title":1},"58":{"body":20,"breadcrumbs":3,"title":2},"59":{"body":0,"breadcrumbs":2,"title":1},"6":{"body":62,"breadcrumbs":2,"title":1},"60":{"body":42,"breadcrumbs":2,"title":1},"61":{"body":180,"breadcrumbs":3,"title":2},"62":{"body":25,"breadcrumbs":4,"title":3},"63":{"body":24,"breadcrumbs":2,"title":1},"64":{"body":0,"breadcrumbs":2,"title":1},"65":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":9,"breadcrumbs":7,"title":6},"67":{"body":36,"breadcrumbs":6,"title":5},"68":{"body":0,"breadcrumbs":3,"title":2},"69":{"body":27,"breadcrumbs":5,"title":4},"7":{"body":0,"breadcrumbs":2,"title":1},"70":{"body":0,"breadcrumbs":2,"title":1},"71":{"body":11,"breadcrumbs":2,"title":1},"72":{"body":16,"breadcrumbs":2,"title":1},"73":{"body":9,"breadcrumbs":2,"title":1},"74":{"body":15,"breadcrumbs":2,"title":1},"75":{"body":0,"breadcrumbs":3,"title":3},"76":{"body":49,"breadcrumbs":4,"title":1},"77":{"body":0,"breadcrumbs":4,"title":1},"78":{"body":10,"breadcrumbs":5,"title":2},"79":{"body":21,"breadcrumbs":6,"title":3},"8":{"body":0,"breadcrumbs":2,"title":1},"80":{"body":9,"breadcrumbs":7,"title":4},"81":{"body":26,"breadcrumbs":4,"title":1},"82":{"body":50,"breadcrumbs":7,"title":4},"83":{"body":6,"breadcrumbs":5,"title":2},"84":{"body":22,"breadcrumbs":4,"title":1},"85":{"body":14,"breadcrumbs":6,"title":3},"86":{"body":12,"breadcrumbs":4,"title":1},"87":{"body":6,"breadcrumbs":4,"title":1},"88":{"body":0,"breadcrumbs":2,"title":2},"89":{"body":64,"breadcrumbs":3,"title":1},"9":{"body":16,"breadcrumbs":2,"title":1},"90":{"body":25,"breadcrumbs":3,"title":1},"91":{"body":27,"breadcrumbs":3,"title":1},"92":{"body":11,"breadcrumbs":3,"title":1},"93":{"body":128,"breadcrumbs":3,"title":1},"94":{"body":0,"breadcrumbs":3,"title":1},"95":{"body":15,"breadcrumbs":6,"title":4},"96":{"body":17,"breadcrumbs":6,"title":4},"97":{"body":43,"breadcrumbs":3,"title":1},"98":{"body":6,"breadcrumbs":3,"title":1},"99":{"body":0,"breadcrumbs":1,"title":1}},"docs":{"0":{"body":"","breadcrumbs":"Misc » zsh(1)","id":"0","title":"zsh(1)"},"1":{"body":"Change input mode: bindkey -v change to vi keymap\nbindkey -e change to emacs keymap Define key-mappings: bindkey list mappings in current keymap\nbindkey in-str cmd create mapping for `in-str` to `cmd`\nbindkey -r in-str remove binding for `in-str` # C-v <key> dump <key> code, which can be used in `in-str`\n# zle -l list all functions for keybindings\n# man zshzle(1) STANDARD WIDGETS: get description of functions","breadcrumbs":"Misc » Keybindings","id":"1","title":"Keybindings"},"10":{"body":"# default param\nbar=${foo:-some_val} # if $foo set, then bar=$foo else bar=some_val # check param set\nbar=${foo:?msg} # if $foo set, then bar=$foo else exit and print msg # indirect\nFOO=foo\nBAR=FOO\nbar=${!BAR} # deref value of BAR -> bar=$FOO # prefix\n${foo#prefix} # remove prefix when expanding $foo\n# suffix\n${foo%suffix} # remove suffix when expanding $foo # substitute\n${foo/pattern/string} # replace pattern with string when expanding foo\n# pattern starts with\n# '/' replace all occurences of pattern\n# '#' pattern match at beginning\n# '%' pattern match at end Note: prefix/suffix/pattern are expanded as pathnames .","breadcrumbs":"Misc » Parameter","id":"10","title":"Parameter"},"100":{"body":"od [opts] <file> -An don't print addr info -tx4 print hex in 4 byte chunks -ta print as named character -tc printable chars or backslash escape -w4 print 4 bytes per line -j <n> skip <n> bytes from <file> (hex if start with 0x) -N <n> dump <n> bytes (hex of start with 0x)","breadcrumbs":"Binary » od(1)","id":"100","title":"od(1)"},"101":{"body":"echo -n AAAABBBB | od -An -w4 -tx4 >> 41414141 >> 42424242 echo -n '\\x7fELF\\n' | od -tx1 -ta -tc >> 0000000 7f 45 4c 46 0a # tx1 >> del E L F nl # ta >> 177 E L F \\n # tc","breadcrumbs":"Binary » ASCII to hex string","id":"101","title":"ASCII to hex string"},"102":{"body":"For example .rodata section from an elf file. We can use readelf to get the offset into the file where the .rodata section starts. readelf -W -S foo >> Section Headers: >> [Nr] Name Type Address Off Size ES Flg Lk Inf Al >> ... >> [15] .rodata PROGBITS 00000000004009c0 0009c0 000030 00 A 0 0 16 With the offset of -j 0x0009c0 we can dump -N 0x30 bytes from the beginning of the .rodata section as follows: od -j 0x0009c0 -N 0x30 -tx4 -w4 foo >> 0004700 00020001 >> 0004704 00000000 >> * >> 0004740 00000001 >> 0004744 00000002 >> 0004750 00000003 >> 0004754 00000004 Note : Numbers starting with 0x will be interpreted as hex by od.","breadcrumbs":"Binary » Extract parts of file","id":"102","title":"Extract parts of file"},"103":{"body":"xxd [opts] -p dump continuous hexdump -r convert hexdump into binary ('revert') -e dump as little endian mode -i output as C array","breadcrumbs":"Binary » xxd(1)","id":"103","title":"xxd(1)"},"104":{"body":"echo -n 'aabb' | xxd -p >> 61616262","breadcrumbs":"Binary » ASCII to hex stream","id":"104","title":"ASCII to hex stream"},"105":{"body":"echo -n '61616262' | xxd -p -r >> aabb","breadcrumbs":"Binary » Hex to binary stream","id":"105","title":"Hex to binary stream"},"106":{"body":"echo -n '\\x7fELF' | xxd -p | xxd -p -r | file -p - >> ELF","breadcrumbs":"Binary » ASCII to binary","id":"106","title":"ASCII to binary"},"107":{"body":"xxd -i <(echo -n '\\x7fELF') >> unsigned char _proc_self_fd_11[] = { >> 0x7f, 0x45, 0x4c, 0x46 >> }; >> unsigned int _proc_self_fd_11_len = 4;","breadcrumbs":"Binary » ASCII to C array (hex encoded)","id":"107","title":"ASCII to C array (hex encoded)"},"108":{"body":"readelf [opts] <elf> -W|--wide wide output, dont break output at 80 chars -h print ELF header -S print section headers -l print program headers + segment mapping -d print .dynamic section (dynamic link information) --syms print symbol tables (.symtab .dynsym) --dyn-syms print dynamic symbol table (exported symbols for dynamic linker) -r print relocation sections (.rel.*, .rela.*)","breadcrumbs":"Binary » readelf(1)","id":"108","title":"readelf(1)"},"109":{"body":"objdump [opts] <elf> -M intel use intil syntax -d disassemble text section -D disassemble all sections -S mix disassembly with source code -C demangle -j <section> display info for section --[no-]show-raw-insn [dont] show object code next to disassembly","breadcrumbs":"Binary » objdump(1)","id":"109","title":"objdump(1)"},"11":{"body":"* match any string\n? match any single char\n\\\\ match backslash\n[abc] match any char of 'a' 'b' 'c'\n[a-z] match any char between 'a' - 'z'\n[^ab] negate, match all not 'a' 'b'\n[:class:] match any char in class, available: alnum,alpha,ascii,blank,cntrl,digit,graph,lower, print,punct,space,upper,word,xdigit Wit extglob shell option enabled it is possible to have more powerful patterns. In the following pattern-list is one ore more patterns separated by | char. ?(pattern-list) matches zero or one occurrence of the given patterns\n*(pattern-list) matches zero or more occurrences of the given patterns\n+(pattern-list) matches one or more occurrences of the given patterns\n@(pattern-list) matches one of the given patterns\n!(pattern-list) matches anything except one of the given patterns Note: shopt -s extglob/shopt -u extglob to enable/disable extglob option.","breadcrumbs":"Misc » Pathname","id":"11","title":"Pathname"},"110":{"body":"For example .plt section: objdump -j .plt -d <elf>","breadcrumbs":"Binary » Disassemble section","id":"110","title":"Disassemble section"},"111":{"body":"nm [opts] <elf> -C demangle -u undefined only","breadcrumbs":"Binary » nm(1)","id":"111","title":"nm(1)"},"112":{"body":"","breadcrumbs":"Development","id":"112","title":"Development"},"113":{"body":"","breadcrumbs":"Development » c++filt(1)","id":"113","title":"c++filt(1)"},"114":{"body":"c++-filt <symbol_str>","breadcrumbs":"Development » Demangle symbol","id":"114","title":"Demangle symbol"},"115":{"body":"For example dynamic symbol table: readelf -W --dyn-syms <elf> | c++filt","breadcrumbs":"Development » Demangle stream","id":"115","title":"Demangle stream"},"116":{"body":"","breadcrumbs":"Development » c++","id":"116","title":"c++"},"117":{"body":"Force compile error to see what auto is deduced to. auto foo = bar(); // force compile error\ntypename decltype(foo)::_;","breadcrumbs":"Development » Type deduction","id":"117","title":"Type deduction"},"118":{"body":"","breadcrumbs":"Development » glibc","id":"118","title":"glibc"},"119":{"body":"Trace memory allocation and de-allocation to detect memory leaks. Need to call mtrace(3) to install the tracing hooks. If we can't modify the binary to call mtrace we can create a small shared library and pre-load it. // libmtrace.c\n#include <mcheck.h>\n__attribute__((constructor)) static void init_mtrace() { mtrace(); } Compile as: gcc -shared -fPIC -o libmtrace.so libmtrace.c To generate the trace file run: export MALLOC_TRACE=<file>\nLD_PRELOAD=./libmtrace.so <binary> Note : If MALLOC_TRACE is not set mtrace won't install tracing hooks. To get the results of the trace file: mtrace <binary> $MALLOC_TRACE","breadcrumbs":"Development » malloc tracer mtrace(3)","id":"119","title":"malloc tracer mtrace(3)"},"12":{"body":"Note: The trick with bash I/O redirection is to interpret from left-to-right. # stdout & stderr to file\ncommand >file 2>&1\n# equivalent\ncommand &>file # stderr to stdout & stdout to file\ncommand 2>&1 >file","breadcrumbs":"Misc » I/O redirection","id":"12","title":"I/O redirection"},"120":{"body":"Configure action when glibc detects memory error. export MALLOC_CHECK_=<N> Useful values: 1 print detailed error & continue\n3 print detailed error + stack trace + memory mappings & abort\n7 print simple error message + stack trace + memory mappings & abort","breadcrumbs":"Development » malloc check mallopt(3)","id":"120","title":"malloc check mallopt(3)"},"121":{"body":"","breadcrumbs":"Development » gcc(1)","id":"121","title":"gcc(1)"},"122":{"body":"","breadcrumbs":"Development » CLI","id":"122","title":"CLI"},"123":{"body":"While debugging can be helpful to just pre-process files. gcc -E [-dM] ... -E run only preprocessor -dM list only #define statements","breadcrumbs":"Development » Preprocessing","id":"123","title":"Preprocessing"},"124":{"body":"","breadcrumbs":"Development » Builtins","id":"124","title":"Builtins"},"125":{"body":"Give the compiler a hint which branch is hot, so it can lay out the code accordingly to reduce number of jump instructions. See on compiler explorer . echo \"\nextern void foo();\nextern void bar();\nvoid run0(int x) { if (__builtin_expect(x,0)) { foo(); } else { bar(); }\n}\nvoid run1(int x) { if (__builtin_expect(x,1)) { foo(); } else { bar(); }\n}\n\" | gcc -O2 -S -masm=intel -o /dev/stdout -xc - Will generate something similar to the following. run0: bar is on the path without branch run1: foo is on the path without branch run0: test edi, edi jne .L4 xor eax, eax jmp bar\n.L4: xor eax, eax jmp foo\nrun1: test edi, edi je .L6 xor eax, eax jmp foo\n.L6: xor eax, eax jmp bar","breadcrumbs":"Development » __builtin_expect(expr, cond)","id":"125","title":"__builtin_expect(expr, cond)"},"126":{"body":"","breadcrumbs":"Development » ld.so(8)","id":"126","title":"ld.so(8)"},"127":{"body":"LD_PRELOAD=<l_so> colon separated list of libso's to be pre loaded LD_DEBUG=<opts> comma separated list of debug options =help list available options =libs show library search path =files processing of input files =symbols show search path for symbol lookup =bindings show against which definition a symbol is bound","breadcrumbs":"Development » Environment Variables","id":"127","title":"Environment Variables"},"128":{"body":"Libraries specified in LD_PRELOAD are loaded from left-to-right but initialized from right-to-left. > ldd ./main >> libc.so.6 => /usr/lib/libc.so.6 > LD_PRELOAD=liba.so:libb.so ./main --> preloaded in this order <-- initialized in this order The preload order determines: the order libraries are inserted into the link map the initialization order for libraries For the example listed above the resulting link map will look like the following: +------+ +------+ +------+ +------+ | main | -> | liba | -> | libb | -> | libc | +------+ +------+ +------+ +------+ This can be seen when running with LD_DEBUG=files: > LD_DEBUG=files LD_PRELOAD=liba.so:libb.so ./main # load order (-> determines link map) >> file=liba.so [0]; generating link map >> file=libb.so [0]; generating link map >> file=libc.so.6 [0]; generating link map # init order >> calling init: /usr/lib/libc.so.6 >> calling init: <path>/libb.so >> calling init: <path>/liba.so >> initialize program: ./main To verify the link map order we let ld.so resolve the memcpy(3) libc symbol (used in main ) dynamically, while enabling LD_DEBUG=symbols,bindings to see the resolving in action. > LD_DEBUG=symbols,bindings LD_PRELOAD=liba.so:libb.so ./main >> symbol=memcpy; lookup in file=./main [0] >> symbol=memcpy; lookup in file=<path>/liba.so [0] >> symbol=memcpy; lookup in file=<path>/libb.so [0] >> symbol=memcpy; lookup in file=/usr/lib/libc.so.6 [0] >> binding file ./main [0] to /usr/lib/libc.so.6 [0]: normal symbol `memcpy' [GLIBC_2.14]","breadcrumbs":"Development » LD_PRELOAD: Initialization Order and Link Map","id":"128","title":"LD_PRELOAD: Initialization Order and Link Map"},"129":{"body":"Dynamic linking basically works via one indirect jump. It uses a combination of function trampolines (.plt section) and a function pointer table (.got.plt section). On the first call the trampoline sets up some metadata and then jumps to the ld.so runtime resolve function, which in turn patches the table with the correct function pointer. .plt ....... procedure linkage table, contains function trampolines, usually located in code segment (rx permission) .got.plt ... global offset table for .plt, holds the function pointer table Using radare2 we can analyze this in more detail: [0x00401040]> pd 4 @ section..got.plt ;-- section..got.plt: ;-- .got.plt: ; [22] -rw- section size 32 named .got.plt ;-- _GLOBAL_OFFSET_TABLE_: [0] 0x00404000 .qword 0x0000000000403e10 ; section..dynamic [1] 0x00404008 .qword 0x0000000000000000 ; CODE XREF from section..plt @ +0x6 [2] 0x00404010 .qword 0x0000000000000000 ;-- reloc.puts: ; CODE XREF from sym.imp.puts @ 0x401030 [3] 0x00404018 .qword 0x0000000000401036 ; RELOC 64 puts [0x00401040]> pd 6 @ section..plt ;-- section..plt: ;-- .plt: ; [12] -r-x section size 32 named .plt ┌─> 0x00401020 ff35e22f0000 push qword [0x00404008] ╎ 0x00401026 ff25e42f0000 jmp qword [0x00404010] ╎ 0x0040102c 0f1f4000 nop dword [rax] ┌ 6: int sym.imp.puts (const char *s); └ ╎ 0x00401030 ff25e22f0000 jmp qword [reloc.puts] ╎ 0x00401036 6800000000 push 0 └─< 0x0040103b e9e0ffffff jmp sym..plt At address 0x00401030 in the .plt section we see the indirect jump for puts using the function pointer in _GLOBAL_OFFSET_TABLE_[3] (GOT). GOT[3] initially points to instruction after the puts trampoline 0x00401036. This pushes the relocation index 0 and then jumps to the first trampoline 0x00401020. The first trampoline jumps to GOT[2] which will be filled at program startup by the ld.so with its resolve function. The ld.so resolve function fixes the relocation referenced by the relocation index pushed by the puts trampoline. The relocation entry at index 0 tells the resolve function which symbol to search for and where to put the function pointer: > readelf -r <main> >> Relocation section '.rela.plt' at offset 0x4b8 contains 1 entry: >> Offset Info Type Sym. Value Sym. Name + Addend >> 000000404018 000200000007 R_X86_64_JUMP_SLO 0000000000000000 puts@GLIBC_2.2.5 + 0 As we can see the offset from relocation at index 0 points to GOT[3].","breadcrumbs":"Development » Dynamic Linking (x86_64)","id":"129","title":"Dynamic Linking (x86_64)"},"13":{"body":"j>&i Duplicate fd i to fd j, making j a copy of i. See dup2(2) . Example: command 2>&1 >file duplicate fd 1 to fd 2, effectively redirecting stderr to stdout redirect stdout to file","breadcrumbs":"Misc » Explanation","id":"13","title":"Explanation"},"14":{"body":"The complete builtin is used to interact with the completion system. complete # print currently installed completion handler\ncomplete -F <func> <cmd> # install <func> as completion handler for <cmd>\ncomplete -r <cmd> # uninstall completion handler for <cmd> Variables available in completion functions: # in\n$1 # <cmd>\n$2 # current word\n$3 # privous word COMP_WORDS # array with current command line words\nCOMP_CWORD # index into COMP_WORDS with current cursor position # out\nCOMPREPLY # array with possible completions The compgen builtin is used to generate possible matches by comparing word against words generated by option. compgen [option] [word] # usefule options:\n# -W <list> specify list of possible completions\n# -d generate list with dirs\n# -f generate list with files\n# -u generate list with users\n# -e generate list with exported variables # compare \"f\" against words \"foo\" \"foobar\" \"bar\" and generate matches\ncompgen -W \"foo foobar bar\" \"f\" # compare \"hom\" against file/dir names and generate matches\ncompgen -d -f \"hom\"","breadcrumbs":"Misc » Completion","id":"14","title":"Completion"},"15":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -h The completion handler could be implemented as follows: function _foo() { local curr=$2 local prev=$3 local opts=\"-c -s -f -h\" case $prev in -c) COMPREPLY=( $(compgen -W \"green red blue\" -- $curr) );; -s) COMPREPLY=( $(compgen -W \"low high\" -- $curr) );; -f) COMPREPLY=( $(compgen -f -- $curr) );; *) COMPREPLY=( $(compgen -W \"$opts\" -- $curr) );; esac\n} complete -F _foo foo","breadcrumbs":"Misc » Example","id":"15","title":"Example"},"16":{"body":"","breadcrumbs":"Misc » fish(1)","id":"16","title":"fish(1)"},"17":{"body":"Shift-Tab ........... tab-completion with search Alt-Up / Alt-Down ... search history with token under the cursor Alt-l ............... list content of dir under cursor Alt-p ............... append '2>&1 | less;' to current cmdline","breadcrumbs":"Misc » keymaps","id":"17","title":"keymaps"},"18":{"body":"status print-stack-trace .. prints function stacktrace (can be used in scripts) breakpoint ................ halt script execution and gives shell (C-d | exit to continue)","breadcrumbs":"Misc » debug","id":"18","title":"debug"},"19":{"body":"Terminology: session is a collection of pseudo terminals which can have multiple windows window uses the entire screen and can be split into rectangular panes pane is a single pseudo terminal instance","breadcrumbs":"Misc » tmux(1)","id":"19","title":"tmux(1)"},"2":{"body":"","breadcrumbs":"Misc » Completion","id":"2","title":"Completion"},"20":{"body":"# Session\ntmux creates new session\ntmux ls list running sessions\ntmux kill-session -t <s> kill running session <s>\ntmux attach -t <s> [-d] attach to session <s>, detach other clients [-d]\ntmux detach -s <s> detach all clients from session <s> # Environment\ntmux showenv -g show global tmux environment variables\ntmux setenv -g <var> <val> set variable in global tmux env # Misc\ntmux source-file <file> source config <file>\ntmux lscm list available tmux commnds\ntmux show -g show global tmux options\ntmux display <msg> display message in tmux status line","breadcrumbs":"Misc » Tmux cli","id":"20","title":"Tmux cli"},"21":{"body":"# Session\ntmux list-sessions -F '#S' list running sessions, only IDs # Window\ntmux list-windows -F '#I' -t <s> list window IDs for session <s>\ntmux selectw -t <s>:<w> select window <w> in session <s> # Pane\ntmux list-panes -F '#P' -t <s>:<w> list pane IDs for window <w> in session <s>\ntmux selectp -t <s>:<w>.<p> select pane <p> in window <w> in session <s> # Run commands\ntmux send -t <s>:<w>.<p> \"ls\" C-m send cmds/keys to pane\ntmux run -t <p> <sh-cmd> run shell command <sh-cmd> in background and report output on pane -t <p> For example cycle through all panes in all windows in all sessions: # bash\nfor s in $(tmux list-sessions -F '#S'); do for w in $(tmux list-windows -F '#I' -t $s); do for p in $(tmux list-panes -F '#P' -t $s:$w); do echo $s:$w.$p done done\ndone","breadcrumbs":"Misc » Scripting","id":"21","title":"Scripting"},"22":{"body":"prefix d detach from current session\nprefix c create new window\nprefix w open window list\nprefix $ rename session\nprefix , rename window\nprefix . move current window Following bindings are specific to my tmux.conf : C-s prefix # Panes\nprefix s horizontal split\nprefix v vertical split\nprefix f toggle maximize/minimize current pane # Movement\nprefix Tab toggle between window prefix h move to pane left\nprefix j move to pane down\nprefix k move to pane up\nprefix l move to pane right # Resize\nprefix C-h resize pane left\nprefix C-j resize pane down\nprefix C-k resize pane up\nprefix C-l resize pane right # Copy/Paste\nprefix C-v enter copy mode\nprefix C-p paste yanked text\nprefix C-b open copy-buffer list # In Copy Mode\nv enable visual mode\ny yank selected text","breadcrumbs":"Misc » Bindings","id":"22","title":"Bindings"},"23":{"body":"To enter command mode prefix :. Some useful commands are: setw synchronize-panes on/off enables/disables synchronized input to all panes\nlist-keys -t vi-copy list keymaps for vi-copy mode","breadcrumbs":"Misc » Command mode","id":"23","title":"Command mode"},"24":{"body":"","breadcrumbs":"Misc » git(1)","id":"24","title":"git(1)"},"25":{"body":"git add -p [<file>] ............ partial staging (interactive)","breadcrumbs":"Misc » staging","id":"25","title":"staging"},"26":{"body":"git remote -v .................. list remotes verbose (with URLs) git remote show [-n] <remote> .. list info for <remote> (like remote HEAD, remote branches, tracking mapping)","breadcrumbs":"Misc » Remote","id":"26","title":"Remote"},"27":{"body":"git branch [-a] ................ list available branches; -a to include remote branches git branch -vv ................. list branch & annotate with head sha1 & remote tracking branch git branch <bname> ............. create branch with name <bname> git checkout <bname> ........... switch to branch with name <bname> git push -u origin <rbname> .... push branch to origin (or other remote), and setup <rbname> as tracking branch","breadcrumbs":"Misc » Branching","id":"27","title":"Branching"},"28":{"body":"git reset [opt] <ref|commit> opt: --mixed .................... resets index, but not working tree --hard ..................... matches the working tree and index to that of the tree being switched to any changes to tracked files in the working tree since <commit> are lost git reset HEAD <file> .......... remove file from staging git reset --soft HEAD~1 ........ delete most recent commit but keep work git reset --hard HEAD~1 ........ delete most recent commit and delete work","breadcrumbs":"Misc » Resetting","id":"28","title":"Resetting"},"29":{"body":"git tag -a <tname> -m \"descr\" ........ creates an annotated tag (full object containing tagger, date, ...) git tag -l ........................... list available tags git checkout tag/<tname> ............. checkout specific tag git checkout tag/<tname> -b <bname> .. checkout specific tag in a new branch","breadcrumbs":"Misc » Tags","id":"29","title":"Tags"},"3":{"body":"Completion functions are provided via files and need to be placed in a location covered by $fpath. By convention the completion files are names as _<CMD>. A completion skeleton for the command foo, stored in _foo #compdef _foo foo function _foo() { ...\n} Alternatively one can install a completion function explicitly by calling compdef <FUNC> <CMD>.","breadcrumbs":"Misc » Installation","id":"3","title":"Installation"},"30":{"body":"git diff HEAD:<fname> origin/HEAD:<fname> ... diff files for different refs git diff -U$(wc -l <fname>) <fname> ......... shows complete file with diffs instead of usual diff snippets","breadcrumbs":"Misc » Diff","id":"30","title":"Diff"},"31":{"body":"git log --oneline .... shows log in single line per commit -> alias for '--pretty=oneline --abbrev-commit' git log --graph ...... text based graph of commit history git log --decorate ... decorate log with REFs","breadcrumbs":"Misc » Log","id":"31","title":"Log"},"32":{"body":"git log -p <file> ......... show commit history + diffs for <file> git log --oneline <file> .. show commit history for <file> in compact format","breadcrumbs":"Misc » File history","id":"32","title":"File history"},"33":{"body":"git format-patch <opt> <since>/<revision range> opt: -N ................... use [PATCH] instead [PATCH n/m] in subject when generating patch description (for patches spanning multiple commits) --start-number <n> ... start output file generation with <n> as start number instead '1' since spcifier: -3 .................. e.g: create a patch from last three commits <commit hash> ....... create patch with commits starting after <commit hash> git am <patch> ......... apply patch and create a commit for it git apply --stat <PATCH> ... see which files the patch would change git apply --check <PATCH> .. see if the patch can be applied cleanly git apply <PATCH> .......... apply the patch locally without creating a commit # eg: generate patches for each commit from initial commit on git format-patch -N $(git rev-list --max-parents=0 HEAD) # generate single patch file from a certain commit/ref git format-patch <COMMIT/REF> --stdout > my-patch.patch","breadcrumbs":"Misc » Patching","id":"33","title":"Patching"},"34":{"body":"git submodule add <url> [<path>] .......... add new submodule to current project git clone --recursive <url> ............... clone project and recursively all submodules (same as using 'git submodule update --init --recursive' after clone) git submodule update --init --recursive ... checkout submodules recursively using the commit listed in the super-project (in detached HEAD) git submodule update --remote <submod> .... fetch & merge remote changes for <submod>, this will pull origin/HEAD or a branch specified for the submodule git diff --submodule ...................... show commits that are part of the submodule diff","breadcrumbs":"Misc » Submodules","id":"34","title":"Submodules"},"35":{"body":"git ls-tree [-r] <ref> .... show git tree for <ref>, -r to recursively ls sub-trees git show <obj> ............ show <obj> git cat-file -p <obj> ..... print content of <obj>","breadcrumbs":"Misc » Inspection","id":"35","title":"Inspection"},"36":{"body":"HEAD ........ last commit HEAD~1 ...... last commit-1 HEAD~N ...... last commit-N (linear backwards when in tree structure, check difference between HEAD^ and HEAD~) git rev-list --max-parents=0 HEAD ........... first commit","breadcrumbs":"Misc » Revision Specifier","id":"36","title":"Revision Specifier"},"37":{"body":"awk [opt] program [input] -F <sepstr> field separator string (can be regex) program awk program input file or stdin if not file given","breadcrumbs":"Misc » awk(1)","id":"37","title":"awk(1)"},"38":{"body":"Input is processed in two stages: Splitting input into a sequence of records. By default split at newline character, but can be changed via the builtin RS variable. Splitting a record into fields. By default strings without whitespace, but can be changed via the builtin variable FS or command line option -F. Fields are accessed as follows: $0 whole record $1 field one $2 field two ...","breadcrumbs":"Misc » Input processing","id":"38","title":"Input processing"},"39":{"body":"An awk program is composed of pairs of the form: pattern { action } The program is run against each record in the input stream. If a pattern matches a record the corresponding action is executed and can access the fields. INPUT | v\nrecord ----> ∀ pattern matched | | v v\nfields ----> run associated action Any valid awk expr can be a pattern.","breadcrumbs":"Misc » Program","id":"39","title":"Program"},"4":{"body":"Following variables are available in Completion functions: $words # array with command line in words\n$#words # number words\n$CURRENT # index into $words for cursor position\n$words[CURRENT-1] # previous word (relative to cursor position)","breadcrumbs":"Misc » Completion Variables","id":"4","title":"Completion Variables"},"40":{"body":"awk provides two special patterns, BEGIN and END, which can be used multiple times. Actions with those patterns are executed exactly once . BEGIN actions are run before processing the first record END actions are run after processing the last record","breadcrumbs":"Misc » Special pattern","id":"40","title":"Special pattern"},"41":{"body":"RS record separator : first char is the record separator, by default FS field separator : regex to split records into fields, by default NR number record : number of current record","breadcrumbs":"Misc » Special variables","id":"41","title":"Special variables"},"42":{"body":"printf \"fmt\", args... Print format string, args are comma separated. %s string %d decimal %x hex %f float Width can be specified as %Ns, this reserves N chars for a string. For floats one can use %N.Mf, N is the total number including . and M. strftime(\"fmt\") Print time stamp formatted by fmt. %Y full year (eg 2020) %m month (01-12) %d day (01-31) %F alias for %Y-%m-%d %H hour (00-23) %M minute (00-59) %S second (00-59) %T alias for %H:%M:%S","breadcrumbs":"Misc » Special statements & functions","id":"42","title":"Special statements & functions"},"43":{"body":"","breadcrumbs":"Misc » Examples","id":"43","title":"Examples"},"44":{"body":"awk 'NR%2 == 0 { print $0 }' <file> The pattern NR%2 == 0 matches every second record and the action { print $0 } prints the whole record.","breadcrumbs":"Misc » Filter records","id":"44","title":"Filter records"},"45":{"body":"# /proc/<pid>/status\n# Name: cat\n# ...\n# VmRSS: 516 kB\n# ... for f in /proc/*/status; do cat $f | awk ' /^VmRSS/ { rss = $2/1024 } /^Name/ { name = $2 } END { printf \"%16s %6d MB\\n\", name, rss }';\ndone | sort -k2 -n We capture values from VmRSS and Name into variables and print them at the END once processing all records is done.","breadcrumbs":"Misc » Capture in variables","id":"45","title":"Capture in variables"},"46":{"body":"cat /proc/1/status | awk ' /^Pid/ { \"ps --no-header -o user \" $2 | getline user; print user }' We build a ps command line and capture the first line of the processes output in the user variable and then print it.","breadcrumbs":"Misc » Run shell command and capture output","id":"46","title":"Run shell command and capture output"},"47":{"body":"","breadcrumbs":"Misc » emacs(1)","id":"47","title":"emacs(1)"},"48":{"body":"C-h ? list available help modes C-h f describe function C-h v describe variable C-h c <KEY> print command bound to <KEY> C-h k <KEY> describe command bound to <KEY> C-h b list buffer local key-bindings <kseq> C-h list possible key-bindings with <kseq> eg C-x C-h -> list key-bindings beginning with C-x","breadcrumbs":"Misc » help","id":"48","title":"help"},"49":{"body":"package-refresh-contents refresh package list package-list-packages list available/installed packages","breadcrumbs":"Misc » package manager","id":"49","title":"package manager"},"5":{"body":"_describe simple completion, just words + description _arguments sophisticated completion, allow to specify actions Completion with _describe _describe MSG COMP MSG simple string with header message COMP array of completions where each entry is \"opt:description\" function _foo() { local -a opts opts=('bla:desc for bla' 'blu:desc for blu') _describe 'foo-msg' opts\n}\ncompdef _foo foo foo <TAB><TAB> -- foo-msg --\nbla -- desc for bla\nblu -- desc for blu Completion with _arguments _arguments SPEC [SPEC...] where SPEC can have one of the following forms: OPT[DESC]:MSG:ACTION N:MSG:ACTION Available actions (op1 op2) list possible matches\n->VAL set $state=VAL and continue, `$state` can be checked later in switch case\nFUNC call func to generate matches\n{STR} evaluate `STR` to generate matches","breadcrumbs":"Misc » Completion Functions","id":"5","title":"Completion Functions"},"50":{"body":"C-x 0 kill focused window C-x 1 kill all other windows C-x 2 split horizontal C-x 3 split vertical","breadcrumbs":"Misc » window","id":"50","title":"window"},"51":{"body":"C-<SPACE> set start mark to select text M-w copy selected text C-w kill selected text C-y paste selected text M-y cycle through kill-ring","breadcrumbs":"Misc » yank/paste","id":"51","title":"yank/paste"},"52":{"body":"C-x <SPC> activate rectangle-mark-mode M-x string-rectangle <RET> insert text in marked rect","breadcrumbs":"Misc » block/rect","id":"52","title":"block/rect"},"53":{"body":"C-x h mark whole buffer (mark-whole-buffer) M-x delete-matching-line <RET> delete lines matching regex M-x % search & replace region (query-replace) C-M-x % search & replace regex (query-replace-regexp)","breadcrumbs":"Misc » mass edit","id":"53","title":"mass edit"},"54":{"body":"M-x find-grep <RET> run find-grep result in *grep* buffer n/p navigate next/previous match in *grep* buffer","breadcrumbs":"Misc » grep","id":"54","title":"grep"},"55":{"body":"M-x lisp-interaction-mode activate lisp mode C-M-x evaluate top expr under cursor C-x C-e eval-last-sexp C-u C-x C-e eval-last-sexp and prints result in current buffer","breadcrumbs":"Misc » lisp mode","id":"55","title":"lisp mode"},"56":{"body":"C-x n n show only focused region (narrow) C-x n w show whole buffer (wide)","breadcrumbs":"Misc » narrow","id":"56","title":"narrow"},"57":{"body":"M-up/M-down re-arrange items in same hierarchy M-left/M-right change item hierarchy C-RET create new item below current C-S-RET create new TODO item below current S-left/S-right cycle TODO states","breadcrumbs":"Misc » org","id":"57","title":"org"},"58":{"body":"<s TAB generate a source block C-c ' edit source block (in lang specific buffer) C-c C-c eval source block","breadcrumbs":"Misc » org source","id":"58","title":"org source"},"59":{"body":"","breadcrumbs":"Misc » gdb(1)","id":"59","title":"gdb(1)"},"6":{"body":"Skeleton to copy/paste for writing simple completions. Assume a program foo with the following interface: foo -c green|red|blue -s low|high -f <file> -d <dir> -h The completion handler could be implemented as follows in a file called _foo: #compdef _foo foo function _foo_color() { local colors=() colors+=('green:green color') colors+=('red:red color') colors+=('blue:blue color') _describe \"color\" colors\n} function _foo() { _arguments \\ \"-c[define color]:color:->s_color\" \\ \"-s[select sound]:color:(low high)\" \\ \"-f[select file]:file:_files\" \\ \"-d[select dir]:fir:_files -/\" \\ \"-h[help]\" case $state in s_color) _foo_color;; esac\n}","breadcrumbs":"Misc » Example","id":"6","title":"Example"},"60":{"body":"gdb [opts] [prg [-c coredump | -p pid]] gdb [opts] --args prg <prg-args> opts: -p <pid> attach to pid -c <coredump> use <coredump> -x <file> execute script <file> before prompt -ex <cmd> execute command <cmd> before prompt --tty <tty> set I/O tty for debugee","breadcrumbs":"Misc » CLI","id":"60","title":"CLI"},"61":{"body":"tty <tty> Set <tty> as tty for debugee. Make sure nobody reads from target tty, easiest is to spawn a shell and run following in target tty: > while true; do sleep 1024; done set follow-fork-mode <child | parent> Specify which process to follow when debuggee makes a fork(2) syscall. sharedlibrary [<regex>] Load symbols of shared libs loaded by debugee. Optionally use <regex> to filter libs for symbol loading. break [-qualified] <sym> thread <tnum> Set a breakpoint only for a specific thread. -qualified: Tred <sym> as fully qualified symbol (quiet handy to set breakpoints on C symbols in C++ contexts) rbreak <regex> Set breakpoints matching <regex>, where matching internally is done on: .*<regex>.* command [<bp_list>] Define commands to run after breakpoint hit. If <bp_list> is not specified attach command to last created breakpoint. Command block terminated with 'end' token. <bp_list>: Space separates list, eg 'command 2 5-8' to run command for breakpoints: 2,5,6,7,8. info functions [<regex>] List functions matching <regex>. List all functions if no <regex> provided. info variables [<regex>] List variables matching <regex>. List all variables if no <regex> provided. info handle [<signal>] Print how to handle <signal>. If no <signal> specified print for all signals. handle <signal> <action> Configure how gdb handles <signal> sent to debugee. <action>: stop/nostop Catch signal in gdb and break. print/noprint Print message when gdb catches signal. pass/nopass Pass signal down to debugee. catch signal <signal> Create a catchpoint for <signal>.","breadcrumbs":"Misc » Interactive usage","id":"61","title":"Interactive usage"},"62":{"body":"Gdb allows to create & document user commands as follows: define <cmd> # cmds end document <cmd> # docu end To get all user commands or documentations one can use: help user-defined help <cmd>","breadcrumbs":"Misc » User commands (macros)","id":"62","title":"User commands (macros)"},"63":{"body":"Gdb allows to create two types of command hooks hook- will be run before <cmd> hookpost- will be run after <cmd> define hook-<cmd> # cmds end define hookpost-<cmd> # cmds end","breadcrumbs":"Misc » Hooks","id":"63","title":"Hooks"},"64":{"body":"","breadcrumbs":"Misc » Examples","id":"64","title":"Examples"},"65":{"body":"This creates a catchpoint for the SIGSEGV signal and attached the command to it. catch signal SIGSEGV command bt c end","breadcrumbs":"Misc » Catch SIGSEGV and execute commands","id":"65","title":"Catch SIGSEGV and execute commands"},"66":{"body":"gdb --batch -ex 'thread 1' -ex 'bt' -p <pid>","breadcrumbs":"Misc » Run backtrace on thread 1 (batch mode)","id":"66","title":"Run backtrace on thread 1 (batch mode)"},"67":{"body":"To script gdb add commands into a file and pass it to gdb via -x. For example create run.gdb: set pagination off break mmap command info reg rdi rsi rdx bt c end #initial drop c This script can be used as: gdb --batch -x ./run.gdb -p <pid>","breadcrumbs":"Misc » Script gdb for automating debugging sessions","id":"67","title":"Script gdb for automating debugging sessions"},"68":{"body":"","breadcrumbs":"Misc » Know Bugs","id":"68","title":"Know Bugs"},"69":{"body":"When using finish inside a command block, commands after finish are not executed. To workaround that bug one can create a wrapper function which calls finish. define handler bt finish info reg rax end command handler end","breadcrumbs":"Misc » Workaround command + finish bug","id":"69","title":"Workaround command + finish bug"},"7":{"body":"","breadcrumbs":"Misc » bash(1)","id":"7","title":"bash(1)"},"70":{"body":"","breadcrumbs":"Misc » radare2(1)","id":"70","title":"radare2(1)"},"71":{"body":"pd <n> [@ <addr>] # print disassembly for <n> instructions # with optional temporary seek to <addr>","breadcrumbs":"Misc » print","id":"71","title":"print"},"72":{"body":"fs # list flag-spaces fs <fs> # select flag-space <fs> f # print flags of selected flag-space","breadcrumbs":"Misc » flags","id":"72","title":"flags"},"73":{"body":"?*~<kw> # '?*' list all commands and '~' grep for <kw> ?*~... # '..' less mode /'...' interactive search","breadcrumbs":"Misc » help","id":"73","title":"help"},"74":{"body":"> r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr> oob <addr> # reopen current file at <baddr>","breadcrumbs":"Misc » relocation","id":"74","title":"relocation"},"75":{"body":"","breadcrumbs":"Resource analysis & monitor","id":"75","title":"Resource analysis & monitor"},"76":{"body":"lsof -a ......... AND slection filters instead ORing (OR: default) -p <pid> ... filter by <pid> +fg ........ show file flags for file descripros -n ......... don't convert network addr to hostnames -P ......... don't convert network port to service names -i <@h[:p]>. show connections to h (hostname|ip addr) with optional port p file flags: R/W/RW ..... read/write/read-write CR ......... create AP ......... append TR ......... truncate","breadcrumbs":"Resource analysis & monitor » lsof(8)","id":"76","title":"lsof(8)"},"77":{"body":"","breadcrumbs":"Resource analysis & monitor » Examples","id":"77","title":"Examples"},"78":{"body":"Show open files with file flags for process: lsof +fg -p <pid>","breadcrumbs":"Resource analysis & monitor » File flags","id":"78","title":"File flags"},"79":{"body":"Show open tcp connections for $USER: lsof -a -u $USER -i tcp Note : -a ands the results. If -a is not given all open files matching $USER and all tcp connections are listed ( ored ).","breadcrumbs":"Resource analysis & monitor » Open TCP connections","id":"79","title":"Open TCP connections"},"8":{"body":"","breadcrumbs":"Misc » Expansion","id":"8","title":"Expansion"},"80":{"body":"Show open connections to localhost for $USER: lsof -a -u $USER -i @localhost","breadcrumbs":"Resource analysis & monitor » Open connection to specific host","id":"80","title":"Open connection to specific host"},"81":{"body":"pidstat [opt] [interval] [cont] -U [user] show username instead UID, optionally only show for user -r memory statistics -d I/O statistics -h single line per process and no lines with average","breadcrumbs":"Resource analysis & monitor » pidstat(1)","id":"81","title":"pidstat(1)"},"82":{"body":"pidstat -r -p <pid> [interval] [count] minor_pagefault: Happens when the page needed is already in memory but not allocated to the faulting process, in that case the kernel only has to create a new page-table entry pointing to the shared physical page (not required to load a memory page from disk). major_pagefault: Happens when the page needed is NOT in memory, the kernel has to create a new page-table entry and populate the physical page (required to load a memory page from disk).","breadcrumbs":"Resource analysis & monitor » Page fault and memory utilization","id":"82","title":"Page fault and memory utilization"},"83":{"body":"pidstat -d -p <pid> [interval] [count]","breadcrumbs":"Resource analysis & monitor » I/O statistics","id":"83","title":"I/O statistics"},"84":{"body":"pgrep [opts] <pattern> -n only list newest matching process -u <usr> only show matching for user <usr> -l additionally list command -a additionally list command + arguments","breadcrumbs":"Resource analysis & monitor » pgrep(1)","id":"84","title":"pgrep(1)"},"85":{"body":"For example attach gdb to newest zsh process from $USER. gdb -p $(pgrep -n -u $USER zsh)","breadcrumbs":"Resource analysis & monitor » Debug newest process","id":"85","title":"Debug newest process"},"86":{"body":"pmap <pid> Dump virtual memory map of process. Compared to /proc/<pid>/maps it shows the size of the mappings.","breadcrumbs":"Resource analysis & monitor » pmap(1)","id":"86","title":"pmap(1)"},"87":{"body":"pstack <pid> Dump stack for all threads of process.","breadcrumbs":"Resource analysis & monitor » pstack(1)","id":"87","title":"pstack(1)"},"88":{"body":"","breadcrumbs":"Trace and Profile","id":"88","title":"Trace and Profile"},"89":{"body":"strace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -s <size> ... max string size, truncate of longer (default: 32) -e <expr> ... expression for trace filtering -o <file> ... log output into <file> -c .......... dump syscall statitics at the end <expr>: trace=syscall[,syscall] .... trace only syscall listed trace=file ................. trace all syscall that take a filename as arg trace=process .............. trace process management related syscalls trace=signal ............... trace signal related syscalls signal ..................... trace signals delivered to the process","breadcrumbs":"Trace and Profile » strace(1)","id":"89","title":"strace(1)"},"9":{"body":"# generate sequence from n to m\n{n..m}\n# generate sequence from n to m step by s\n{n..m..s} # expand cartesian product\n{a,b}{c,d}","breadcrumbs":"Misc » Generator","id":"9","title":"Generator"},"90":{"body":"Trace open(2) & socket(2) syscalls for a running process + child processes: strace -f -e trace=open,socket -p <pid> Trace signals delivered to a running process: strace -f -e signal -p <pid>","breadcrumbs":"Trace and Profile » Examples","id":"90","title":"Examples"},"91":{"body":"ltrace [opts] [prg] -f .......... follow child processes on fork(2) -p <pid> .... attach to running process -o <file> ... log output into <file> -l <filter> . show who calls into lib matched by <filter> -C .......... demangle","breadcrumbs":"Trace and Profile » ltrace(1)","id":"91","title":"ltrace(1)"},"92":{"body":"List which program/libs call into libstdc++: ltrace -l '*libstdc++*' -C -o ltrace.log ./main","breadcrumbs":"Trace and Profile » Example","id":"92","title":"Example"},"93":{"body":"perf list show supported hw/sw events perf stat -p <pid> .. show stats for running process -I <ms> ... show stats periodically over interval <ms> -e <ev> ... filter for events perf top -p <pid> .. show stats for running process -F <hz> ... sampling frequency -K ........ hide kernel threads perf record -p <pid> ............... record stats for running process -F <hz> ................ sampling frequency --call-graph <method> .. [fp, dwarf, lbr] method how to caputre backtrace fp : use frame-pointer, need to compile with -fno-omit-frame-pointer dwarf: use .cfi debug information lbr : use hardware last branch record facility -g ..................... short-hand for --call-graph fp -e <ev> ................ filter for events perf report -n .................... annotate symbols with nr of samples --stdio ............... report to stdio, if not presen tui mode -g graph,0.5,caller ... show caller based call chains with value >0.5 Useful <ev>: page-faults minor-faults major-faults cpu-cycles` task-clock","breadcrumbs":"Trace and Profile » perf(1)","id":"93","title":"perf(1)"},"94":{"body":"","breadcrumbs":"Trace and Profile » Flamegraph","id":"94","title":"Flamegraph"},"95":{"body":"perf record -g -e cpu-cycles -p <pid>\nperf script | FlameGraph/stackcollapse-perf.pl | FlameGraph/flamegraph.pl > cycles-flamegraph.svg","breadcrumbs":"Trace and Profile » Flamegraph with single event trace","id":"95","title":"Flamegraph with single event trace"},"96":{"body":"perf record -g -e cpu-cycles,page-faults -p <pid>\nperf script --per-event-dump\n# fold & generate as above","breadcrumbs":"Trace and Profile » Flamegraph with multiple event traces","id":"96","title":"Flamegraph with multiple event traces"},"97":{"body":"operf -g -p <pid> -g ...... caputre call-graph information opreport [opt] FILE show time spent per binary image -l ...... show time spent per symbol -c ...... show callgraph information (see below) -a ...... add column with time spent accumulated over child nodes ophelp show supported hw/sw events","breadcrumbs":"Trace and Profile » OProfile","id":"97","title":"OProfile"},"98":{"body":"# statistics of process run\n/usr/bin/time -v <cmd>","breadcrumbs":"Trace and Profile » /usr/bin/time(1)","id":"98","title":"/usr/bin/time(1)"},"99":{"body":"","breadcrumbs":"Binary","id":"99","title":"Binary"}},"length":130,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"3":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"42":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":6,"docs":{"102":{"tf":1.4142135623730951},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"129":{"tf":1.0},"42":{"tf":1.0}}},"5":{"df":1,"docs":{"102":{"tf":1.0}}},"6":{"df":2,"docs":{"102":{"tf":1.0},"45":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"101":{"tf":1.0}}},"6":{"df":1,"docs":{"101":{"tf":1.0}}},"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.0}}},"5":{"1":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":1,"docs":{"61":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.0}},"f":{"df":1,"docs":{"101":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"x":{",":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":2.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":1,"docs":{"11":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"128":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"52":{"tf":1.0},"55":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"102":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"31":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"17":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"76":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}},"y":{"df":5,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"66":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"11":{"tf":1.4142135623730951},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":2.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":3.4641016151377544},"29":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"61":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"22":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":2.0},"102":{"tf":1.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"15":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":3.0},"48":{"tf":3.3166247903554},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":2.23606797749979},"129":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"127":{"tf":1.0},"42":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":2.0},"15":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":3.4641016151377544},"15":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"18":{"tf":1.0},"5":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"22":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":11,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"18":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"117":{"tf":1.0}},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"119":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"30":{"tf":2.449489742783178},"32":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"36":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"6":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":2.0},"115":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"125":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":2.0}},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"10":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"127":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"58":{"tf":1.0}},"u":{"df":2,"docs":{"5":{"tf":1.0},"55":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"10":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":3,"docs":{"39":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"13":{"tf":2.0}}},"df":16,"docs":{"101":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"129":{"tf":1.0}}},"t":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"44":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":2.23606797749979}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"72":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"6":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"5":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":3.3166247903554},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"20":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"33":{"tf":2.0},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"36":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"18":{"tf":1.0}},"n":{"df":3,"docs":{"11":{"tf":2.23606797749979},"37":{"tf":1.0},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"31":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"54":{"tf":2.23606797749979},"73":{"tf":1.0}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}},"l":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"108":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":2.8284271247461903},"53":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"48":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772}}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"63":{"tf":2.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.4142135623730951},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"d":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"119":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"129":{"tf":2.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}},"o":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":2.0},"34":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"25":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"61":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"125":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":2.0},"129":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"129":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.4142135623730951},"48":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1":{"tf":1.7320508075688772},"23":{"tf":1.0},"48":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"17":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"55":{"tf":1.4142135623730951},"61":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"57":{"tf":1.0}},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":3,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"b":{"df":1,"docs":{"128":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":3,"docs":{"127":{"tf":1.0},"61":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"d":{"c":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":3,"docs":{"108":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"t":{"df":28,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"123":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"14":{"tf":2.449489742783178},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":2.8284271247461903},"129":{"tf":1.0},"92":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}},"p":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"128":{"tf":2.8284271247461903},"26":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":2.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"109":{"tf":1.0},"28":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":2.0},"129":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"42":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"119":{"tf":1.0},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":1,"docs":{"35":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951}}},"df":6,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"11":{"tf":2.23606797749979},"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"5":{"tf":1.0}}},"2":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"15":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"20":{"tf":1.0},"38":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":3.0}}}}},"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":3.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":3.1622776601683795},"23":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"102":{"tf":1.0},"34":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}},"t":{"df":2,"docs":{"22":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":4.47213595499958}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"34":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":3.605551275463989},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":25,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"17":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":17,"docs":{"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"48":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":4.69041575982343},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"108":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"f":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"3":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"129":{"tf":2.0},"27":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"74":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"w":{"df":1,"docs":{"109":{"tf":1.0}}},"x":{"df":2,"docs":{"129":{"tf":1.0},"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":10,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"35":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"61":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":2.23606797749979},"35":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.0}},"f":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554}},"p":{"df":1,"docs":{"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"108":{"tf":1.0}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"4":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"108":{"tf":1.0},"129":{"tf":2.6457513110645907},"74":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"28":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"22":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":17,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"57":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"21":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.7320508075688772},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"33":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"129":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"51":{"tf":2.0},"72":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"38":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"df":1,"docs":{"23":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":20,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"61":{"tf":3.4641016151377544},"65":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"51":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"c":{"df":1,"docs":{"52":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"5":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":7,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"33":{"tf":2.0},"51":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"33":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":3,"docs":{"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"35":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":9,"docs":{"108":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"61":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951}}}},"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"79":{"tf":2.0}}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"23":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"20":{"tf":4.123105625617661},"21":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":8,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"k":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":2.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"63":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"63":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"r":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":2.0},"62":{"tf":2.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"5":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"1":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"119":{"tf":1.0},"125":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"11":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"14":{"tf":2.6457513110645907},"4":{"tf":2.449489742783178},"5":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"129":{"tf":1.0},"28":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":12,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"22":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"5":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"3":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"4":{"0":{"4":{"0":{"1":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"7":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"0":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"42":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":6,"docs":{"102":{"tf":1.4142135623730951},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":1.0}},"f":{"1":{"df":0,"docs":{},"f":{"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"6":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":0,"docs":{},"e":{"1":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"c":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"2":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"1":{"0":{"3":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"b":{"8":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"129":{"tf":1.0}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0}}}},"1":{"0":{"2":{"4":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"129":{"tf":1.0},"42":{"tf":1.0}}},"5":{"df":1,"docs":{"102":{"tf":1.0}}},"6":{"df":2,"docs":{"102":{"tf":1.0},"45":{"tf":1.0}}},"7":{"7":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"2":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"2":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},">":{"&":{"1":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0}}},"4":{"1":{"4":{"1":{"4":{"1":{"4":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"2":{"4":{"2":{"4":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"101":{"tf":1.0}}},"6":{"df":1,"docs":{"101":{"tf":1.0}}},"c":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.0}}},"5":{"1":{"6":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":1,"docs":{"61":{"tf":1.0}}},"6":{"1":{"6":{"1":{"6":{"2":{"6":{"2":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"129":{"tf":1.0}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.0}},"f":{"df":1,"docs":{"101":{"tf":1.0}}}},"8":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"_":{"<":{"c":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}},"x":{",":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.7320508075688772},"6":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"5":{"tf":2.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"15":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"[":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"f":{"d":{"_":{"1":{"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{",":{"b":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"c":{",":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"a":{"a":{"b":{"b":{"b":{"b":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":2,"docs":{"104":{"tf":1.0},"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":1,"docs":{"11":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"128":{"tf":1.0},"96":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"52":{"tf":1.0},"55":{"tf":1.0}}}}}},"d":{"d":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"14":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"102":{"tf":1.0}},"i":{"a":{"df":2,"docs":{"31":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":3,"docs":{"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{",":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{",":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{",":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{",":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"17":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"93":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"76":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"17":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}},"y":{"df":5,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"117":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"11":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":6,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"=":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"{":{"!":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{":":{"?":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"93":{"tf":1.0}}},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":5,"docs":{"11":{"tf":1.4142135623730951},"22":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":1,"docs":{"28":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":5,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"u":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"5":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"27":{"tf":2.0},"29":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"127":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":3.605551275463989},"29":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"61":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"t":{"df":4,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"22":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":2.0},"102":{"tf":1.0}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"15":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"df":3,"docs":{"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":3.0},"48":{"tf":3.3166247903554},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":2.23606797749979},"129":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":2.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}}}},"m":{"d":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"s":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}},"r":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":2.449489742783178}},"s":{"+":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"d":{":":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"127":{"tf":1.0},"42":{"tf":1.0}},"n":{"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":2.0},"3":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"73":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"28":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":3.0},"34":{"tf":1.4142135623730951},"36":{"tf":2.0}}}},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"_":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":2.0},"15":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"125":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":3.605551275463989},"15":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":2.0},"30":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":2.6457513110645907},"6":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":2.0}}}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"76":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":1,"docs":{"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"18":{"tf":1.0},"5":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"=":{"$":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"22":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"y":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":11,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"18":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":2.0}}},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{")":{":":{":":{"_":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"117":{"tf":1.0}},"t":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"119":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"s":{"c":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"29":{"tf":1.0}},"i":{"b":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}}}},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":18,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"30":{"tf":2.6457513110645907},"32":{"tf":1.0},"34":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"30":{"tf":1.0},"36":{"tf":1.0}}}}}},"r":{"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"6":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"m":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}}},"t":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"2":{"(":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":2.0},"115":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}},"df":2,"docs":{"108":{"tf":1.0},"115":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"9":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"33":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"125":{"tf":2.8284271247461903}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":2.0}},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"58":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"l":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0}}}},"m":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"128":{"tf":1.0},"22":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":10,"docs":{"10":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"5":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0}}}}}},"s":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"102":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"58":{"tf":1.0}},"u":{"df":2,"docs":{"5":{"tf":1.0},"55":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"21":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"18":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"10":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":3,"docs":{"39":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"13":{"tf":2.0}}},"df":16,"docs":{"101":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"f":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{".":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"]":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":2.0},"106":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"129":{"tf":1.0}}},"t":{"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"44":{"tf":1.4142135623730951},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":2.449489742783178}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"72":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"50":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}},"o":{"#":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"%":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"5":{"tf":2.0},"6":{"tf":1.7320508075688772}}},"r":{"c":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"2":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"61":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"5":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":1,"docs":{"93":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"s":{"df":3,"docs":{"38":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":2.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":3.3166247903554},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"20":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"14":{"tf":2.8284271247461903},"33":{"tf":2.0},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":2.0},"96":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":12,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"28":{"tf":2.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":2.8284271247461903},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"36":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"18":{"tf":1.0}},"n":{"df":3,"docs":{"11":{"tf":2.23606797749979},"37":{"tf":1.0},"79":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"1":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"[":{"2":{"df":1,"docs":{"129":{"tf":1.0}}},"3":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{",":{"0":{".":{"5":{",":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"31":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"|":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"54":{"tf":2.449489742783178},"73":{"tf":1.0}}}}}},"h":{":":{"%":{"df":0,"docs":{},"m":{":":{"%":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{":":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":1,"docs":{"61":{"tf":1.0}}},"l":{"df":1,"docs":{"61":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"28":{"tf":1.4142135623730951}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"108":{"tf":1.0},"15":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":2.8284271247461903},"53":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.0}}}},"~":{"1":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"36":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":5,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"48":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"x":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},"df":7,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"17":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":2.0}}}}}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"21":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"119":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"129":{"tf":2.0},"14":{"tf":1.0},"28":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"129":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}},"o":{"df":7,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":2.0},"34":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"128":{"tf":2.449489742783178},"129":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"127":{"tf":1.0},"23":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"109":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772}}},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"25":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"61":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.0}}}}}},"v":{"df":4,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":2.0}}}}}},"j":{">":{"&":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"125":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":2.0},"129":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"125":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"129":{"tf":2.23606797749979}}}}}},"k":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.4142135623730951},"48":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":3,"docs":{"1":{"tf":1.7320508075688772},"23":{"tf":1.0},"48":{"tf":2.6457513110645907}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"w":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"l":{"4":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"55":{"tf":1.4142135623730951},"61":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}},"y":{"df":1,"docs":{"125":{"tf":1.0}}}},"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.7320508075688772}}}}},"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{",":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{".":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"/":{"df":1,"docs":{"57":{"tf":1.0}},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":3,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"17":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"b":{"a":{"df":1,"docs":{"128":{"tf":1.0}}},"b":{"df":1,"docs":{"128":{"tf":1.0}}},"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":3,"docs":{"127":{"tf":1.0},"61":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"'":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"t":{"d":{"c":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":3,"docs":{"108":{"tf":1.0},"128":{"tf":3.0},"129":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":2.0}}},"t":{"df":28,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"123":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"14":{"tf":2.449489742783178},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"61":{"tf":2.23606797749979},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"102":{"tf":1.0}}},"o":{"a":{"d":{"df":5,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"15":{"tf":1.7320508075688772},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"31":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"128":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":2.8284271247461903},"129":{"tf":1.0},"92":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"=":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"119":{"tf":1.4142135623730951}},"e":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":1,"docs":{"1":{"tf":1.0}}},"p":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"128":{"tf":3.0},"26":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":2.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":3,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"109":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}},"y":{"(":{"3":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"c":{"df":75,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"109":{"tf":1.0},"28":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":2.0},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":2.0},"129":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":2.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"119":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"n":{".":{".":{"df":0,"docs":{},"m":{".":{".":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":1,"docs":{"42":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":19,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"56":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"119":{"tf":1.0},"3":{"tf":1.0},"82":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}},"w":{"df":6,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"l":{"df":1,"docs":{"101":{"tf":1.0}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"79":{"tf":1.0}}}}},"r":{"%":{"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}},"s":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":1,"docs":{"35":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951}}},"df":6,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"11":{"tf":2.23606797749979},"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}}}},"o":{"b":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"p":{"1":{"df":1,"docs":{"5":{"tf":1.0}}},"2":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"22":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"97":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"t":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"]":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"15":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"20":{"tf":1.0},"38":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"=":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"a":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":3.1622776601683795}}}}},"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}},"g":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{":":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":3.1622776601683795},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":3.1622776601683795},"23":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}},"s":{"=":{"0":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"34":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"61":{"tf":1.0},"67":{"tf":1.0}}},"t":{"df":2,"docs":{"22":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":4.58257569495584}}}},"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"34":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":3.605551275463989},"39":{"tf":2.0},"40":{"tf":2.0},"44":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"d":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":25,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"17":{"tf":1.0},"21":{"tf":2.449489742783178},"22":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"31":{"tf":1.0},"81":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":3,"docs":{"93":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"df":17,"docs":{"46":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178}}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"48":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":4.69041575982343},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"v":{"=":{"$":{"3":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"108":{"tf":2.6457513110645907},"120":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"35":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}},"f":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"o":{"c":{"/":{"*":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{">":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"123":{"tf":1.0},"127":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"g":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"3":{"tf":1.0},"40":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"129":{"tf":2.0},"27":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"129":{"tf":2.23606797749979}},"s":{"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"_":{"2":{".":{"2":{".":{"5":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"r":{"/":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"74":{"tf":1.0}}},"_":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"w":{"df":1,"docs":{"109":{"tf":1.0}}},"x":{"df":2,"docs":{"129":{"tf":1.0},"69":{"tf":1.0}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"x":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":10,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"35":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}},"e":{"a":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"61":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"44":{"tf":2.0},"45":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"34":{"tf":2.23606797749979},"35":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"15":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"57":{"tf":1.0}},"f":{"df":3,"docs":{"30":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554}},"p":{"df":1,"docs":{"53":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}}}},"l":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"108":{"tf":1.0}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":2,"docs":{"108":{"tf":1.0},"4":{"tf":1.0}},"o":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"108":{"tf":1.0},"129":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":3.0},"27":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951}}},"v":{"df":3,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"28":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"22":{"tf":2.23606797749979}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"128":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}},"o":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"d":{"b":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"df":17,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{":":{"$":{"df":0,"docs":{},"w":{".":{"$":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},">":{":":{"<":{"df":0,"docs":{},"w":{">":{".":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"57":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"18":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":16,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.7320508075688772},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{".":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"129":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"33":{"tf":1.4142135623730951},"97":{"tf":1.0}},"k":{"df":1,"docs":{"71":{"tf":1.0}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"129":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"51":{"tf":2.0},"72":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"21":{"tf":1.0}}},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"11":{"tf":1.0},"127":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"38":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"19":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":3.0},"22":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}}}},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"20":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"df":1,"docs":{"23":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"h":{"a":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"df":1,"docs":{"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"46":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"w":{"df":20,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979},"97":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"61":{"tf":3.4641016151377544},"65":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":2.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"e":{">":{"/":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"]":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":3,"docs":{"109":{"tf":1.0},"20":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"51":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"c":{"df":1,"docs":{"52":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"5":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":5,"docs":{"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"42":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"33":{"tf":2.0},"51":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"33":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"=":{"df":0,"docs":{},"v":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":3,"docs":{"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}},"o":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"39":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"35":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"34":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":3.4641016151377544}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{".":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":9,"docs":{"108":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"61":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"61":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"t":{"a":{"b":{">":{"<":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951}}}},"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"g":{"/":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"c":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"79":{"tf":2.23606797749979}}}},"df":4,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":3.0},"23":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"61":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"22":{"tf":1.4142135623730951},"31":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"20":{"tf":4.242640687119285},"21":{"tf":3.1622776601683795}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"93":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"[":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"k":{"df":3,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":2.6457513110645907}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":2.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":2.449489742783178}}}},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"63":{"tf":1.0}}}},"x":{"1":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"129":{"tf":1.0},"63":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"$":{"(":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"p":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.4142135623730951}}}},"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}},"r":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":2.0},"62":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"6":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"5":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"10":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"127":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"1":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"26":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"22":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"df":4,"docs":{"129":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"119":{"tf":1.0},"125":{"tf":2.0}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"27":{"tf":1.0}}}},"w":{"4":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":2.23606797749979},"50":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"11":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"14":{"tf":2.6457513110645907},"4":{"tf":2.449489742783178},"5":{"tf":1.0}},"s":{"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"129":{"tf":1.0},"28":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"15":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"x":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}}},"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"125":{"tf":1.0}}},"df":12,"docs":{"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"22":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":1,"docs":{"11":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"_":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"99":{"tf":1.0}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"c":{"+":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"122":{"tf":1.0},"20":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"30":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"5":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"c":{"c":{"(":{"1":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"(":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"73":{"tf":1.0}}}},"x":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"l":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"(":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"8":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"128":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"3":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"m":{"(":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"(":{"1":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"82":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"38":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"1":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"2":{"(":{"1":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"1":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"(":{"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"62":{"tf":1.0}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"127":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"d":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"1":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}
\ No newline at end of file diff --git a/trace_profile/index.html b/trace_profile/index.html new file mode 100644 index 0000000..a527e6c --- /dev/null +++ b/trace_profile/index.html @@ -0,0 +1,220 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>Trace and Profile - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html" class="active"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#trace-and-profile" id="trace-and-profile">Trace and Profile</a></h1> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../monitor/pstack.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../trace_profile/strace.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../monitor/pstack.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../trace_profile/strace.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/trace_profile/ltrace.html b/trace_profile/ltrace.html new file mode 100644 index 0000000..18d547c --- /dev/null +++ b/trace_profile/ltrace.html @@ -0,0 +1,231 @@ +<!DOCTYPE HTML> +<html lang="en" class="sidebar-visible no-js light"> + <head> + <!-- Book generated using mdBook --> + <meta charset="UTF-8"> + <title>ltrace - Notes</title> + + + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="theme-color" content="#ffffff" /> + + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> + + <!-- Fonts --> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> + <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> + + <!-- Highlight.js Stylesheets --> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> + + <!-- Custom theme stylesheets --> + + + + </head> + <body> + <!-- Provide site root to javascript --> + <script type="text/javascript"> + var path_to_root = "../"; + var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; + </script> + + <!-- Work around some values being stored in localStorage wrapped in quotes --> + <script type="text/javascript"> + try { + var theme = localStorage.getItem('mdbook-theme'); + var sidebar = localStorage.getItem('mdbook-sidebar'); + + if (theme.startsWith('"') && theme.endsWith('"')) { + localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1)); + } + + if (sidebar.startsWith('"') && sidebar.endsWith('"')) { + localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); + } + } catch (e) { } + </script> + + <!-- Set the theme before any content is loaded, prevents flash --> + <script type="text/javascript"> + var theme; + try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } + if (theme === null || theme === undefined) { theme = default_theme; } + var html = document.querySelector('html'); + html.classList.remove('no-js') + html.classList.remove('light') + html.classList.add(theme); + html.classList.add('js'); + </script> + + <!-- Hide / unhide sidebar before it is displayed --> + <script type="text/javascript"> + var html = document.querySelector('html'); + var sidebar = 'hidden'; + if (document.body.clientWidth >= 1080) { + try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } + sidebar = sidebar || 'visible'; + } + html.classList.remove('sidebar-visible'); + html.classList.add("sidebar-" + sidebar); + </script> + + <nav id="sidebar" class="sidebar" aria-label="Table of contents"> + <div id="sidebar-scrollbox" class="sidebar-scrollbox"> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html" class="active"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> + </div> + <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> + </nav> + + <div id="page-wrapper" class="page-wrapper"> + + <div class="page"> + + <div id="menu-bar" class="menu-bar"> + <div id="menu-bar-sticky-container"> + <div class="left-buttons"> + <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> + <i class="fa fa-bars"></i> + </button> + <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> + <i class="fa fa-paint-brush"></i> + </button> + <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> + <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li> + <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> + <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> + <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> + <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> + </ul> + + <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> + <i class="fa fa-search"></i> + </button> + + </div> + + <h1 class="menu-title">Notes</h1> + + <div class="right-buttons"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> + <i id="print-button" class="fa fa-print"></i> + </a> + + </div> + </div> + </div> + + + <div id="search-wrapper" class="hidden"> + <form id="searchbar-outer" class="searchbar-outer"> + <input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> + </form> + <div id="searchresults-outer" class="searchresults-outer hidden"> + <div id="searchresults-header" class="searchresults-header"></div> + <ul id="searchresults"> + </ul> + </div> + </div> + + + <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> + <script type="text/javascript"> + document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); + document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); + Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { + link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); + }); + </script> + + <div id="content" class="content"> + <main> + <h1><a class="header" href="#ltrace1" id="ltrace1">ltrace(1)</a></h1> +<pre><code class="language-markdown">ltrace [opts] [prg] + -f .......... follow child processes on fork(2) + -p <pid> .... attach to running process + -o <file> ... log output into <file> + -l <filter> . show who calls into lib matched by <filter> + -C .......... demangle +</code></pre> +<h1><a class="header" href="#example" id="example">Example</a></h1> +<p>List which program/libs call into <code>libstdc++</code>:</p> +<pre><code class="language-bash">ltrace -l '*libstdc++*' -C -o ltrace.log ./main +</code></pre> + + </main> + + <nav class="nav-wrapper" aria-label="Page navigation"> + <!-- Mobile navigation buttons --> + + <a rel="prev" href="../trace_profile/strace.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a rel="next" href="../trace_profile/perf.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + + <div style="clear: both"></div> + </nav> + </div> + </div> + + <nav class="nav-wide-wrapper" aria-label="Page navigation"> + + <a href="../trace_profile/strace.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <i class="fa fa-angle-left"></i> + </a> + + + + <a href="../trace_profile/perf.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <i class="fa fa-angle-right"></i> + </a> + + </nav> + + </div> + + + + + + + + + <script type="text/javascript"> + window.playpen_copyable = true; + </script> + + + + + + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> + + + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> + + <!-- Custom JS scripts --> + + + + + </body> +</html> diff --git a/oprofile.html b/trace_profile/oprofile.html index 8379b96..a394215 100644 --- a/oprofile.html +++ b/trace_profile/oprofile.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html" class="active"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html" class="active"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -166,13 +166,13 @@ ophelp show supported hw/sw events <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="perf.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../trace_profile/perf.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="od.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../trace_profile/time.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -184,13 +184,13 @@ ophelp show supported hw/sw events <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="perf.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../trace_profile/perf.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="od.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../trace_profile/time.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -213,14 +213,14 @@ ophelp show supported hw/sw events - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/perf.html b/trace_profile/perf.html index 9e378b7..4e3ab39 100644 --- a/perf.html +++ b/trace_profile/perf.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html" class="active"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html" class="active"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -200,13 +200,13 @@ perf script --per-event-dump <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="pstack.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../trace_profile/ltrace.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="oprofile.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../trace_profile/oprofile.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -218,13 +218,13 @@ perf script --per-event-dump <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="pstack.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../trace_profile/ltrace.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="oprofile.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../trace_profile/oprofile.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -247,14 +247,14 @@ perf script --per-event-dump - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/strace.html b/trace_profile/strace.html index 9a82958..909a9f4 100644 --- a/strace.html +++ b/trace_profile/strace.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html" class="active"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html" class="active"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -177,13 +177,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="fish.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../trace_profile/index.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="lsof.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../trace_profile/ltrace.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -195,13 +195,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="fish.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../trace_profile/index.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="lsof.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../trace_profile/ltrace.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -224,14 +224,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> diff --git a/time.html b/trace_profile/time.html index fab4dc3..34badc2 100644 --- a/time.html +++ b/trace_profile/time.html @@ -11,21 +11,21 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#ffffff" /> - <link rel="shortcut icon" href="favicon.png"> - <link rel="stylesheet" href="css/variables.css"> - <link rel="stylesheet" href="css/general.css"> - <link rel="stylesheet" href="css/chrome.css"> - <link rel="stylesheet" href="css/print.css" media="print"> + <link rel="shortcut icon" href="../favicon.png"> + <link rel="stylesheet" href="../css/variables.css"> + <link rel="stylesheet" href="../css/general.css"> + <link rel="stylesheet" href="../css/chrome.css"> + <link rel="stylesheet" href="../css/print.css" media="print"> <!-- Fonts --> - <link rel="stylesheet" href="FontAwesome/css/font-awesome.css"> + <link rel="stylesheet" href="../FontAwesome/css/font-awesome.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css"> <!-- Highlight.js Stylesheets --> - <link rel="stylesheet" href="highlight.css"> - <link rel="stylesheet" href="tomorrow-night.css"> - <link rel="stylesheet" href="ayu-highlight.css"> + <link rel="stylesheet" href="../highlight.css"> + <link rel="stylesheet" href="../tomorrow-night.css"> + <link rel="stylesheet" href="../ayu-highlight.css"> <!-- Custom theme stylesheets --> @@ -35,7 +35,7 @@ <body> <!-- Provide site root to javascript --> <script type="text/javascript"> - var path_to_root = ""; + var path_to_root = "../"; var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "light" : "light"; </script> @@ -81,7 +81,7 @@ <nav id="sidebar" class="sidebar" aria-label="Table of contents"> <div id="sidebar-scrollbox" class="sidebar-scrollbox"> - <ol class="chapter"><li class="expanded "><a href="ld.so.html"><strong aria-hidden="true">1.</strong> ld.so</a></li><li class="expanded "><a href="git.html"><strong aria-hidden="true">2.</strong> git</a></li><li class="expanded "><a href="bash.html"><strong aria-hidden="true">3.</strong> bash</a></li><li class="expanded "><a href="zsh.html"><strong aria-hidden="true">4.</strong> zsh</a></li><li class="expanded "><a href="tmux.html"><strong aria-hidden="true">5.</strong> tmux</a></li><li class="expanded "><a href="awk.html"><strong aria-hidden="true">6.</strong> awk</a></li><li class="expanded "><a href="gdb.html"><strong aria-hidden="true">7.</strong> gdb</a></li><li class="expanded "><a href="radare2.html"><strong aria-hidden="true">8.</strong> radare2</a></li><li class="expanded "><a href="emacs.html"><strong aria-hidden="true">9.</strong> emacs</a></li><li class="expanded "><a href="fish.html"><strong aria-hidden="true">10.</strong> fish</a></li><li class="expanded "><a href="strace.html"><strong aria-hidden="true">11.</strong> strace</a></li><li class="expanded "><a href="lsof.html"><strong aria-hidden="true">12.</strong> lsof</a></li><li class="expanded "><a href="pidstat.html"><strong aria-hidden="true">13.</strong> pidstat</a></li><li class="expanded "><a href="time.html" class="active"><strong aria-hidden="true">14.</strong> time</a></li><li class="expanded "><a href="pgrep.html"><strong aria-hidden="true">15.</strong> pgrep</a></li><li class="expanded "><a href="pstack.html"><strong aria-hidden="true">16.</strong> pstack</a></li><li class="expanded "><a href="perf.html"><strong aria-hidden="true">17.</strong> perf</a></li><li class="expanded "><a href="oprofile.html"><strong aria-hidden="true">18.</strong> OProfile</a></li><li class="expanded "><a href="od.html"><strong aria-hidden="true">19.</strong> od</a></li><li class="expanded "><a href="xxd.html"><strong aria-hidden="true">20.</strong> xxd</a></li><li class="expanded "><a href="readelf.html"><strong aria-hidden="true">21.</strong> readelf</a></li><li class="expanded "><a href="objdump.html"><strong aria-hidden="true">22.</strong> objdump</a></li><li class="expanded "><a href="nm.html"><strong aria-hidden="true">23.</strong> nm</a></li><li class="expanded "><a href="c++filt.html"><strong aria-hidden="true">24.</strong> c++filt</a></li><li class="expanded "><a href="c++.html"><strong aria-hidden="true">25.</strong> c++</a></li><li class="expanded "><a href="glibc.html"><strong aria-hidden="true">26.</strong> glibc</a></li><li class="expanded "><a href="gcc.html"><strong aria-hidden="true">27.</strong> gcc</a></li></ol> + <ol class="chapter"><li class="expanded "><a href="../misc/index.html"><strong aria-hidden="true">1.</strong> Misc</a></li><li><ol class="section"><li class="expanded "><a href="../misc/zsh.html"><strong aria-hidden="true">1.1.</strong> zsh</a></li><li class="expanded "><a href="../misc/bash.html"><strong aria-hidden="true">1.2.</strong> bash</a></li><li class="expanded "><a href="../misc/fish.html"><strong aria-hidden="true">1.3.</strong> fish</a></li><li class="expanded "><a href="../misc/tmux.html"><strong aria-hidden="true">1.4.</strong> tmux</a></li><li class="expanded "><a href="../misc/git.html"><strong aria-hidden="true">1.5.</strong> git</a></li><li class="expanded "><a href="../misc/awk.html"><strong aria-hidden="true">1.6.</strong> awk</a></li><li class="expanded "><a href="../misc/emacs.html"><strong aria-hidden="true">1.7.</strong> emacs</a></li><li class="expanded "><a href="../misc/gdb.html"><strong aria-hidden="true">1.8.</strong> gdb</a></li><li class="expanded "><a href="../misc/radare2.html"><strong aria-hidden="true">1.9.</strong> radare2</a></li></ol></li><li class="expanded "><a href="../monitor/index.html"><strong aria-hidden="true">2.</strong> Resource analysis & monitor</a></li><li><ol class="section"><li class="expanded "><a href="../monitor/lsof.html"><strong aria-hidden="true">2.1.</strong> lsof</a></li><li class="expanded "><a href="../monitor/pidstat.html"><strong aria-hidden="true">2.2.</strong> pidstat</a></li><li class="expanded "><a href="../monitor/pgrep.html"><strong aria-hidden="true">2.3.</strong> pgrep</a></li><li class="expanded "><a href="../monitor/pmap.html"><strong aria-hidden="true">2.4.</strong> pmap</a></li><li class="expanded "><a href="../monitor/pstack.html"><strong aria-hidden="true">2.5.</strong> pstack</a></li></ol></li><li class="expanded "><a href="../trace_profile/index.html"><strong aria-hidden="true">3.</strong> Trace and Profile</a></li><li><ol class="section"><li class="expanded "><a href="../trace_profile/strace.html"><strong aria-hidden="true">3.1.</strong> strace</a></li><li class="expanded "><a href="../trace_profile/ltrace.html"><strong aria-hidden="true">3.2.</strong> ltrace</a></li><li class="expanded "><a href="../trace_profile/perf.html"><strong aria-hidden="true">3.3.</strong> perf</a></li><li class="expanded "><a href="../trace_profile/oprofile.html"><strong aria-hidden="true">3.4.</strong> OProfile</a></li><li class="expanded "><a href="../trace_profile/time.html" class="active"><strong aria-hidden="true">3.5.</strong> time</a></li></ol></li><li class="expanded "><a href="../binary/index.html"><strong aria-hidden="true">4.</strong> Binary</a></li><li><ol class="section"><li class="expanded "><a href="../binary/od.html"><strong aria-hidden="true">4.1.</strong> od</a></li><li class="expanded "><a href="../binary/xxd.html"><strong aria-hidden="true">4.2.</strong> xxd</a></li><li class="expanded "><a href="../binary/readelf.html"><strong aria-hidden="true">4.3.</strong> readelf</a></li><li class="expanded "><a href="../binary/objdump.html"><strong aria-hidden="true">4.4.</strong> objdump</a></li><li class="expanded "><a href="../binary/nm.html"><strong aria-hidden="true">4.5.</strong> nm</a></li></ol></li><li class="expanded "><a href="../development/index.html"><strong aria-hidden="true">5.</strong> Development</a></li><li><ol class="section"><li class="expanded "><a href="../development/c++filt.html"><strong aria-hidden="true">5.1.</strong> c++filt</a></li><li class="expanded "><a href="../development/c++.html"><strong aria-hidden="true">5.2.</strong> c++</a></li><li class="expanded "><a href="../development/glibc.html"><strong aria-hidden="true">5.3.</strong> glibc</a></li><li class="expanded "><a href="../development/gcc.html"><strong aria-hidden="true">5.4.</strong> gcc</a></li><li class="expanded "><a href="../development/ld.so.html"><strong aria-hidden="true">5.5.</strong> ld.so</a></li></ol></li></ol> </div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </nav> @@ -116,7 +116,7 @@ <h1 class="menu-title">Notes</h1> <div class="right-buttons"> - <a href="print.html" title="Print this book" aria-label="Print this book"> + <a href="../print.html" title="Print this book" aria-label="Print this book"> <i id="print-button" class="fa fa-print"></i> </a> @@ -158,13 +158,13 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="pidstat.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../trace_profile/oprofile.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a rel="next" href="pgrep.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a rel="next" href="../binary/index.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -176,13 +176,13 @@ <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a href="pidstat.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a href="../trace_profile/oprofile.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> - <a href="pgrep.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> + <a href="../binary/index.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <i class="fa fa-angle-right"></i> </a> @@ -205,14 +205,14 @@ - <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> - <script src="mark.min.js" type="text/javascript" charset="utf-8"></script> - <script src="searcher.js" type="text/javascript" charset="utf-8"></script> + <script src="../elasticlunr.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../mark.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../searcher.js" type="text/javascript" charset="utf-8"></script> - <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script> - <script src="highlight.js" type="text/javascript" charset="utf-8"></script> - <script src="book.js" type="text/javascript" charset="utf-8"></script> + <script src="../clipboard.min.js" type="text/javascript" charset="utf-8"></script> + <script src="../highlight.js" type="text/javascript" charset="utf-8"></script> + <script src="../book.js" type="text/javascript" charset="utf-8"></script> <!-- Custom JS scripts --> |