This is the object you are refeering to when you want to do things with LED's.
+You shouldn't have to do instantiate your own new strip-object as you can use the one
+set up by the software itself.
+
LuxcenaNeo.strip
+or
+neo.strip
+
+
Strip.show()
+
Display all the changes made to the LEDs, on the actual LEDs.
+
Strip.setPixelColor(n, color)
+
Set LED at position n to the provided 24-bit color value (in RGB order).
+
Strip.setPixelColorXY(x, y, color)
+
Set LED at position (x, y) in the defined matrix to the provided 24-bit color value (in RGB order).
+
Strip.setPixelColorRGB(n, red, green, blue, white = 0)
+
Set LED at position n to the provided red, green, and blue color.
+Each color component should be a value from 0 to 255 (where 0 is the
+lowest intensity and 255 is the highest intensity).
+
Strip.setPixelColorXYRGB(x, y, red, green, blue, white = 0)
+
Set LED at position (x, y) in the defined matrix to the provided red, green, and blue color.
+Each color component should be a value from 0 to 255 (where 0 is the
+lowest intensity and 255 is the highest intensity).
+
Strip.setSegmentColorRGB(segment, red, green, blue, white = 0)
+
Set a whole segment to the provided red, green and blue color.
+Each color component should be a value from 0 to 255 (where 0 is the
+lowest intensity and 255 is the highest intensity).
+
Strip.setBrightness(brightness)
+
Scale each LED in the buffer by the provided brightness. A brightness
+of 0 is the darkest and 255 is the brightest.
+
Strip.getBrightness():
+
Get the brightness value for each LED in the buffer. A brightness
+of 0 is the darkest and 255 is the brightest.
+
Strip.getPixels():
+
Return an object which allows access to the LED display data as if
+it were a sequence of 24-bit RGB values.
+
Strip.numPixels():
+
Return the number of pixels in the display.
+
Strip.getPixelColor(n)
+
Get the 24-bit RGB color value for the LED at position n.
+
+
Color(red, green, blue, white = 0)
+
Convert the provided red, green, blue color to a 24-bit color value.
+Each color component should be a value 0-255 where 0 is the lowest intensity
+and 255 is the highest intensity.
+
hexColor(value)
+
Convert the provided hexadecimal color to a 24-bit color value.
+
+
+
+
+
+
+
+
+
results matching ""
+
+
+
+
+
+
No results matching ""
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
--
cgit v1.2.3
From 0ce45a7d4ba9b590ae86eee48cb3fe6e8c0ba14b Mon Sep 17 00:00:00 2001
From: Jakob Stendahl
Date: Wed, 5 Dec 2018 19:49:38 +0100
Subject: :memo: Add some example scripts
---
docs/SUMMARY.md | 2 +
docs/Scripting/Examples/strandtest.md | 90 ++++
docs/_book/Contributing/Modules/CompileAndRun.html | 34 +-
docs/_book/Scripting/Examples/strandtest.html | 527 +++++++++++++++++++++
docs/_book/Scripting/SupportLib/index.html | 34 +-
docs/_book/Usage/CLI.html | 34 +-
docs/_book/Usage/Configuration.html | 34 +-
docs/_book/Usage/Install.html | 34 +-
docs/_book/Usage/index.html | 34 +-
docs/_book/index.html | 34 +-
docs/_book/search_index.json | 2 +-
docs/_book/service-worker.js | 2 +-
12 files changed, 852 insertions(+), 9 deletions(-)
create mode 100644 docs/Scripting/Examples/strandtest.md
create mode 100644 docs/_book/Scripting/Examples/strandtest.html
(limited to 'docs/_book/Scripting')
diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md
index 025a79c..d99bf4f 100644
--- a/docs/SUMMARY.md
+++ b/docs/SUMMARY.md
@@ -7,6 +7,8 @@
* [CLI](Usage/CLI.md)
* Scripting
* [Support Library](Scripting\SupportLib/README.md)
+ * Examples
+ * [Strandtest](Scripting\Examples/strandtest.md)
* Contributing
* Modules
* [CompileAndRun](Contributing/Modules/CompileAndRun.md)
diff --git a/docs/Scripting/Examples/strandtest.md b/docs/Scripting/Examples/strandtest.md
new file mode 100644
index 0000000..89173d3
--- /dev/null
+++ b/docs/Scripting/Examples/strandtest.md
@@ -0,0 +1,90 @@
+# Strandtest
+
+---
+This script just does some fancy patterns to show of the neopixels' capabilities.
+Runs in an endless loop, take a look at the code to see what it does more
+precisely.
+
+```Python
+import LuxcenaNeo as neo # Can be imported as LuxcenaNeo as well. but anything else and it will fail...
+import time
+
+def colorWipe(color, wait_ms=50):
+ """Wipe color across display a pixel at a time."""
+ for i in range(neo.strip.numPixels()):
+ neo.strip.setPixelColor(i, color)
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+def theaterChase(color, wait_ms=50, iterations=10):
+ """Movie theater light style chaser animation."""
+ for j in range(iterations):
+ for q in range(3):
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, color)
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, 0)
+
+def wheel(pos):
+ """Generate rainbow colors across 0-255 positions."""
+ if pos < 85:
+ return neo.Color(pos * 3, 255 - pos * 3, 0)
+ elif pos < 170:
+ pos -= 85
+ return neo.Color(255 - pos * 3, 0, pos * 3)
+ else:
+ pos -= 170
+ return neo.Color(0, pos * 3, 255 - pos * 3)
+
+def rainbow(wait_ms=20, iterations=1):
+ """Draw rainbow that fades across all pixels at once."""
+ for j in range(256*iterations):
+ for i in range(neo.strip.numPixels()):
+ neo.strip.setPixelColor(i, wheel((i+j) & 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+def rainbowCycle(wait_ms=20, iterations=5):
+ """Draw rainbow that uniformly distributes itself across all pixels."""
+ for j in range(256*iterations):
+ for i in range(strip.numPixels()):
+ neo,strip.setPixelColor(i, wheel(((i * 256 / neo.strip.numPixels()) + j) & 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+def theaterChaseRainbow(wait_ms=50):
+ """Rainbow movie theater light style chaser animation."""
+ for j in range(256):
+ for q in range(3):
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, wheel((i+j) % 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, 0)
+
+
+class Main(neo.NeoBehaviour):
+
+ def onStart(self):
+ # Change the brightness of the strip
+ neo.strip.setBrightness(100)
+
+ # Do an endless loop with some default neopixel test patterns
+ while True:
+ colorWipe(neo.Color(255, 0, 0)) # Red wipe
+ colorWipe(neo.Color(0, 255, 0)) # Blue wipe
+ colorWipe(neo.Color(0, 0, 255)) # Green wipe
+
+ theaterChase(neo.Color(127, 127, 127)) # White theater chase
+ theaterChase(neo.Color(127, 0, 0)) # Red theater chase
+ theaterChase(neo.Color( 0, 0, 127)) # Blue theater chase
+
+ rainbow()
+ rainbowCycle()
+ theaterChaseRainbow()
+
+
+```
diff --git a/docs/_book/Contributing/Modules/CompileAndRun.html b/docs/_book/Contributing/Modules/CompileAndRun.html
index b39975a..b34f376 100644
--- a/docs/_book/Contributing/Modules/CompileAndRun.html
+++ b/docs/_book/Contributing/Modules/CompileAndRun.html
@@ -205,6 +205,38 @@
+
+
+
This script just does some fancy patterns to show of the neopixels' capabilities.
+Runs in an endless loop, take a look at the code to see what it does more
+precisely.
+
import LuxcenaNeo as neo # Can be imported as LuxcenaNeo as well. but anything else and it will fail...
+import time
+
+defcolorWipe(color, wait_ms=50):
+ """Wipe color across display a pixel at a time."""
+ for i in range(neo.strip.numPixels()):
+ neo.strip.setPixelColor(i, color)
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+deftheaterChase(color, wait_ms=50, iterations=10):
+ """Movie theater light style chaser animation."""
+ for j in range(iterations):
+ for q in range(3):
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, color)
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, 0)
+
+defwheel(pos):
+ """Generate rainbow colors across 0-255 positions."""
+ if pos < 85:
+ return neo.Color(pos * 3, 255 - pos * 3, 0)
+ elif pos < 170:
+ pos -= 85
+ return neo.Color(255 - pos * 3, 0, pos * 3)
+ else:
+ pos -= 170
+ return neo.Color(0, pos * 3, 255 - pos * 3)
+
+defrainbow(wait_ms=20, iterations=1):
+ """Draw rainbow that fades across all pixels at once."""
+ for j in range(256*iterations):
+ for i in range(neo.strip.numPixels()):
+ neo.strip.setPixelColor(i, wheel((i+j) & 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+defrainbowCycle(wait_ms=20, iterations=5):
+ """Draw rainbow that uniformly distributes itself across all pixels."""
+ for j in range(256*iterations):
+ for i in range(strip.numPixels()):
+ neo,strip.setPixelColor(i, wheel(((i * 256 / neo.strip.numPixels()) + j) & 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+
+deftheaterChaseRainbow(wait_ms=50):
+ """Rainbow movie theater light style chaser animation."""
+ for j in range(256):
+ for q in range(3):
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, wheel((i+j) % 255))
+ neo.strip.show()
+ time.sleep(wait_ms/1000.0)
+ for i in range(0, neo.strip.numPixels(), 3):
+ neo.strip.setPixelColor(i+q, 0)
+
+
+classMain(neo.NeoBehaviour):
+
+ defonStart(self):
+ # Change the brightness of the strip
+ neo.strip.setBrightness(100)
+
+ # Do an endless loop with some default neopixel test patterns
+ whileTrue:
+ colorWipe(neo.Color(255, 0, 0)) # Red wipe
+ colorWipe(neo.Color(0, 255, 0)) # Blue wipe
+ colorWipe(neo.Color(0, 0, 255)) # Green wipe
+
+ theaterChase(neo.Color(127, 127, 127)) # White theater chase
+ theaterChase(neo.Color(127, 0, 0)) # Red theater chase
+ theaterChase(neo.Color( 0, 0, 127)) # Blue theater chase
+
+ rainbow()
+ rainbowCycle()
+ theaterChaseRainbow()
+
@@ -409,7 +441,7 @@ This is the dma-channel used to generate the data-stream. If you for some reason
diff --git a/docs/_book/Usage/Install.html b/docs/_book/Usage/Install.html
index 86579ad..bca71ef 100644
--- a/docs/_book/Usage/Install.html
+++ b/docs/_book/Usage/Install.html
@@ -209,6 +209,38 @@
+
+
+
@@ -384,7 +416,7 @@ This is also where you will find possible reasons for a failed install.
diff --git a/docs/_book/Usage/index.html b/docs/_book/Usage/index.html
index 9a18cb7..63cdaf3 100644
--- a/docs/_book/Usage/index.html
+++ b/docs/_book/Usage/index.html
@@ -209,6 +209,38 @@
+
+
+
@@ -357,7 +389,7 @@ But i assure you that it will be really easy to use shortly
diff --git a/docs/_book/search_index.json b/docs/_book/search_index.json
index 521eb35..08df657 100644
--- a/docs/_book/search_index.json
+++ b/docs/_book/search_index.json
@@ -1 +1 @@
-{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(dev)","assur","bit","branch","depend","easi","guid","hard","have","hour","instal","installing:","introduct","issu","look","luxcena","neo","neo.","pleas","realli","refer","shortli","software.","someon","sourc","spent","still","us"],"Usage/":["chang","cli","configur","guide!","instal","luxcena","neo,","neo?","readi","setup?","something?","start","thing?","usag","want"],"Usage/Install.html":["$","(prefer","(ssh","./bin/install.sh","/tmp/luxcena","10","access","anoth","answer","be","bit","cd","clone","command$","command)","command:$","commands$","configur","console.","direct)","do,","encount","f","fail","find","fix'","follow","git","hang,","haven't","here.","https://github.com/jakobst1n/luxcena","instal","install.","installed.","instruct","instructions:","it,","log","luxcena","more","n","neo","neo.","neo.install.log","now","onc","open","output","output.","pi","possibl","post","process","questions.","raspberri","reason","requir","root","run","screen.","see","seem","sent","session,","set","shield","start","sudo","tail","termin","through","troubl","troubleshoot","us","verbos","want","ye","yet,"],"Usage/Configuration.html":["\"led","\"led_channel\":","\"led_count\":","\"led_dma\":","\"led_freq_hz\":","\"led_invert\":","\"led_pin\":","\"line\":","\"matrix\":","\"random\":","\"real\"","\"segmentconfiguration\":","\"segments\":","\"snake\",","\"snake\":","$","'nano'.","'segmentsconfiguration'","(3","/home/lux","0","0.","10","10!","10,","10],","18,","53,","800000,","[","[,","[1,","[10,","[2,","[4,","[5,","[7,","[8,","[[0,","[[3,","[[6,","[],","]","above,","add","anoth","appear","arrang","array,","back","badli","chang","channel","check","command","conf","config","configur","connect","control.","controlling.","converter.","count","count\"","crash.","data","default","defaults:","dimenson","din","dma","doing.","don't","each","editor","editor,","element","else,","empti","enter","entri","exampl","fail.","fall","false,","false],","false]]","false]],","file","gener","gpio","here","interface.","invert","it.","know","leav","led'","led_channel","led_count","led_dma","led_invert","led_pin","lenght","length,","level","likings.","line","line.","list,","look","lux","luxcena","matrix","need","neo","neo/userdata/config/strip.json","newer","newer),","now","number","on","option","option.","out","parameters,","pixel'","pleas","port","port.","reason","recommend","refer","repres","rpi","run","segment","segment,","segmentconfigur","segments.","set","setup","setup.","shield,","shouldn't","simpl","someth","something,","square,","start","stream.","strongli","sudo","sum","system","take","them.","this:","touched,","true],","true]],","two","unless","up","us","vim","want","work","worri","{","}"],"Usage/CLI.html":["$","/usr/bin","access,","alia","assum","branch.","by:","call","cli","command","conf","config","current","directory,","get","instal","interfac","line","lux","luxcena","nano.","neo","neo.sh","newest","open","option","pleas","remov","root","run","script","server.","start","stop","strip","sudo","thing.","uninstal","updat","version","whole","yourself."],"Contributing/Modules/CompileAndRun.html":["\"/usrdata/usrcode/example\");","(_code)","(_stderr)","(_stdout)","(where","+","//",":`(","=","=>","_code","`throw`","add","app","app.j","attach","below:","build","call","called.","class","class,","closes,","code","code.","compileandrun","compilerun.python(global.dirswap","contain","data","delet","done","dy","entri","entry.pi","error","event","exampl","exit","exits,","export","file","file.","folder","folder,","folder.","full","index","initi","itself.","languag","last","later.","listner","local","located):","located.","made","make","messag","method","modul","move","new","next","object.","old","on","one.","out.","parameter,","path","place","point","print","process","process,","python","python,","python.compil","python.constructor","python.run","pythonsupportfil","readi","requir","root","run","sc","sc.on(\"close\",","sc.on(\"stderr::end\",","sc.on(\"stderr::out\",","sc.on(\"stdout::data\",","sc.on(\"stdout::end\",","script","script,","script.","script.py,","scripts.","someth","spawn","start","subdir","support","take","this:","us","user","usual","var","word","write","{","});",""],"Scripting/Luxcena-neo library/neo.strip.html":["\"\"\"","\"\"\"get","\"\"\"return","\"\"\"scale","\"\"\"set","\"\"\"updat","(in","(where","0","0):","24","255","=","access","allow","bit","blue","blue,","bright","brightest.","brightness):","brightness.","buffer","buffer.","buffer.\"\"\"","color","color(red,","color)","color):","color.","compon","darkest","data","def","display","display.\"\"\"","each","getbrightness(self):","getpixelcolor(self,","getpixels(self):","getsegmentrange(self.segments,","green,","highest","intens","intensity).","led","lowest","n","n):","n,","n.\"\"\"","neo.strip","number","numpixels(self):","object","order).","pixel","posit","provid","red,","return","rgb","segment):","self.led_count","self.strip.getbrightness()","self.strip.getpixelcolor(n)","self.strip.getpixels()","self.strip.setbrightness(brightness)","self.strip.setpixelcolor(n,","self.strip.setpixelcolor(self.pixelmatrix.get(x,","self.strip.show()","sequenc","setbrightness(self,","setpixelcolor(self,","setpixelcolorrgb(self,","setpixelcolorxy(self,","setpixelcolorxyrgb(self,","setsegmentcolorrgb(self,","show(self):","valu","values.","white","white))","x,","y),","y,"],"Scripting/SupportLib/neo.strip.html":["\"\"\"","\"\"\"get","\"\"\"return","\"\"\"scale","\"\"\"set","\"\"\"updat","(in","(where","0","0):","24","255","=","access","allow","bit","blue","blue,","bright","brightest.","brightness):","brightness.","buffer","buffer.","buffer.\"\"\"","color","color(red,","color)","color):","color.","compon","darkest","data","def","display","display.\"\"\"","each","getbrightness(self):","getpixelcolor(self,","getpixels(self):","getsegmentrange(self.segments,","green,","highest","intens","intensity).","led","lowest","n","n):","n,","n.\"\"\"","number","numpixels(self):","object","order).","pixel","posit","provid","red,","return","rgb","segment):","self.led_count","self.strip.getbrightness()","self.strip.getpixelcolor(n)","self.strip.getpixels()","self.strip.setbrightness(brightness)","self.strip.setpixelcolor(n,","self.strip.setpixelcolor(self.pixelmatrix.get(x,","self.strip.show()","sequenc","setbrightness(self,","setpixelcolor(self,","setpixelcolorrgb(self,","setpixelcolorxy(self,","setpixelcolorxyrgb(self,","setsegmentcolorrgb(self,","show(self):","strip","valu","values.","white","white))","x,","y),","y,"],"Scripting/SupportLib/strip.html":["\"\"\"","\"\"\"get","\"\"\"return","\"\"\"scale","\"\"\"set","\"\"\"updat","(in","(where","0","0):","24","255","=","access","allow","bit","blue","blue,","bright","brightest.","brightness):","brightness.","buffer","buffer.","buffer.\"\"\"","color","color(red,","color)","color):","color.","compon","darkest","data","def","display","display.\"\"\"","each","getbrightness(self):","getpixelcolor(self,","getpixels(self):","getsegmentrange(self.segments,","green,","highest","intens","intensity).","led","lowest","n","n):","n,","n.\"\"\"","number","numpixels(self):","object","order).","pixel","posit","provid","red,","return","rgb","segment):","self.led_count","self.strip.getbrightness()","self.strip.getpixelcolor(n)","self.strip.getpixels()","self.strip.setbrightness(brightness)","self.strip.setpixelcolor(n,","self.strip.setpixelcolor(self.pixelmatrix.get(x,","self.strip.show()","sequenc","setbrightness(self,","setpixelcolor(self,","setpixelcolorrgb(self,","setpixelcolorxy(self,","setpixelcolorxyrgb(self,","setsegmentcolorrgb(self,","show(self):","strip","valu","values.","white","white))","x,","y),","y,"],"Scripting/SupportLib/":["(in","(where","(x,","0","0)","24","255","=","access","actual","allow","bit","blue","blue,","bright","brightest.","brightness.","buffer","buffer.","chang","class","color","color(red,","color)","color.","compon","convert","darkest","data","defin","display","display.","each","green","green,","hexadecim","hexcolor(value)","highest","instanti","intens","intensity).","intensity.","itself.","led","led's.","leds,","leds.","librari","lowest","luxcenaneo.strip","made","matrix","n","n.","neo.strip","new","number","object","on","order).","pixel","posit","provid","red,","refeer","return","rgb","scale","segment","sequenc","set","shouldn't","softwar","strip","strip.getbrightness():","strip.getpixelcolor(n)","strip.getpixels():","strip.numpixels():","strip.setbrightness(brightness)","strip.setpixelcolor(n,","strip.setpixelcolorrgb(n,","strip.setpixelcolorxy(x,","strip.setpixelcolorxyrgb(x,","strip.setsegmentcolorrgb(segment,","strip.show()","support","thing","up","us","valu","value.","values.","want","white","whole","y)","y,"]},"length":10},"tokenStore":{"root":{"0":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.02926829268292683},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.04201680672268908}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.013636363636363636}}}}},"1":{"0":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"!":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.03418803418803419}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"8":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"2":{"4":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}},"5":{"5":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.02926829268292683},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.04201680672268908}}},"docs":{}},"docs":{}},"5":{"3":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"8":{"0":{"0":{"0":{"0":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"(":{"3":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"s":{"docs":{},"s":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}}}}}}},"i":{"docs":{},"n":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}},"m":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}},"d":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"p":{"docs":{},"p":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},".":{"docs":{},"j":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"y":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.014634146341463415},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004545454545454545}}}},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},":":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"y":{"docs":{},":":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004524886877828055}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.024390243902439025},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"f":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.05339805825242718},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.05339805825242718},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.04878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.014218009478672985}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"s":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"i":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}}},"o":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}}},"m":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"y":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"c":{"docs":{},"h":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}},"r":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"i":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"s":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},"e":{"docs":{},"!":{"docs":{"Usage/":{"ref":"Usage/","tf":0.1}}}}}}},"i":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0049261083743842365}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"o":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.03398058252427184},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.03398058252427184},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.03414634146341464},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.029411764705882353}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"k":{"docs":{},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"1":{"docs":{},"n":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/":{"ref":"Usage/","tf":0.15},"Usage/Install.html":{"ref":"Usage/Install.html","tf":10.03960396039604},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"e":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{},"s":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"t":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}}},"g":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},":":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}}},"u":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/":{"ref":"Usage/","tf":0.1},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.0594059405940594},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"n":{"docs":{},"e":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}}},"d":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.043689320388349516},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.043689320388349516},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.04390243902439024},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}},"s":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"s":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"t":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.017094017094017096}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":5.004201680672269}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"s":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.024390243902439025},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},"e":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.04950495049504951},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523}},".":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":10},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":10},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},",":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"w":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},")":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},"x":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"o":{"docs":{},"w":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0045871559633027525}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802}},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"i":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.024390243902439025},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.02100840336134454}}}}},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.024390243902439025},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.03977272727272727}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"d":{"docs":{},"i":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"e":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"d":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.029411764705882353}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"u":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}},"p":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"g":{"docs":{},"b":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"w":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004878048780487805}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0048543689320388345}}}}}}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004524886877828055}}}},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004878048780487805}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"t":{"docs":{},"h":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.0297029702970297},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"i":{"docs":{},"p":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":10},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":10},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"n":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"x":{"docs":{},"y":{"docs":{},"(":{"docs":{},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.005025125628140704}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}},"e":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}},"u":{"docs":{},"p":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004545454545454545}}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004878048780487805}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0048543689320388345}}}}}}},"n":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004524886877828055}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0045871559633027525}}}}}}}}}}},"x":{"docs":{},"y":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004484304932735426}}}}}}},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0045871559633027525}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004784688995215311}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0049261083743842365}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"m":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"n":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"s":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},")":{"docs":{},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.009852216748768473}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.014634146341463415},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0049261083743842365}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"x":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004784688995215311}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004524886877828055}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"c":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.03409090909090909}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"p":{"docs":{},"y":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},":":{"docs":{},":":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},":":{"docs":{},":":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523}}}},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"b":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":5.004201680672269}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.029914529914529916},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"a":{"docs":{},"g":{"docs":{"Usage/":{"ref":"Usage/","tf":10.05}}}},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"n":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}}}},"p":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"Usage/":{"ref":"Usage/","tf":0.1},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"l":{"docs":{},"i":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":10.015873015873016}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"i":{"docs":{},"g":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"u":{"docs":{},"r":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":10.004273504273504}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},")":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},":":{"docs":{},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":10}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"\"":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"d":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.024271844660194174},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.024390243902439025},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.046218487394957986}},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.014634146341463415},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},":":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004545454545454545}}}},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}}},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004878048780487805}}}}}}},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"s":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"k":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"w":{"docs":{},"o":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"r":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},")":{"docs":{},")":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.014563106796116505},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.014634146341463415},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.0049261083743842365}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}},".":{"docs":{},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}}}}}}},"/":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}},"/":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}},"f":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"l":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}},"]":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"x":{"docs":{},"'":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"l":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"v":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}},"d":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}},"k":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}}}}}},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.017094017094017096},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"c":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"e":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}},"u":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"l":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}},"i":{"docs":{},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"a":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"l":{"docs":{},"u":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.02912621359223301},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.02926829268292683},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}}},"y":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"t":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004784688995215311}}}},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}},"\"":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"_":{"docs":{},"h":{"docs":{},"z":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"\"":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.03398058252427184},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.03398058252427184},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.03414634146341464},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004739336492890996}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.009478672985781991}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004545454545454545}}}}}},"e":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.019417475728155338},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.01951219512195122},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004784688995215311}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.0048543689320388345},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.004878048780487805},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004524886877828055}}}}}}}}}},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"'":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}}}}}}}}}},"[":{"1":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"2":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"4":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"5":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"7":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"8":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"[":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"3":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"6":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}},"]":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"{":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}},"}":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},")":{"docs":{},";":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}}},"+":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}},":":{"docs":{},"`":{"docs":{},"(":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"=":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182},"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},">":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"`":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"`":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}},"":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"x":{"docs":{},",":{"docs":{"Scripting/Luxcena-neo library/neo.strip.html":{"ref":"Scripting/Luxcena-neo library/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/neo.strip.html":{"ref":"Scripting/SupportLib/neo.strip.html","tf":0.009708737864077669},"Scripting/SupportLib/strip.html":{"ref":"Scripting/SupportLib/strip.html","tf":0.00975609756097561},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004784688995215311}}}}},"length":23753},"corpusTokens":["\"\"\"","\"\"\"get","\"\"\"return","\"\"\"scale","\"\"\"set","\"\"\"updat","\"/usrdata/usrcode/example\");","\"led","\"led_channel\":","\"led_count\":","\"led_dma\":","\"led_freq_hz\":","\"led_invert\":","\"led_pin\":","\"line\":","\"matrix\":","\"random\":","\"real\"","\"segmentconfiguration\":","\"segments\":","\"snake\",","\"snake\":","$","'nano'.","'segmentsconfiguration'","(3","(_code)","(_stderr)","(_stdout)","(dev)","(in","(prefer","(ssh","(where","(x,","+","./bin/install.sh","//","/home/lux","/tmp/luxcena","/usr/bin","0","0)","0):","0.","10","10!","10,","10],","18,","24","255","53,","800000,",":`(","=","=>","[","[,","[1,","[10,","[2,","[4,","[5,","[7,","[8,","[[0,","[[3,","[[6,","[],","]","_code","`throw`","above,","access","access,","actual","add","alia","allow","anoth","answer","app","app.j","appear","arrang","array,","assum","assur","attach","back","badli","be","below:","bit","blue","blue,","branch","branch.","bright","brightest.","brightness):","brightness.","buffer","buffer.","buffer.\"\"\"","build","by:","call","called.","cd","chang","channel","check","class","class,","cli","clone","closes,","code","code.","color","color(red,","color)","color):","color.","color:","command","command$","command)","command:$","commands$","compileandrun","compilerun.python(global.dirswap","compon","conf","config","configur","connect","console.","contain","control.","controlling.","convert","converter.","count","count\"","crash.","current","darkest","data","def","default","defaults:","defin","delet","depend","dimenson","din","direct)","directory,","display","display.","display.\"\"\"","dma","do,","doing.","don't","done","dy","each","easi","editor","editor,","element","else,","empti","encount","enter","entri","entry.pi","error","event","exampl","exit","exits,","export","f","fail","fail.","fall","false,","false],","false]]","false]],","file","file.","find","fix'","folder","folder,","folder.","follow","full","gener","get","getbrightness(self):","getpixelcolor(self,","getpixels(self):","getsegmentrange(self.segments,","git","gpio","green","green,","guid","guide!","hang,","hard","have","haven't","here","here.","hexadecim","hexcolor(value)","highest","hour","https://github.com/jakobst1n/luxcena","index","initi","instal","install.","installed.","installing:","instanti","instruct","instructions:","intens","intensity).","intensity.","interfac","interface.","introduct","invert","issu","it,","it.","itself.","know","languag","last","later.","leav","led","led'","led's.","led_channel","led_count","led_dma","led_invert","led_pin","leds,","leds.","lenght","length,","level","librari","likings.","line","line.","list,","listner","local","located):","located.","log","look","lowest","lux","luxcena","luxcenaneo.strip","made","make","matrix","messag","method","modul","more","move","n","n):","n,","n.","n.\"\"\"","nano.","need","neo","neo,","neo.","neo.install.log","neo.sh","neo.strip","neo/userdata/config/strip.json","neo?","new","newer","newer),","newest","next","now","number","numpixels(self):","object","object.","old","on","onc","one.","open","option","option.","order).","out","out.","output","output.","parameter,","parameters,","path","pi","pixel","pixel'","place","pleas","point","port","port.","posit","possibl","post","print","process","process,","provid","python","python,","python.compil","python.constructor","python.run","pythonsupportfil","questions.","raspberri","readi","realli","reason","recommend","red,","refeer","refer","remov","repres","requir","return","rgb","root","rpi","run","sc","sc.on(\"close\",","sc.on(\"stderr::end\",","sc.on(\"stderr::out\",","sc.on(\"stdout::data\",","sc.on(\"stdout::end\",","scale","screen.","script","script,","script.","script.py,","scripts.","see","seem","segment","segment):","segment,","segmentconfigur","segments.","self.led_count","self.strip.getbrightness()","self.strip.getpixelcolor(n)","self.strip.getpixels()","self.strip.setbrightness(brightness)","self.strip.setpixelcolor(n,","self.strip.setpixelcolor(self.pixelmatrix.get(x,","self.strip.show()","sent","sequenc","server.","session,","set","setbrightness(brightness)","setbrightness(self,","setpixelcolor","setpixelcolor(n,","setpixelcolor(self,","setpixelcolorrgb(self,","setpixelcolorxy(self,","setpixelcolorxy(x,","setpixelcolorxyrgb(self,","setsegmentcolorrgb(self,","setup","setup.","setup?","shield","shield,","shortli","shouldn't","show","show()","show(self):","show:","simpl","softwar","software.","someon","someth","something,","something?","sourc","spawn","spent","square,","start","still","stop","stream.","strip","strip.getbrightness():","strip.getpixelcolor(n)","strip.getpixelcolor(n):","strip.getpixels():","strip.numpixels():","strip.setbrightness(brightness)","strip.setpixelcolor(n,","strip.setpixelcolorrgb(n,","strip.setpixelcolorxy(x,","strip.setpixelcolorxyrgb(x,","strip.setsegmentcolorrgb(segment,","strip.show()","strongli","subdir","sudo","sum","support","system","tail","take","termin","them.","thing","thing.","thing?","this:","through","touched,","troubl","troubleshoot","true],","true]],","two","uninstal","unless","up","updat","us","usag","user","usual","valu","value.","values.","var","verbos","version","vim","want","white","white))","whole","word","work","worri","write","x,","y)","y),","y,","ye","yet,","yourself.","{","}","});",""],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Luxcena-Neo\nDependencies \nBranch (dev) \nInstall\nPlease refer to this guide for installing: Install Luxcena-neo.\nIssues\nThere might still be a bit hard for someone not having spent hours looking at the source to use this software.\nBut i assure you that it will be really easy to use shortly\n"},"Usage/":{"url":"Usage/","title":"Usage","keywords":"","body":"Usage\nInstall\nWant to install luxcena-neo? This is the guide!\nConfiguration\nJust installed luxcena-neo, or you have changed your setup? This is the guide!\nCLI\nReady to start the thing? Or change something?\n"},"Usage/Install.html":{"url":"Usage/Install.html","title":"Install","keywords":"","body":"Installation\nIf you want to install luxcena-neo to use it, these are the instructions:\n\nRequirements\n\nThe luxcena-shield\nAccess to the raspberry pi (SSH or direct)\nRoot access (preferably through the sudo command)\n\nInstall\n\nStart with logging into your Raspberry Pi\nRun these commands$ git clone https://github.com/JakobST1n/Luxcena-Neo\n$ cd Luxcena-Neo\n$ sudo ./bin/install.sh\n\n\nFollow the instructions on screen. You should answer yes to most of the questions.\nThe install-process might seem to hang, but there is just no output being sent to the console. If you want to see a bit more verbose output. Open another terminal session, and run this command:$ tail -n 10 -f /tmp/luxcena-neo.install.log\n\nThis is also where you will find possible reasons for a failed install.\nLuxcena-Neo should now be installed. Start it with this command$ luxcena-neo start\n\n\n\nTroubleshooting\nWe haven't encountered any troubles yet, but once we do, we will post fix'es here.\n\nYou should now be all set to configuring luxcena-neo.\n"},"Usage/Configuration.html":{"url":"Usage/Configuration.html","title":"Configuration","keywords":"","body":"Configuration\nHow to setup luxcena-neo to work with your setup\n\n$ sudo lux-neo conf\n\nWhen running the command above, a config file should appear in the editor 'nano'.\n{\n \"led_count\": 53,\n \"segments\": [],\n \"matrix\": [],\n \"segmentConfiguration\": \"snake\",\n \"led_pin\": 18,\n \"led_freq_hz\": 800000,\n \"led_dma\": 10,\n \"led_invert\": false,\n \"led_channel\": 0\n}\n\nIf you rather want to use vim or another editor, the file is at /home/lux-neo/userdata/config/strip.json\n\nled_count\nThis is the number of LED's you want to control.\nsegments\nThis is a simple list, here you should add the lenghts of all your segments. Please enter the \"real\" length, and don't start counting from 0. If you just want one segment, you should just have one element in the list, which is the number of led's you are controlling.\nWhen summing this list, it should check out with the \"led-count\"-option.\nmatrix\nThis is a two dimensonal array, used to arrange the segments in a matrix of your likings. Here you enter the segment-number to represent them. In the example above, all the segments are in one line. If you want to have them in a square, it could look like this:\n\"segments\": [10, 10, 10, 10, 10, 10, 10, 10, 10],\n\"matrix\": [\n [[0, false], [1, true], [2, false]],\n [[3, true], [4, false], [5, true]],\n [[6, false], [7, true], [8, false]]\n]\n\nEach entry looks is a list, with two parameters, [, ]\nIf you don't have a reference to all the segments or something, the matrix setup will fail. And fall back to 'segmentsconfiguration'\n\nsegmentconfiguration\nIf the matrix-option is empty or badly setup. The matrix will be set up using one of these defaults:\n\"snake\":\n\"line\":\n\"random\":\nled_pin\nIf using the luxcena-shield, you shouldn't have to worry about this option. But set it to the GPIO-port connected to your pixel's din-port.\nled_dma\nIf using a newer RPi (3 or newer), leave this as 10! Or your file-system might crash.\n\nThis is the dma-channel used to generate the data-stream. If you for some reason need channel 10 for something else, you can change it. But i strongly recommend leaving it to 10!\nled_invert\nThis should not be touched, unless you are using a inverting level converter.\nled_channel\nLeave this as default unless you know what you are doing.\n\nNow you might want to take a look at the command line interface.\n"},"Usage/CLI.html":{"url":"Usage/CLI.html","title":"CLI","keywords":"","body":"Command line interface\n\nThis gets installed in the /usr/bin directory, and can be called by:\n$ luxcena-neo.sh\n\nor is alias\n$ lux-neo\n\nThis CLI assumes root access, so please run it with sudo\n\nOptions\nsudo lux-neo uninstall\nUninstall the whole thing. You will have to remove this script yourself.\nsudo lux-neo update\nUpdate to the newest version on the current branch.\nsudo lux-neo conf\nOpen the strip-config in nano.\nsudo lux-neo start\nStart the server.\nsudo lux-neo stop\nStop the server.\n"},"Contributing/Modules/CompileAndRun.html":{"url":"Contributing/Modules/CompileAndRun.html","title":"CompileAndRun","keywords":"","body":"Index\n\nLocals\nvar pythonSupportFiles\nPoints to the files for our python support code. They should be in a subdir of the module itself.\nExported\nclass Python\nThis is exported as Python, just so that we could add other languages later. Used to build and run python-scripts with our support-code.\nmethod Python.constructor\nTakes one parameter, which is the full path to the folder where the script is located.\nWhen initializing the class, this will be called. Can be done like this:\nnew compileRun.Python(global.DirSwap + \"/usrData/usrCode/example\");\n\nmethod Python.compile\nThis deletes old build-folder, and makes a new one. It then moves all required files into the build-folder, making us ready for running the script.\nmethod Python.run\nSpawns a new process, starting entry.py in our build-folder. It also attaches event-listners on our class-object. All of them is in the example below:\nlet sc = new compileRun.Python(global.DirSwap + \"/usrData/usrCode/example\");\n\n// When data is printed from the python-script\nsc.on(\"stdout::data\", (_stdout) => { });\n// Last write when script closes, any exiting messages\nsc.on(\"stdout::end\", (_stdout) => { });\n// When something is printed from the python-script to the error-out. Usually when a `throw` is called\nsc.on(\"stderr::out\", (_stderr) => { });\n// Last words when process is dying from an error :`(\nsc.on(\"stderr::end\", (_stderr) => { });\n// When script exits, _code is the exit-code\nsc.on(\"close\", (_code) => { });\n\nPython\nThis is the support-files for user-made scripts.\nEntry.py\nThe entry-point when running a script. A file called script.py, containing the user-script, should be placed next to this file. Starting it should be done like this (Where app-root is where our app.js is located):\npython entry.py \n"},"Scripting/Luxcena-neo library/neo.strip.html":{"url":"Scripting/Luxcena-neo library/neo.strip.html","title":"neo.strip","keywords":"","body":"def show(self):\n \"\"\"Update the display with the data from the LED buffer.\"\"\"\n self.strip.show()\ndef setPixelColor(self, n, color):\n \"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n \"\"\"\n self.strip.setPixelColor(n, color)\ndef setPixelColorXY(self, x, y, color):\n \"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n \"\"\"\n self.strip.setPixelColor(self.pixelMatrix.get(x, y), color)\ndef setPixelColorRGB(self, n, red, green, blue, white = 0):\n \"\"\"Set LED at position n to the provided red, green, and blue color.\n Each color component should be a value from 0 to 255 (where 0 is the\n lowest intensity and 255 is the highest intensity).\n \"\"\"\n self.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setPixelColorXYRGB(self, x, y, red, green, blue, white = 0):\n \"\"\"Set LED at position n to the provided red, green, and blue color.\n Each color component should be a value from 0 to 255 (where 0 is the\n lowest intensity and 255 is the highest intensity).\n \"\"\"\n self.strip.setPixelColor(self.pixelMatrix.get(x, y), Color(red, green, blue, white))\ndef setSegmentColorRGB(self, segment):\n for n in getSegmentRange(self.segments, segment):\n self.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setBrightness(self, brightness):\n \"\"\"Scale each LED in the buffer by the provided brightness. A brightness\n of 0 is the darkest and 255 is the brightest.\n \"\"\"\n self.strip.setBrightness(brightness)\ndef getBrightness(self):\n \"\"\"Get the brightness value for each LED in the buffer. A brightness\n of 0 is the darkest and 255 is the brightest.\n \"\"\"\n return self.strip.getBrightness()\ndef getPixels(self):\n \"\"\"Return an object which allows access to the LED display data as if\n it were a sequence of 24-bit RGB values.\n \"\"\"\n return self.strip.getPixels()\ndef numPixels(self):\n \"\"\"Return the number of pixels in the display.\"\"\"\n return self.LED_COUNT\ndef getPixelColor(self, n):\n \"\"\"Get the 24-bit RGB color value for the LED at position n.\"\"\"\n return self.strip.getPixelColor(n)\n"},"Scripting/SupportLib/neo.strip.html":{"url":"Scripting/SupportLib/neo.strip.html","title":"strip","keywords":"","body":"def show(self):\n \"\"\"Update the display with the data from the LED buffer.\"\"\"\n self.strip.show()\ndef setPixelColor(self, n, color):\n \"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n \"\"\"\n self.strip.setPixelColor(n, color)\ndef setPixelColorXY(self, x, y, color):\n \"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n \"\"\"\n self.strip.setPixelColor(self.pixelMatrix.get(x, y), color)\ndef setPixelColorRGB(self, n, red, green, blue, white = 0):\n \"\"\"Set LED at position n to the provided red, green, and blue color.\n Each color component should be a value from 0 to 255 (where 0 is the\n lowest intensity and 255 is the highest intensity).\n \"\"\"\n self.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setPixelColorXYRGB(self, x, y, red, green, blue, white = 0):\n \"\"\"Set LED at position n to the provided red, green, and blue color.\n Each color component should be a value from 0 to 255 (where 0 is the\n lowest intensity and 255 is the highest intensity).\n \"\"\"\n self.strip.setPixelColor(self.pixelMatrix.get(x, y), Color(red, green, blue, white))\ndef setSegmentColorRGB(self, segment):\n for n in getSegmentRange(self.segments, segment):\n self.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setBrightness(self, brightness):\n \"\"\"Scale each LED in the buffer by the provided brightness. A brightness\n of 0 is the darkest and 255 is the brightest.\n \"\"\"\n self.strip.setBrightness(brightness)\ndef getBrightness(self):\n \"\"\"Get the brightness value for each LED in the buffer. A brightness\n of 0 is the darkest and 255 is the brightest.\n \"\"\"\n return self.strip.getBrightness()\ndef getPixels(self):\n \"\"\"Return an object which allows access to the LED display data as if\n it were a sequence of 24-bit RGB values.\n \"\"\"\n return self.strip.getPixels()\ndef numPixels(self):\n \"\"\"Return the number of pixels in the display.\"\"\"\n return self.LED_COUNT\ndef getPixelColor(self, n):\n \"\"\"Get the 24-bit RGB color value for the LED at position n.\"\"\"\n return self.strip.getPixelColor(n)\n"},"Scripting/SupportLib/strip.html":{"url":"Scripting/SupportLib/strip.html","title":"strip","keywords":"","body":"show(self):\n\"\"\"Update the display with the data from the LED buffer.\"\"\"\nself.strip.show()\ndef setPixelColor(self, n, color):\n\"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n\"\"\"\nself.strip.setPixelColor(n, color)\ndef setPixelColorXY(self, x, y, color):\n\"\"\"Set LED at position n to the provided 24-bit color value (in RGB order).\n\"\"\"\nself.strip.setPixelColor(self.pixelMatrix.get(x, y), color)\ndef setPixelColorRGB(self, n, red, green, blue, white = 0):\n\"\"\"Set LED at position n to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\n\"\"\"\nself.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setPixelColorXYRGB(self, x, y, red, green, blue, white = 0):\n\"\"\"Set LED at position n to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\n\"\"\"\nself.strip.setPixelColor(self.pixelMatrix.get(x, y), Color(red, green, blue, white))\ndef setSegmentColorRGB(self, segment):\nfor n in getSegmentRange(self.segments, segment):\n self.strip.setPixelColor(n, Color(red, green, blue, white))\ndef setBrightness(self, brightness):\n\"\"\"Scale each LED in the buffer by the provided brightness. A brightness\nof 0 is the darkest and 255 is the brightest.\n\"\"\"\nself.strip.setBrightness(brightness)\ndef getBrightness(self):\n\"\"\"Get the brightness value for each LED in the buffer. A brightness\nof 0 is the darkest and 255 is the brightest.\n\"\"\"\nreturn self.strip.getBrightness()\ndef getPixels(self):\n\"\"\"Return an object which allows access to the LED display data as if\nit were a sequence of 24-bit RGB values.\n\"\"\"\nreturn self.strip.getPixels()\ndef numPixels(self):\n\"\"\"Return the number of pixels in the display.\"\"\"\nreturn self.LED_COUNT\ndef getPixelColor(self, n):\n\"\"\"Get the 24-bit RGB color value for the LED at position n.\"\"\"\nreturn self.strip.getPixelColor(n)\n"},"Scripting/SupportLib/":{"url":"Scripting/SupportLib/","title":"Support Library","keywords":"","body":"Support Library\n\nclass Strip\nThis is the object you are refeering to when you want to do things with LED's.\nYou shouldn't have to do instantiate your own new strip-object as you can use the one\nset up by the software itself.\nLuxcenaNeo.strip\nor\nneo.strip\n\nStrip.show()\nDisplay all the changes made to the LEDs, on the actual LEDs.\nStrip.setPixelColor(n, color)\nSet LED at position n to the provided 24-bit color value (in RGB order).\nStrip.setPixelColorXY(x, y, color)\nSet LED at position (x, y) in the defined matrix to the provided 24-bit color value (in RGB order).\nStrip.setPixelColorRGB(n, red, green, blue, white = 0)\nSet LED at position n to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setPixelColorXYRGB(x, y, red, green, blue, white = 0)\nSet LED at position (x, y) in the defined matrix to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setSegmentColorRGB(segment, red, green, blue, white = 0)\nSet a whole segment to the provided red, green and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setBrightness(brightness)\nScale each LED in the buffer by the provided brightness. A brightness\nof 0 is the darkest and 255 is the brightest.\nStrip.getBrightness():\nGet the brightness value for each LED in the buffer. A brightness\nof 0 is the darkest and 255 is the brightest.\nStrip.getPixels():\nReturn an object which allows access to the LED display data as if\nit were a sequence of 24-bit RGB values.\nStrip.numPixels():\nReturn the number of pixels in the display.\nStrip.getPixelColor(n)\nGet the 24-bit RGB color value for the LED at position n.\n\nColor(red, green, blue, white = 0)\nConvert the provided red, green, blue color to a 24-bit color value.\nEach color component should be a value 0-255 where 0 is the lowest intensity\nand 255 is the highest intensity.\nhexColor(value)\nConvert the provided hexadecimal color to a 24-bit color value.\n"}}}
\ No newline at end of file
+{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(dev)","assur","bit","branch","depend","easi","guid","hard","have","hour","instal","installing:","introduct","issu","look","luxcena","neo","neo.","pleas","realli","refer","shortli","software.","someon","sourc","spent","still","us"],"Usage/":["chang","cli","configur","guide!","instal","luxcena","neo,","neo?","readi","setup?","something?","start","thing?","usag","want"],"Usage/Install.html":["$","(prefer","(ssh","./bin/install.sh","/tmp/luxcena","10","access","anoth","answer","be","bit","cd","clone","command$","command)","command:$","commands$","configur","console.","direct)","do,","encount","f","fail","find","fix'","follow","git","hang,","haven't","here.","https://github.com/jakobst1n/luxcena","instal","install.","installed.","instruct","instructions:","it,","log","luxcena","more","n","neo","neo.","neo.install.log","now","onc","open","output","output.","pi","possibl","post","process","questions.","raspberri","reason","requir","root","run","screen.","see","seem","sent","session,","set","shield","start","sudo","tail","termin","through","troubl","troubleshoot","us","verbos","want","ye","yet,"],"Usage/Configuration.html":["\"led","\"led_channel\":","\"led_count\":","\"led_dma\":","\"led_freq_hz\":","\"led_invert\":","\"led_pin\":","\"line\":","\"matrix\":","\"random\":","\"real\"","\"segmentconfiguration\":","\"segments\":","\"snake\",","\"snake\":","$","'nano'.","'segmentsconfiguration'","(3","/home/lux","0","0.","10","10!","10,","10],","18,","53,","800000,","[","[,","[1,","[10,","[2,","[4,","[5,","[7,","[8,","[[0,","[[3,","[[6,","[],","]","above,","add","anoth","appear","arrang","array,","back","badli","chang","channel","check","command","conf","config","configur","connect","control.","controlling.","converter.","count","count\"","crash.","data","default","defaults:","dimenson","din","dma","doing.","don't","each","editor","editor,","element","else,","empti","enter","entri","exampl","fail.","fall","false,","false],","false]]","false]],","file","gener","gpio","here","interface.","invert","it.","know","leav","led'","led_channel","led_count","led_dma","led_invert","led_pin","lenght","length,","level","likings.","line","line.","list,","look","lux","luxcena","matrix","need","neo","neo/userdata/config/strip.json","newer","newer),","now","number","on","option","option.","out","parameters,","pixel'","pleas","port","port.","reason","recommend","refer","repres","rpi","run","segment","segment,","segmentconfigur","segments.","set","setup","setup.","shield,","shouldn't","simpl","someth","something,","square,","start","stream.","strongli","sudo","sum","system","take","them.","this:","touched,","true],","true]],","two","unless","up","us","vim","want","work","worri","{","}"],"Usage/CLI.html":["$","/usr/bin","access,","alia","assum","branch.","by:","call","cli","command","conf","config","current","directory,","get","instal","interfac","line","lux","luxcena","nano.","neo","neo.sh","newest","open","option","pleas","remov","root","run","script","server.","start","stop","strip","sudo","thing.","uninstal","updat","version","whole","yourself."],"Scripting/SupportLib/":["(in","(where","(x,","0","0)","24","255","=","access","actual","allow","bit","blue","blue,","bright","brightest.","brightness.","buffer","buffer.","chang","class","color","color(red,","color)","color.","compon","convert","darkest","data","defin","display","display.","each","green","green,","hexadecim","hexcolor(value)","highest","instanti","intens","intensity).","intensity.","itself.","led","led's.","leds,","leds.","librari","lowest","luxcenaneo.strip","made","matrix","n","n.","neo.strip","new","number","object","on","order).","pixel","posit","provid","red,","refeer","return","rgb","scale","segment","sequenc","set","shouldn't","softwar","strip","strip.getbrightness():","strip.getpixelcolor(n)","strip.getpixels():","strip.numpixels():","strip.setbrightness(brightness)","strip.setpixelcolor(n,","strip.setpixelcolorrgb(n,","strip.setpixelcolorxy(x,","strip.setpixelcolorxyrgb(x,","strip.setsegmentcolorrgb(segment,","strip.show()","support","thing","up","us","valu","value.","values.","want","white","whole","y)","y,"],"Scripting/Examples/strandtest.html":["\"\"\"gener","\"\"\"movi","\"\"\"wipe","#","0","0)","255","3):","animation.\"\"\"","anyth","capabilities.","chaser","code","color","color)","colorwipe(color,","def","display","endless","fail...","fanci","import","iterations=10):","j","light","look","loop,","luxcenaneo","more","neo","neo.strip.numpixels(),","neo.strip.setpixelcolor(i+q,","neo.strip.setpixelcolor(i,","neo.strip.show()","neopixels'","pattern","pixel","po","positions.\"\"\"","precisely.","q","rainbow","range(0,","range(3):","range(iterations):","range(neo.strip.numpixels()):","run","script","see","show","strandtest","style","take","theater","theaterchase(color,","time","time.\"\"\"","time.sleep(wait_ms/1000.0)","wait_ms=50):","wait_ms=50,","well.","wheel(pos):"],"Contributing/Modules/CompileAndRun.html":["\"/usrdata/usrcode/example\");","(_code)","(_stderr)","(_stdout)","(where","+","//",":`(","=","=>","_code","`throw`","add","app","app.j","attach","below:","build","call","called.","class","class,","closes,","code","code.","compileandrun","compilerun.python(global.dirswap","contain","data","delet","done","dy","entri","entry.pi","error","event","exampl","exit","exits,","export","file","file.","folder","folder,","folder.","full","index","initi","itself.","languag","last","later.","listner","local","located):","located.","made","make","messag","method","modul","move","new","next","object.","old","on","one.","out.","parameter,","path","place","point","print","process","process,","python","python,","python.compil","python.constructor","python.run","pythonsupportfil","readi","requir","root","run","sc","sc.on(\"close\",","sc.on(\"stderr::end\",","sc.on(\"stderr::out\",","sc.on(\"stdout::data\",","sc.on(\"stdout::end\",","script","script,","script.","script.py,","scripts.","someth","spawn","start","subdir","support","take","this:","us","user","usual","var","word","write","{","});",""]},"length":8},"tokenStore":{"root":{"0":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.04201680672268908},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}},"1":{"0":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"!":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.03418803418803419}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"8":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"2":{"4":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}},"5":{"5":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.04201680672268908},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}},"docs":{}},"docs":{}},"3":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}}},"5":{"3":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"8":{"0":{"0":{"0":{"0":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"(":{"3":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"s":{"docs":{},"s":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"i":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},")":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}},"m":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}},"d":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"p":{"docs":{},"p":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},".":{"docs":{},"j":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"y":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},":":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"y":{"docs":{},":":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"f":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.04}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"s":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"i":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}},"o":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}}},"m":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"y":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"c":{"docs":{},"h":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}},"r":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"i":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}}}}}},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"s":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},"e":{"docs":{},"!":{"docs":{"Usage/":{"ref":"Usage/","tf":0.1}}}}}}},"i":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"p":{"docs":{},"i":{"docs":{},"o":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.029411764705882353}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"k":{"docs":{},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"1":{"docs":{},"n":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/":{"ref":"Usage/","tf":0.15},"Usage/Install.html":{"ref":"Usage/Install.html","tf":10.03960396039604},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"e":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{},"s":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"t":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"=":{"1":{"0":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}},"docs":{}},"docs":{}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.04}}}}}}}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}},"p":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}},"g":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},":":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}},"u":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/":{"ref":"Usage/","tf":0.1},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.0594059405940594},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"n":{"docs":{},"e":{"docs":{},"o":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}}},"d":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}},"s":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"s":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"i":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"t":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.017094017094017096}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":5.004201680672269}}}}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"s":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},"e":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.04950495049504951},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},".":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"i":{"docs":{},"+":{"docs":{},"q":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}}},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}}}}}}}}}}}}},",":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"'":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"w":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728}},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},")":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"s":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},"x":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"o":{"docs":{},"w":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"i":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802}},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"o":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"i":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.02100840336134454}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"h":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.03977272727272727}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"d":{"docs":{},"i":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.03333333333333333},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"e":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"d":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.029411764705882353}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"w":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}},"3":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}},"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"o":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"u":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}},"p":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"g":{"docs":{},"b":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"w":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}},"t":{"docs":{},"h":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"a":{"docs":{},"w":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.03333333333333333}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.0297029702970297},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"i":{"docs":{},"p":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"n":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"x":{"docs":{},"y":{"docs":{},"(":{"docs":{},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"x":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"g":{"docs":{},"b":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":10.013333333333334}}}}}}}}}},"o":{"docs":{},"p":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"e":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.025210084033613446}},"u":{"docs":{},"p":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},"m":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"n":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"s":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}}},"c":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.03409090909090909}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"p":{"docs":{},"y":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"s":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},":":{"docs":{},":":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},":":{"docs":{},":":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.09523809523809523}}}},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":5.004201680672269},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}}}}},"b":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.06666666666666667},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.029914529914529916},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"a":{"docs":{},"g":{"docs":{"Usage/":{"ref":"Usage/","tf":10.05}}}},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"n":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}}}},"p":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"Usage/":{"ref":"Usage/","tf":0.1},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"l":{"docs":{},"i":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":10.015873015873016}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"i":{"docs":{},"g":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"u":{"docs":{},"r":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":10.004273504273504}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},")":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},":":{"docs":{},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"s":{"docs":{},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":10}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"\"":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.046218487394957986},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}}},"w":{"docs":{},"i":{"docs":{},"p":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}},"?":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05}}},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}},"s":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"k":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"w":{"docs":{},"o":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},".":{"docs":{},"\"":{"docs":{},"\"":{"docs":{},"\"":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}},"s":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"(":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"s":{"docs":{},"/":{"1":{"0":{"0":{"0":{"docs":{},".":{"0":{"docs":{},")":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.02666666666666667}}}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"Usage/":{"ref":"Usage/","tf":0.05},"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"s":{"docs":{},"=":{"5":{"0":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}},",":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}},"docs":{}},"docs":{}}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"r":{"docs":{},"i":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563}}}}},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},")":{"docs":{},":":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"$":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.019801980198019802},"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.031746031746031744}}},".":{"docs":{},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}}}}}}},"/":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}},"/":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}},"f":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},".":{"docs":{},".":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}},"l":{"docs":{},"l":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282}}},"]":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"x":{"docs":{},"'":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}},"l":{"docs":{},"e":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.01282051282051282},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.022727272727272728}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},",":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"v":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.021367521367521368},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}},"d":{"docs":{},"e":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"k":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.017045454545454544}}}}}}}},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.017094017094017096},"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},"c":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}},"e":{"docs":{},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}},"u":{"docs":{},"t":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.012605042016806723}},".":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}}}}}},"l":{"docs":{},"d":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"q":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}},"i":{"docs":{},"m":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.03361344537815126}},"e":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}},"s":{"docs":{},".":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.004201680672268907}}}}}}},"r":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"y":{"docs":{},"e":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}},"t":{"docs":{},",":{"docs":{"Usage/Install.html":{"ref":"Usage/Install.html","tf":0.009900990099009901}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{"Usage/CLI.html":{"ref":"Usage/CLI.html","tf":0.015873015873015872}}}}}}}}}},")":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}},",":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.008403361344537815}}}},"\"":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"_":{"docs":{},"h":{"docs":{},"z":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},":":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}},"\"":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}},"w":{"docs":{},"i":{"docs":{},"p":{"docs":{},"e":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}}}}}}},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"'":{"docs":{},".":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}},"s":{"docs":{},"e":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}}}}}}}}}}}}}}}}}}}}},"[":{"1":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"2":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"4":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"5":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"7":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"8":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}},"[":{"0":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"3":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"6":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}},"docs":{}},"]":{"docs":{},",":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}}}},"]":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.008547008547008548}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}}}}}},"{":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}},"}":{"docs":{"Usage/Configuration.html":{"ref":"Usage/Configuration.html","tf":0.004273504273504274}},")":{"docs":{},";":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}}},"=":{"docs":{"Scripting/SupportLib/":{"ref":"Scripting/SupportLib/","tf":0.01680672268907563},"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}},">":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.028409090909090908}}}},"#":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}},"j":{"docs":{"Scripting/Examples/strandtest.html":{"ref":"Scripting/Examples/strandtest.html","tf":0.013333333333333334}}},"+":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.011363636363636364}}},":":{"docs":{},"`":{"docs":{},"(":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}},"`":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"`":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}}}}}}},"":{"docs":{"Contributing/Modules/CompileAndRun.html":{"ref":"Contributing/Modules/CompileAndRun.html","tf":0.005681818181818182}}}},"length":607},"corpusTokens":["\"\"\"gener","\"\"\"movi","\"\"\"wipe","\"/usrdata/usrcode/example\");","\"led","\"led_channel\":","\"led_count\":","\"led_dma\":","\"led_freq_hz\":","\"led_invert\":","\"led_pin\":","\"line\":","\"matrix\":","\"random\":","\"real\"","\"segmentconfiguration\":","\"segments\":","\"snake\",","\"snake\":","#","$","'nano'.","'segmentsconfiguration'","(3","(_code)","(_stderr)","(_stdout)","(dev)","(in","(prefer","(ssh","(where","(x,","+","./bin/install.sh","//","/home/lux","/tmp/luxcena","/usr/bin","0","0)","0.","10","10!","10,","10],","18,","24","255","3):","53,","800000,",":`(","=","=>","[","[,","[1,","[10,","[2,","[4,","[5,","[7,","[8,","[[0,","[[3,","[[6,","[],","]","_code","`throw`","above,","access","access,","actual","add","alia","allow","animation.\"\"\"","anoth","answer","anyth","app","app.j","appear","arrang","array,","assum","assur","attach","back","badli","be","below:","bit","blue","blue,","branch","branch.","bright","brightest.","brightness.","buffer","buffer.","build","by:","call","called.","capabilities.","cd","chang","channel","chaser","check","class","class,","cli","clone","closes,","code","code.","color","color(red,","color)","color.","colorwipe(color,","command","command$","command)","command:$","commands$","compileandrun","compilerun.python(global.dirswap","compon","conf","config","configur","connect","console.","contain","control.","controlling.","convert","converter.","count","count\"","crash.","current","darkest","data","def","default","defaults:","defin","delet","depend","dimenson","din","direct)","directory,","display","display.","dma","do,","doing.","don't","done","dy","each","easi","editor","editor,","element","else,","empti","encount","endless","enter","entri","entry.pi","error","event","exampl","exit","exits,","export","f","fail","fail.","fail...","fall","false,","false],","false]]","false]],","fanci","file","file.","find","fix'","folder","folder,","folder.","follow","full","gener","get","git","gpio","green","green,","guid","guide!","hang,","hard","have","haven't","here","here.","hexadecim","hexcolor(value)","highest","hour","https://github.com/jakobst1n/luxcena","import","index","initi","instal","install.","installed.","installing:","instanti","instruct","instructions:","intens","intensity).","intensity.","interfac","interface.","introduct","invert","issu","it,","it.","iterations=10):","itself.","j","know","languag","last","later.","leav","led","led'","led's.","led_channel","led_count","led_dma","led_invert","led_pin","leds,","leds.","lenght","length,","level","librari","light","likings.","line","line.","list,","listner","local","located):","located.","log","look","loop,","lowest","lux","luxcena","luxcenaneo","luxcenaneo.strip","made","make","matrix","messag","method","modul","more","move","n","n.","nano.","need","neo","neo,","neo.","neo.install.log","neo.sh","neo.strip","neo.strip.numpixels(),","neo.strip.setpixelcolor(i+q,","neo.strip.setpixelcolor(i,","neo.strip.show()","neo/userdata/config/strip.json","neo?","neopixels'","new","newer","newer),","newest","next","now","number","object","object.","old","on","onc","one.","open","option","option.","order).","out","out.","output","output.","parameter,","parameters,","path","pattern","pi","pixel","pixel'","place","pleas","po","point","port","port.","posit","positions.\"\"\"","possibl","post","precisely.","print","process","process,","provid","python","python,","python.compil","python.constructor","python.run","pythonsupportfil","q","questions.","rainbow","range(0,","range(3):","range(iterations):","range(neo.strip.numpixels()):","raspberri","readi","realli","reason","recommend","red,","refeer","refer","remov","repres","requir","return","rgb","root","rpi","run","sc","sc.on(\"close\",","sc.on(\"stderr::end\",","sc.on(\"stderr::out\",","sc.on(\"stdout::data\",","sc.on(\"stdout::end\",","scale","screen.","script","script,","script.","script.py,","scripts.","see","seem","segment","segment,","segmentconfigur","segments.","sent","sequenc","server.","session,","set","setup","setup.","setup?","shield","shield,","shortli","shouldn't","show","simpl","softwar","software.","someon","someth","something,","something?","sourc","spawn","spent","square,","start","still","stop","strandtest","stream.","strip","strip.getbrightness():","strip.getpixelcolor(n)","strip.getpixels():","strip.numpixels():","strip.setbrightness(brightness)","strip.setpixelcolor(n,","strip.setpixelcolorrgb(n,","strip.setpixelcolorxy(x,","strip.setpixelcolorxyrgb(x,","strip.setsegmentcolorrgb(segment,","strip.show()","strongli","style","subdir","sudo","sum","support","system","tail","take","termin","theater","theaterchase(color,","them.","thing","thing.","thing?","this:","through","time","time.\"\"\"","time.sleep(wait_ms/1000.0)","touched,","troubl","troubleshoot","true],","true]],","two","uninstal","unless","up","updat","us","usag","user","usual","valu","value.","values.","var","verbos","version","vim","wait_ms=50):","wait_ms=50,","want","well.","wheel(pos):","white","whole","word","work","worri","write","y)","y,","ye","yet,","yourself.","{","}","});",""],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Luxcena-Neo\nDependencies \nBranch (dev) \nInstall\nPlease refer to this guide for installing: Install Luxcena-neo.\nIssues\nThere might still be a bit hard for someone not having spent hours looking at the source to use this software.\nBut i assure you that it will be really easy to use shortly\n"},"Usage/":{"url":"Usage/","title":"Usage","keywords":"","body":"Usage\nInstall\nWant to install luxcena-neo? This is the guide!\nConfiguration\nJust installed luxcena-neo, or you have changed your setup? This is the guide!\nCLI\nReady to start the thing? Or change something?\n"},"Usage/Install.html":{"url":"Usage/Install.html","title":"Install","keywords":"","body":"Installation\nIf you want to install luxcena-neo to use it, these are the instructions:\n\nRequirements\n\nThe luxcena-shield\nAccess to the raspberry pi (SSH or direct)\nRoot access (preferably through the sudo command)\n\nInstall\n\nStart with logging into your Raspberry Pi\nRun these commands$ git clone https://github.com/JakobST1n/Luxcena-Neo\n$ cd Luxcena-Neo\n$ sudo ./bin/install.sh\n\n\nFollow the instructions on screen. You should answer yes to most of the questions.\nThe install-process might seem to hang, but there is just no output being sent to the console. If you want to see a bit more verbose output. Open another terminal session, and run this command:$ tail -n 10 -f /tmp/luxcena-neo.install.log\n\nThis is also where you will find possible reasons for a failed install.\nLuxcena-Neo should now be installed. Start it with this command$ luxcena-neo start\n\n\n\nTroubleshooting\nWe haven't encountered any troubles yet, but once we do, we will post fix'es here.\n\nYou should now be all set to configuring luxcena-neo.\n"},"Usage/Configuration.html":{"url":"Usage/Configuration.html","title":"Configuration","keywords":"","body":"Configuration\nHow to setup luxcena-neo to work with your setup\n\n$ sudo lux-neo conf\n\nWhen running the command above, a config file should appear in the editor 'nano'.\n{\n \"led_count\": 53,\n \"segments\": [],\n \"matrix\": [],\n \"segmentConfiguration\": \"snake\",\n \"led_pin\": 18,\n \"led_freq_hz\": 800000,\n \"led_dma\": 10,\n \"led_invert\": false,\n \"led_channel\": 0\n}\n\nIf you rather want to use vim or another editor, the file is at /home/lux-neo/userdata/config/strip.json\n\nled_count\nThis is the number of LED's you want to control.\nsegments\nThis is a simple list, here you should add the lenghts of all your segments. Please enter the \"real\" length, and don't start counting from 0. If you just want one segment, you should just have one element in the list, which is the number of led's you are controlling.\nWhen summing this list, it should check out with the \"led-count\"-option.\nmatrix\nThis is a two dimensonal array, used to arrange the segments in a matrix of your likings. Here you enter the segment-number to represent them. In the example above, all the segments are in one line. If you want to have them in a square, it could look like this:\n\"segments\": [10, 10, 10, 10, 10, 10, 10, 10, 10],\n\"matrix\": [\n [[0, false], [1, true], [2, false]],\n [[3, true], [4, false], [5, true]],\n [[6, false], [7, true], [8, false]]\n]\n\nEach entry looks is a list, with two parameters, [, ]\nIf you don't have a reference to all the segments or something, the matrix setup will fail. And fall back to 'segmentsconfiguration'\n\nsegmentconfiguration\nIf the matrix-option is empty or badly setup. The matrix will be set up using one of these defaults:\n\"snake\":\n\"line\":\n\"random\":\nled_pin\nIf using the luxcena-shield, you shouldn't have to worry about this option. But set it to the GPIO-port connected to your pixel's din-port.\nled_dma\nIf using a newer RPi (3 or newer), leave this as 10! Or your file-system might crash.\n\nThis is the dma-channel used to generate the data-stream. If you for some reason need channel 10 for something else, you can change it. But i strongly recommend leaving it to 10!\nled_invert\nThis should not be touched, unless you are using a inverting level converter.\nled_channel\nLeave this as default unless you know what you are doing.\n\nNow you might want to take a look at the command line interface.\n"},"Usage/CLI.html":{"url":"Usage/CLI.html","title":"CLI","keywords":"","body":"Command line interface\n\nThis gets installed in the /usr/bin directory, and can be called by:\n$ luxcena-neo.sh\n\nor is alias\n$ lux-neo\n\nThis CLI assumes root access, so please run it with sudo\n\nOptions\nsudo lux-neo uninstall\nUninstall the whole thing. You will have to remove this script yourself.\nsudo lux-neo update\nUpdate to the newest version on the current branch.\nsudo lux-neo conf\nOpen the strip-config in nano.\nsudo lux-neo start\nStart the server.\nsudo lux-neo stop\nStop the server.\n"},"Scripting/SupportLib/":{"url":"Scripting/SupportLib/","title":"Support Library","keywords":"","body":"Support Library\n\nclass Strip\nThis is the object you are refeering to when you want to do things with LED's.\nYou shouldn't have to do instantiate your own new strip-object as you can use the one\nset up by the software itself.\nLuxcenaNeo.strip\nor\nneo.strip\n\nStrip.show()\nDisplay all the changes made to the LEDs, on the actual LEDs.\nStrip.setPixelColor(n, color)\nSet LED at position n to the provided 24-bit color value (in RGB order).\nStrip.setPixelColorXY(x, y, color)\nSet LED at position (x, y) in the defined matrix to the provided 24-bit color value (in RGB order).\nStrip.setPixelColorRGB(n, red, green, blue, white = 0)\nSet LED at position n to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setPixelColorXYRGB(x, y, red, green, blue, white = 0)\nSet LED at position (x, y) in the defined matrix to the provided red, green, and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setSegmentColorRGB(segment, red, green, blue, white = 0)\nSet a whole segment to the provided red, green and blue color.\nEach color component should be a value from 0 to 255 (where 0 is the\nlowest intensity and 255 is the highest intensity).\nStrip.setBrightness(brightness)\nScale each LED in the buffer by the provided brightness. A brightness\nof 0 is the darkest and 255 is the brightest.\nStrip.getBrightness():\nGet the brightness value for each LED in the buffer. A brightness\nof 0 is the darkest and 255 is the brightest.\nStrip.getPixels():\nReturn an object which allows access to the LED display data as if\nit were a sequence of 24-bit RGB values.\nStrip.numPixels():\nReturn the number of pixels in the display.\nStrip.getPixelColor(n)\nGet the 24-bit RGB color value for the LED at position n.\n\nColor(red, green, blue, white = 0)\nConvert the provided red, green, blue color to a 24-bit color value.\nEach color component should be a value 0-255 where 0 is the lowest intensity\nand 255 is the highest intensity.\nhexColor(value)\nConvert the provided hexadecimal color to a 24-bit color value.\n"},"Scripting/Examples/strandtest.html":{"url":"Scripting/Examples/strandtest.html","title":"Strandtest","keywords":"","body":"Strandtest\n\nThis script just does some fancy patterns to show of the neopixels' capabilities.\nRuns in an endless loop, take a look at the code to see what it does more\nprecisely.\nimport LuxcenaNeo as neo # Can be imported as LuxcenaNeo as well. but anything else and it will fail...\nimport time\n\ndef colorWipe(color, wait_ms=50):\n \"\"\"Wipe color across display a pixel at a time.\"\"\"\n for i in range(neo.strip.numPixels()):\n neo.strip.setPixelColor(i, color)\n neo.strip.show()\n time.sleep(wait_ms/1000.0)\n\ndef theaterChase(color, wait_ms=50, iterations=10):\n \"\"\"Movie theater light style chaser animation.\"\"\"\n for j in range(iterations):\n for q in range(3):\n for i in range(0, neo.strip.numPixels(), 3):\n neo.strip.setPixelColor(i+q, color)\n neo.strip.show()\n time.sleep(wait_ms/1000.0)\n for i in range(0, neo.strip.numPixels(), 3):\n neo.strip.setPixelColor(i+q, 0)\n\ndef wheel(pos):\n \"\"\"Generate rainbow colors across 0-255 positions.\"\"\"\n if pos \n"},"Contributing/Modules/CompileAndRun.html":{"url":"Contributing/Modules/CompileAndRun.html","title":"CompileAndRun","keywords":"","body":"Index\n\nLocals\nvar pythonSupportFiles\nPoints to the files for our python support code. They should be in a subdir of the module itself.\nExported\nclass Python\nThis is exported as Python, just so that we could add other languages later. Used to build and run python-scripts with our support-code.\nmethod Python.constructor\nTakes one parameter, which is the full path to the folder where the script is located.\nWhen initializing the class, this will be called. Can be done like this:\nnew compileRun.Python(global.DirSwap + \"/usrData/usrCode/example\");\n\nmethod Python.compile\nThis deletes old build-folder, and makes a new one. It then moves all required files into the build-folder, making us ready for running the script.\nmethod Python.run\nSpawns a new process, starting entry.py in our build-folder. It also attaches event-listners on our class-object. All of them is in the example below:\nlet sc = new compileRun.Python(global.DirSwap + \"/usrData/usrCode/example\");\n\n// When data is printed from the python-script\nsc.on(\"stdout::data\", (_stdout) => { });\n// Last write when script closes, any exiting messages\nsc.on(\"stdout::end\", (_stdout) => { });\n// When something is printed from the python-script to the error-out. Usually when a `throw` is called\nsc.on(\"stderr::out\", (_stderr) => { });\n// Last words when process is dying from an error :`(\nsc.on(\"stderr::end\", (_stderr) => { });\n// When script exits, _code is the exit-code\nsc.on(\"close\", (_code) => { });\n\nPython\nThis is the support-files for user-made scripts.\nEntry.py\nThe entry-point when running a script. A file called script.py, containing the user-script, should be placed next to this file. Starting it should be done like this (Where app-root is where our app.js is located):\npython entry.py \n"}}}
\ No newline at end of file
diff --git a/docs/_book/service-worker.js b/docs/_book/service-worker.js
index 3567ba5..0ba2184 100644
--- a/docs/_book/service-worker.js
+++ b/docs/_book/service-worker.js
@@ -37,7 +37,7 @@
/* eslint-disable indent, no-unused-vars, no-multiple-empty-lines, max-nested-callbacks, space-before-function-paren, quotes, comma-spacing */
'use strict';
-var precacheConfig = [["/Contributing/Modules/CompileAndRun.html","f642e1a978347a6cc5be886f0a68d8bd"],["/Scripting/SupportLib/index.html","40d905724621f46815a588938b22564c"],["/Usage/CLI.html","44d169af8deabc46a1f254ebc152920d"],["/Usage/Configuration.html","621363c8c38c9b23d27b453423ce6915"],["/Usage/Install.html","7e74dc0466a42919a0e90fbc41d7317d"],["/Usage/index.html","ed4d6a184797d57e2616a5f56e735d8f"],["/gitbook/fonts/fontawesome/fontawesome-webfont.eot","25a32416abee198dd821b0b17a198a8f"],["/gitbook/fonts/fontawesome/fontawesome-webfont.svg","d7c639084f684d66a1bc66855d193ed8"],["/gitbook/fonts/fontawesome/fontawesome-webfont.ttf","1dc35d25e61d819a9c357074014867ab"],["/gitbook/fonts/fontawesome/fontawesome-webfont.woff","c8ddf1e5e5bf3682bc7bebf30f394148"],["/gitbook/gitbook-plugin-api/api.css","ad443308d0937629d2811cff9053e0c2"],["/gitbook/gitbook-plugin-api/api.js","b592adcca0c3d691f3a351b05e62c77a"],["/gitbook/gitbook-plugin-code/plugin.css","81aeb06c3e8d1c221773e63fe05f737a"],["/gitbook/gitbook-plugin-code/plugin.js","2a3bab062a1c3446333f10c60e8643a1"],["/gitbook/gitbook-plugin-comment/plugin.css","5291855572a41c85319d21a4b45f2eee"],["/gitbook/gitbook-plugin-comment/plugin.js","dc48b2f0bd1e4bdd1ad03d60d32c9bd6"],["/gitbook/gitbook-plugin-emphasize/plugin.css","6c90145b226c807ebbb334bb7d94d8ee"],["/gitbook/gitbook-plugin-fontsettings/fontsettings.js","fab8f6412ce18bb367635b1bcae503ca"],["/gitbook/gitbook-plugin-fontsettings/website.css","056a6db3eef3553a78f3b7e02356b2e7"],["/gitbook/gitbook-plugin-github/plugin.js","93ff35be0de181d440c84e8f6d76ab45"],["/gitbook/gitbook-plugin-highlight/ebook.css","fa203ae16ad9f01f4d20061fb9e7a6cc"],["/gitbook/gitbook-plugin-highlight/website.css","acce01e3e11cbd4b3882e7732d81f954"],["/gitbook/gitbook-plugin-hints/plugin-hints.css","35cad665bf4ba951a2f3a1d3253b6089"],["/gitbook/gitbook-plugin-livereload/plugin.js","9e48eceeaa9ee3f1f734eddd3dfe04da"],["/gitbook/gitbook-plugin-lunr/lunr.min.js","9424f087f85dc7be8f7c7bc35b720f26"],["/gitbook/gitbook-plugin-lunr/search-lunr.js","4e91f557c3d72be045b9e146c2bc90bc"],["/gitbook/gitbook-plugin-offline/service-worker-registration.js","0b4c35226075896152de214f8860b76e"],["/gitbook/gitbook-plugin-pretty-term/terminal.css","02c933b557fe724dcadd3dfa43dfc33c"],["/gitbook/gitbook-plugin-pretty-term/terminal.js","424e08c8a0b2f3d9e6706f15af29a714"],["/gitbook/gitbook-plugin-search/lunr.min.js","9424f087f85dc7be8f7c7bc35b720f26"],["/gitbook/gitbook-plugin-search/search-engine.js","59ed9456a958a2930326955747048f8a"],["/gitbook/gitbook-plugin-search/search.css","6c8330e8aadd979bb37f872182257bdd"],["/gitbook/gitbook-plugin-search/search.js","5ba7dbf7c0e78b02dc48f83d55729e36"],["/gitbook/gitbook-plugin-sharing/buttons.js","e7c1c051d685b9e7530c1a6675e6b119"],["/gitbook/gitbook.js","e53bf9037b1d1c9810486ef4c5493624"],["/gitbook/images/apple-touch-icon-precomposed-152.png","59313d171157503f5de7fd7e07f3c495"],["/gitbook/style.css","88a3a50e3559bc577c1be0de4fcc6c6d"],["/gitbook/theme.js","176e71ac3bf185b7f08e0f6cb919f1e8"],["/index.html","21abb5a92a1fc30c8c4ef08659abf381"]];
+var precacheConfig = [["/Contributing/Modules/CompileAndRun.html","b37e950a60dc868f8669633a2d364047"],["/Scripting/Examples/strandtest.html","1b0fd45523ad4c7e4f7caf9ffeffdaea"],["/Scripting/SupportLib/index.html","5581fe20c302fbdc31e90952e13a660e"],["/Usage/CLI.html","a586c885dbb86b76aae8c3ad1463a2f7"],["/Usage/Configuration.html","7e366fa19e998a0066cf8663f7a60dee"],["/Usage/Install.html","8f387db883ebf66bd084f14b00f0356a"],["/Usage/index.html","1812d0aefc03b7522d35ad5ca3556cae"],["/gitbook/fonts/fontawesome/fontawesome-webfont.eot","25a32416abee198dd821b0b17a198a8f"],["/gitbook/fonts/fontawesome/fontawesome-webfont.svg","d7c639084f684d66a1bc66855d193ed8"],["/gitbook/fonts/fontawesome/fontawesome-webfont.ttf","1dc35d25e61d819a9c357074014867ab"],["/gitbook/fonts/fontawesome/fontawesome-webfont.woff","c8ddf1e5e5bf3682bc7bebf30f394148"],["/gitbook/gitbook-plugin-api/api.css","ad443308d0937629d2811cff9053e0c2"],["/gitbook/gitbook-plugin-api/api.js","b592adcca0c3d691f3a351b05e62c77a"],["/gitbook/gitbook-plugin-code/plugin.css","81aeb06c3e8d1c221773e63fe05f737a"],["/gitbook/gitbook-plugin-code/plugin.js","2a3bab062a1c3446333f10c60e8643a1"],["/gitbook/gitbook-plugin-comment/plugin.css","5291855572a41c85319d21a4b45f2eee"],["/gitbook/gitbook-plugin-comment/plugin.js","dc48b2f0bd1e4bdd1ad03d60d32c9bd6"],["/gitbook/gitbook-plugin-emphasize/plugin.css","6c90145b226c807ebbb334bb7d94d8ee"],["/gitbook/gitbook-plugin-fontsettings/fontsettings.js","fab8f6412ce18bb367635b1bcae503ca"],["/gitbook/gitbook-plugin-fontsettings/website.css","056a6db3eef3553a78f3b7e02356b2e7"],["/gitbook/gitbook-plugin-github/plugin.js","93ff35be0de181d440c84e8f6d76ab45"],["/gitbook/gitbook-plugin-highlight/ebook.css","fa203ae16ad9f01f4d20061fb9e7a6cc"],["/gitbook/gitbook-plugin-highlight/website.css","acce01e3e11cbd4b3882e7732d81f954"],["/gitbook/gitbook-plugin-hints/plugin-hints.css","35cad665bf4ba951a2f3a1d3253b6089"],["/gitbook/gitbook-plugin-livereload/plugin.js","9e48eceeaa9ee3f1f734eddd3dfe04da"],["/gitbook/gitbook-plugin-lunr/lunr.min.js","9424f087f85dc7be8f7c7bc35b720f26"],["/gitbook/gitbook-plugin-lunr/search-lunr.js","4e91f557c3d72be045b9e146c2bc90bc"],["/gitbook/gitbook-plugin-offline/service-worker-registration.js","0b4c35226075896152de214f8860b76e"],["/gitbook/gitbook-plugin-pretty-term/terminal.css","02c933b557fe724dcadd3dfa43dfc33c"],["/gitbook/gitbook-plugin-pretty-term/terminal.js","424e08c8a0b2f3d9e6706f15af29a714"],["/gitbook/gitbook-plugin-search/lunr.min.js","9424f087f85dc7be8f7c7bc35b720f26"],["/gitbook/gitbook-plugin-search/search-engine.js","59ed9456a958a2930326955747048f8a"],["/gitbook/gitbook-plugin-search/search.css","6c8330e8aadd979bb37f872182257bdd"],["/gitbook/gitbook-plugin-search/search.js","5ba7dbf7c0e78b02dc48f83d55729e36"],["/gitbook/gitbook-plugin-sharing/buttons.js","e7c1c051d685b9e7530c1a6675e6b119"],["/gitbook/gitbook.js","e53bf9037b1d1c9810486ef4c5493624"],["/gitbook/images/apple-touch-icon-precomposed-152.png","59313d171157503f5de7fd7e07f3c495"],["/gitbook/style.css","88a3a50e3559bc577c1be0de4fcc6c6d"],["/gitbook/theme.js","176e71ac3bf185b7f08e0f6cb919f1e8"],["/index.html","7f1185efd06f6a13af73e5d68c6d5b8b"]];
var cacheName = 'sw-precache-v3--' + (self.registration ? self.registration.scope : '');
--
cgit v1.2.3