diff --git a/README.md b/README.md
index f87d2b58c1061e8b1e1ae23d28b8a2f0b3bfc055..a30f7d30987ab6a49ce3580780aaa1ba5da54f15 100644
--- a/README.md
+++ b/README.md
@@ -1,50 +1,29 @@
 # [![BlenDB Logo](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/logo-wide.png)](https://gitlab.c3sl.ufpr.br/c3sl/blendb)
-[![Build Status](https://gitlab.c3sl.ufpr.br/c3sl/blendb/badges/master/build.svg)](https://gitlab.c3sl.ufpr.br/c3sl/blendb/commits/master)
-[![Coverage Report](https://gitlab.c3sl.ufpr.br/c3sl/blendb/badges/master/coverage.svg)](https://gitlab.c3sl.ufpr.br/c3sl/blendb/builds)
 
-<p align="center">
-<b><a href="#getting-started">Getting Started</a></b>
-|
-<b><a href="#api-reference">API Reference</a></b>
-|
-<b><a href="#contributing">Contributing</a></b>
-|
-<b><a href="#license">License</a></b>
-|
-<b><a href="#built-with">Built With</a></b>
-</p>
+## WARNING
+This branch has been frozen in the version used to perform the experiments to
+ICDE2019 Conference. This version of the source code is EXACTLY the same used
+in the experiments. To the most recent version, check out the develop branch.
+To the last stable version, check out the master branch.
 
-<br/>
+## Experiment method
 
-## Getting Started
+All experiment data, analysis and extraction tools are contained in the
+**experiments** diretory. The remaining files are the original source code
+of BlenDB, use in the experiments.
 
-### Installing
+The test tool can be used to test the performance of any function in
+BlenDB source code.
 
-```
-git clone https://gitlab.c3sl.ufpr.br/c3sl/blendb.git
-npm install
-```
+The results of the experiments are the performance of the functions:
 
-### Running
+Engine.query()
+Adapter.getDataFromView()
 
-```
-npm start
-```
+To better understand BlenDB check out the other branches.
 
-## API Reference
+## Schema Files
 
-Check the documentation  [here](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/doc/api-v1-reference.html).
-
-## Contributing
-
-Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting merge requests to us.
-
-## License
-
-This project is licensed under the GPLv3 License -- see the [LICENSE](LICENSE) file for details
-
-## Built With
-
-| [![express](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/express.png)](https://expressjs.com) | [![TypeScript](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/typescript.png)](https://www.typescriptlang.org/) | [![RAML](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/raml.png)](http://raml.org/) |
-|:---:|:---:|:---:|
-|express|TypeScript|RAML|
+The schema file were very large and removed from the branch, however
+they can be easyly generated using the script **genGraph.sh** and
+**testGen.sh**
diff --git a/experiments/calc.R b/experiments/calc.R
new file mode 100755
index 0000000000000000000000000000000000000000..f2b8a0d132ea9c5a5c552671a874297c8b12fc4f
--- /dev/null
+++ b/experiments/calc.R
@@ -0,0 +1,39 @@
+#!/usr/bin/env Rscript
+
+opt <- commandArgs(TRUE)
+if( length(opt) == 0 ) {
+    stop("Passe o nome do arquivo com uma coluna de valores.")
+}
+
+ConfidenceInterval <- function(conf, avg, sde, size) {
+    error <- qnorm(conf) * sde / sqrt(size)
+    left  <- avg - error
+    right <- avg + error
+
+    return( list("left" = left, "right" = right) )
+}
+
+
+vals <- read.table(opt, header=FALSE, sep=" ")[,2]
+un_vals <- unlist(vals)
+
+avg  <- mean(un_vals)
+median <- median(un_vals)
+sde  <- sd(un_vals)
+vari <- var(un_vals)
+cv   <- sde / avg
+mi   <- min(un_vals)
+ma   <- max(un_vals)
+
+message(paste("Media          =", round(avg, 2)))
+message(paste("Mediana        =", round(median, 2)))
+message(paste("Variancia      =", round(vari, 2)))
+message(paste("Desvio Padrao  =", round(sde, 2)))
+message(paste("Coef. Variacao =", round(cv, 2)))
+message(paste("Min            =", mi))
+message(paste("Max            =", ma))
+
+lr <- ConfidenceInterval(0.95, avg, sde, length(un_vals))
+# message("Intervalo de confianca")
+message(paste("Esq, Dir.      =", round(lr$left, 4), ",", round(lr$right, 4)))
+
diff --git a/experiments/csvify.sh b/experiments/csvify.sh
new file mode 100755
index 0000000000000000000000000000000000000000..7d40e28980eeb1691e8ded6dbcebf6178b1f2406
--- /dev/null
+++ b/experiments/csvify.sh
@@ -0,0 +1,27 @@
+#! /bin/bash
+
+dirList="2018-09-27"
+outputLinearView="results/linearView.csv"
+outputLinearSQL="results/linearSQL.csv"
+
+files=""
+for dir in $dirList; do
+    files="$files $(find $dir | grep '.test')"
+done
+
+for file in $files; do
+    cat $file | grep 'LayoutView' | grep 'ms)' | cut -d';' -f2 > tmp.tmp
+    header=$(cat tmp.tmp | cut -d' ' -f1 | cut -d'=' -f2| tr '\n' ';' | sed -e 's/;$//')
+    line=$(cat tmp.tmp | cut -d' ' -f2 | sed -e 's/m\|s\|(\|)//g' | tr '\n' ';' | sed -e 's/;$//')
+    touch $outputLinearView
+    fileHeader=$(head -n1 $outputLinearView)
+    if [[ $header == $fileHeader ]]; then
+        echo  "$line" >> $outputLinearView
+    else
+        if [[ $(wc -l $outputLinearView) -eq 0 ]]; then
+            echo "$header" > $outputLinearView
+            echo "$line" >> $outputLinearView
+        fi
+    fi
+    rm tmp.tmp
+done
diff --git a/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b68da65f40cde9d559e7177fb4798017e6ad9247
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 696.9
+Mediana        = 693.5
+Variancia      = 2106.52
+Desvio Padrao  = 45.9
+Coef. Variacao = 0.07
+Min            = 615
+Max            = 826
+Esq, Dir.      = 680.0191 , 713.7809
diff --git a/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..02f807e8e9197e2b8db0a22cdb3d5a8a668b5265
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+1024 736
+1024 679
+1024 826
+1024 700
+1024 679
+1024 686
+1024 661
+1024 735
+1024 687
+1024 730
+1024 635
+1024 615
+1024 667
+1024 711
+1024 722
+1024 732
+1024 714
+1024 709
+1024 659
+1024 655
diff --git a/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..65eeb2e1a8c4bb9b3370997002b13a14d9fcd18d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 909.7
+Mediana        = 911
+Variancia      = 1848.96
+Desvio Padrao  = 43
+Coef. Variacao = 0.05
+Min            = 833
+Max            = 987
+Esq, Dir.      = 893.8848 , 925.5152
diff --git a/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..84060a370c220201a62281c9c119f6ee8273b166
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+1024 987
+1024 863
+1024 900
+1024 856
+1024 949
+1024 885
+1024 936
+1024 921
+1024 833
+1024 875
+1024 859
+1024 973
+1024 942
+1024 868
+1024 914
+1024 925
+1024 975
+1024 908
+1024 908
+1024 917
diff --git a/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..06e94ced2e6f8e80dfa1820bfac74c515b2373b4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1650.85
+Mediana        = 1620.5
+Variancia      = 10177.08
+Desvio Padrao  = 100.88
+Coef. Variacao = 0.06
+Min            = 1514
+Max            = 1855
+Esq, Dir.      = 1613.7457 , 1687.9543
diff --git a/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..647a0d60cc1a37bd484c5904be80593a7e4cc0e1
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+1024 1767
+1024 1715
+1024 1582
+1024 1622
+1024 1682
+1024 1657
+1024 1849
+1024 1618
+1024 1779
+1024 1701
+1024 1619
+1024 1666
+1024 1567
+1024 1527
+1024 1535
+1024 1514
+1024 1855
+1024 1594
+1024 1596
+1024 1572
diff --git a/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..3f75963feef0424cc947c40e632e00b4336a4bc4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 443.75
+Mediana        = 439
+Variancia      = 693.78
+Desvio Padrao  = 26.34
+Coef. Variacao = 0.06
+Min            = 411
+Max            = 514
+Esq, Dir.      = 434.0623 , 453.4377
diff --git a/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..dc68db6245b18805fd14b1c2aa5c7313a7f13148
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+128 497
+128 425
+128 465
+128 447
+128 431
+128 450
+128 420
+128 424
+128 459
+128 441
+128 423
+128 411
+128 434
+128 514
+128 449
+128 454
+128 456
+128 437
+128 424
+128 414
diff --git a/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..388777e50e43a0f4cf533c17cd744eb8ad730de8
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 815.95
+Mediana        = 824
+Variancia      = 2620.26
+Desvio Padrao  = 51.19
+Coef. Variacao = 0.06
+Min            = 740
+Max            = 903
+Esq, Dir.      = 797.1229 , 834.7771
diff --git a/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e2fe082a7c8e2bd07e300fd3af753bc2bdfbb073
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+128 898
+128 756
+128 872
+128 764
+128 862
+128 784
+128 848
+128 772
+128 740
+128 796
+128 758
+128 903
+128 844
+128 769
+128 822
+128 826
+128 879
+128 828
+128 763
+128 835
diff --git a/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cb82000cdb2092f77984a848d2e2424027be466a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1589.75
+Mediana        = 1580
+Variancia      = 7505.46
+Desvio Padrao  = 86.63
+Coef. Variacao = 0.05
+Min            = 1472
+Max            = 1814
+Esq, Dir.      = 1557.886 , 1621.614
diff --git a/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6af256ee00e31ec37dc07277018296a5605af933
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+128 1598
+128 1682
+128 1538
+128 1584
+128 1583
+128 1620
+128 1696
+128 1554
+128 1670
+128 1676
+128 1472
+128 1629
+128 1515
+128 1476
+128 1525
+128 1478
+128 1814
+128 1577
+128 1566
+128 1542
diff --git a/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9ceb3fa1a1c356e524b36f8c3b84efe81dbe74e2
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 701.55
+Mediana        = 698
+Variancia      = 1521.52
+Desvio Padrao  = 39.01
+Coef. Variacao = 0.06
+Min            = 626
+Max            = 796
+Esq, Dir.      = 687.2033 , 715.8967
diff --git a/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0beea0b66688cc49674f9c19bfd4031bdbb702a9
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16 730
+16 705
+16 697
+16 745
+16 691
+16 693
+16 690
+16 665
+16 702
+16 696
+16 626
+16 626
+16 699
+16 796
+16 718
+16 724
+16 747
+16 674
+16 687
+16 720
diff --git a/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4b000046885b6274844417fd4f9280c2d3b1cc91
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1195.05
+Mediana        = 1148
+Variancia      = 9367.31
+Desvio Padrao  = 96.78
+Coef. Variacao = 0.08
+Min            = 1086
+Max            = 1361
+Esq, Dir.      = 1159.4525 , 1230.6475
diff --git a/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..635776cd3ab39fb43ed18798563aedbef36b9270
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16 1292
+16 1100
+16 1307
+16 1109
+16 1263
+16 1212
+16 1335
+16 1086
+16 1128
+16 1090
+16 1097
+16 1300
+16 1341
+16 1122
+16 1144
+16 1121
+16 1361
+16 1152
+16 1141
+16 1200
diff --git a/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cb0fb0fca3eef2c03f27a1003bfe874ee271e847
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2122
+Mediana        = 2105
+Variancia      = 11836.32
+Desvio Padrao  = 108.79
+Coef. Variacao = 0.05
+Min            = 1918
+Max            = 2401
+Esq, Dir.      = 2081.9852 , 2162.0148
diff --git a/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ecc77a92a713b33dbe278ed560dbe5eb537b19c1
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16 2087
+16 2266
+16 2041
+16 2097
+16 2158
+16 2185
+16 2201
+16 2101
+16 2197
+16 2191
+16 1918
+16 2165
+16 2100
+16 1983
+16 2082
+16 1957
+16 2401
+16 2066
+16 2135
+16 2109
diff --git a/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..848df5162463d9cad8841a2821becd11d8f5149c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 56748.15
+Mediana        = 56557
+Variancia      = 13325501.82
+Desvio Padrao  = 3650.41
+Coef. Variacao = 0.06
+Min            = 50178
+Max            = 63235
+Esq, Dir.      = 55405.5271 , 58090.7729
diff --git a/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..db2068765165698067d99a1eec4598667e6939e0
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16384 59159
+16384 54442
+16384 63221
+16384 56629
+16384 60480
+16384 58591
+16384 54814
+16384 63235
+16384 54688
+16384 57954
+16384 51804
+16384 50178
+16384 52180
+16384 53782
+16384 58723
+16384 56485
+16384 60831
+16384 58633
+16384 54965
+16384 54169
diff --git a/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..747615341a90870f4e23eab71f64674b5085b4bc
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 7896.85
+Mediana        = 7861
+Variancia      = 95302.24
+Desvio Padrao  = 308.71
+Coef. Variacao = 0.04
+Min            = 7345
+Max            = 8478
+Esq, Dir.      = 7783.3061 , 8010.3939
diff --git a/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..891732c6085a5ea7ba55d5ad3491b439d1219fac
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16384 7756
+16384 8478
+16384 7731
+16384 7564
+16384 8475
+16384 7968
+16384 8028
+16384 7864
+16384 7566
+16384 7345
+16384 7545
+16384 8185
+16384 8127
+16384 7772
+16384 7771
+16384 8019
+16384 8105
+16384 7858
+16384 7580
+16384 8200
diff --git a/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7a9d9f3499c9d7fd73ce9a213193306ee01eaa5d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 3444.8
+Mediana        = 3431.5
+Variancia      = 22332.48
+Desvio Padrao  = 149.44
+Coef. Variacao = 0.04
+Min            = 3210
+Max            = 3739
+Esq, Dir.      = 3389.8357 , 3499.7643
diff --git a/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..cbc70ca385d5ff8b32a3089101b9399e0c010d43
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+16384 3385
+16384 3584
+16384 3243
+16384 3441
+16384 3552
+16384 3739
+16384 3737
+16384 3462
+16384 3544
+16384 3413
+16384 3422
+16384 3447
+16384 3355
+16384 3210
+16384 3314
+16384 3223
+16384 3604
+16384 3380
+16384 3472
+16384 3369
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..83995413976a8722f371935c155d0b6c627c7b37
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (626ms)
+    ✓ MaxGraphSQL;n=32 (424ms)
+    ✓ MaxGraphSQL;n=64 (401ms)
+    ✓ MaxGraphSQL;n=128 (423ms)
+    ✓ MaxGraphSQL;n=256 (423ms)
+    ✓ MaxGraphSQL;n=512 (470ms)
+    ✓ MaxGraphSQL;n=1024 (635ms)
+    ✓ MaxGraphSQL;n=2048 (1319ms)
+    ✓ MaxGraphSQL;n=4096 (3598ms)
+    ✓ MaxGraphSQL;n=8192 (12874ms)
+    ✓ MaxGraphSQL;n=16384 (51804ms)
+    ✓ MaxGraphSQL;n=32768 (240310ms)
+    ✓ MaxGraphSQL;n=65536 (1111129ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..9d952e38c7090c3c385c1c0af423021c7ba812cc
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (696ms)
+    ✓ MaxGraphSQL;n=32 (446ms)
+    ✓ MaxGraphSQL;n=64 (418ms)
+    ✓ MaxGraphSQL;n=128 (441ms)
+    ✓ MaxGraphSQL;n=256 (491ms)
+    ✓ MaxGraphSQL;n=512 (541ms)
+    ✓ MaxGraphSQL;n=1024 (730ms)
+    ✓ MaxGraphSQL;n=2048 (1461ms)
+    ✓ MaxGraphSQL;n=4096 (3839ms)
+    ✓ MaxGraphSQL;n=8192 (13833ms)
+    ✓ MaxGraphSQL;n=16384 (57954ms)
+    ✓ MaxGraphSQL;n=32768 (233982ms)
+    ✓ MaxGraphSQL;n=65536 (1031495ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..d5b107a352ccc04a9214c356942ddf49a73169a6
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (720ms)
+    ✓ MaxGraphSQL;n=32 (416ms)
+    ✓ MaxGraphSQL;n=64 (414ms)
+    ✓ MaxGraphSQL;n=128 (414ms)
+    ✓ MaxGraphSQL;n=256 (418ms)
+    ✓ MaxGraphSQL;n=512 (469ms)
+    ✓ MaxGraphSQL;n=1024 (655ms)
+    ✓ MaxGraphSQL;n=2048 (1391ms)
+    ✓ MaxGraphSQL;n=4096 (3804ms)
+    ✓ MaxGraphSQL;n=8192 (13586ms)
+    ✓ MaxGraphSQL;n=16384 (54169ms)
+    ✓ MaxGraphSQL;n=32768 (248607ms)
+    ✓ MaxGraphSQL;n=65536 (1137296ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ba93cbfe549f929b895200c650d9e07ba6a8f43d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (665ms)
+    ✓ MaxGraphSQL;n=32 (445ms)
+    ✓ MaxGraphSQL;n=64 (417ms)
+    ✓ MaxGraphSQL;n=128 (424ms)
+    ✓ MaxGraphSQL;n=256 (438ms)
+    ✓ MaxGraphSQL;n=512 (489ms)
+    ✓ MaxGraphSQL;n=1024 (735ms)
+    ✓ MaxGraphSQL;n=2048 (1494ms)
+    ✓ MaxGraphSQL;n=4096 (4034ms)
+    ✓ MaxGraphSQL;n=8192 (14656ms)
+    ✓ MaxGraphSQL;n=16384 (63235ms)
+    ✓ MaxGraphSQL;n=32768 (263475ms)
+    ✓ MaxGraphSQL;n=65536 (1109543ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..1d8b93ea8073113d599ceb26beffd560b6f0546a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (724ms)
+    ✓ MaxGraphSQL;n=32 (437ms)
+    ✓ MaxGraphSQL;n=64 (430ms)
+    ✓ MaxGraphSQL;n=128 (454ms)
+    ✓ MaxGraphSQL;n=256 (499ms)
+    ✓ MaxGraphSQL;n=512 (554ms)
+    ✓ MaxGraphSQL;n=1024 (732ms)
+    ✓ MaxGraphSQL;n=2048 (1440ms)
+    ✓ MaxGraphSQL;n=4096 (3766ms)
+    ✓ MaxGraphSQL;n=8192 (13441ms)
+    ✓ MaxGraphSQL;n=16384 (56485ms)
+    ✓ MaxGraphSQL;n=32768 (220130ms)
+    ✓ MaxGraphSQL;n=65536 (960288ms)
+
+
+  13 passing (21m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..9275d7fa998795fabd6561850a40385dd6ee3762
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (745ms)
+    ✓ MaxGraphSQL;n=32 (439ms)
+    ✓ MaxGraphSQL;n=64 (429ms)
+    ✓ MaxGraphSQL;n=128 (447ms)
+    ✓ MaxGraphSQL;n=256 (454ms)
+    ✓ MaxGraphSQL;n=512 (508ms)
+    ✓ MaxGraphSQL;n=1024 (700ms)
+    ✓ MaxGraphSQL;n=2048 (1451ms)
+    ✓ MaxGraphSQL;n=4096 (4027ms)
+    ✓ MaxGraphSQL;n=8192 (14007ms)
+    ✓ MaxGraphSQL;n=16384 (56629ms)
+    ✓ MaxGraphSQL;n=32768 (236217ms)
+    ✓ MaxGraphSQL;n=65536 (1100360ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..1b57b350bad68de10d02cc9097b94737c8ee94e0
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (690ms)
+    ✓ MaxGraphSQL;n=32 (421ms)
+    ✓ MaxGraphSQL;n=64 (409ms)
+    ✓ MaxGraphSQL;n=128 (420ms)
+    ✓ MaxGraphSQL;n=256 (431ms)
+    ✓ MaxGraphSQL;n=512 (480ms)
+    ✓ MaxGraphSQL;n=1024 (661ms)
+    ✓ MaxGraphSQL;n=2048 (1398ms)
+    ✓ MaxGraphSQL;n=4096 (3818ms)
+    ✓ MaxGraphSQL;n=8192 (13529ms)
+    ✓ MaxGraphSQL;n=16384 (54814ms)
+    ✓ MaxGraphSQL;n=32768 (244875ms)
+    ✓ MaxGraphSQL;n=65536 (1119651ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..60ac43f0f39a6413ad40640cdc14a494e3c7436d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (687ms)
+    ✓ MaxGraphSQL;n=32 (442ms)
+    ✓ MaxGraphSQL;n=64 (400ms)
+    ✓ MaxGraphSQL;n=128 (424ms)
+    ✓ MaxGraphSQL;n=256 (431ms)
+    ✓ MaxGraphSQL;n=512 (479ms)
+    ✓ MaxGraphSQL;n=1024 (659ms)
+    ✓ MaxGraphSQL;n=2048 (1410ms)
+    ✓ MaxGraphSQL;n=4096 (3849ms)
+    ✓ MaxGraphSQL;n=8192 (13767ms)
+    ✓ MaxGraphSQL;n=16384 (54965ms)
+    ✓ MaxGraphSQL;n=32768 (231844ms)
+    ✓ MaxGraphSQL;n=65536 (1085978ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..c8361119a98b8647d69d4c3027d5e7738ebd9fa6
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (626ms)
+    ✓ MaxGraphSQL;n=32 (395ms)
+    ✓ MaxGraphSQL;n=64 (392ms)
+    ✓ MaxGraphSQL;n=128 (411ms)
+    ✓ MaxGraphSQL;n=256 (446ms)
+    ✓ MaxGraphSQL;n=512 (451ms)
+    ✓ MaxGraphSQL;n=1024 (615ms)
+    ✓ MaxGraphSQL;n=2048 (1285ms)
+    ✓ MaxGraphSQL;n=4096 (3510ms)
+    ✓ MaxGraphSQL;n=8192 (12527ms)
+    ✓ MaxGraphSQL;n=16384 (50178ms)
+    ✓ MaxGraphSQL;n=32768 (236560ms)
+    ✓ MaxGraphSQL;n=65536 (982053ms)
+
+
+  13 passing (21m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b23358cc4c4307946244628b0df906f6174c7
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (674ms)
+    ✓ MaxGraphSQL;n=32 (439ms)
+    ✓ MaxGraphSQL;n=64 (407ms)
+    ✓ MaxGraphSQL;n=128 (437ms)
+    ✓ MaxGraphSQL;n=256 (480ms)
+    ✓ MaxGraphSQL;n=512 (527ms)
+    ✓ MaxGraphSQL;n=1024 (709ms)
+    ✓ MaxGraphSQL;n=2048 (1444ms)
+    ✓ MaxGraphSQL;n=4096 (3810ms)
+    ✓ MaxGraphSQL;n=8192 (13722ms)
+    ✓ MaxGraphSQL;n=16384 (58633ms)
+    ✓ MaxGraphSQL;n=32768 (240300ms)
+    ✓ MaxGraphSQL;n=65536 (1089324ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..9804ba95b4157d045ecd5a0d0114e2f769a063a3
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (730ms)
+    ✓ MaxGraphSQL;n=32 (508ms)
+    ✓ MaxGraphSQL;n=64 (477ms)
+    ✓ MaxGraphSQL;n=128 (497ms)
+    ✓ MaxGraphSQL;n=256 (496ms)
+    ✓ MaxGraphSQL;n=512 (547ms)
+    ✓ MaxGraphSQL;n=1024 (736ms)
+    ✓ MaxGraphSQL;n=2048 (1463ms)
+    ✓ MaxGraphSQL;n=4096 (3925ms)
+    ✓ MaxGraphSQL;n=8192 (13977ms)
+    ✓ MaxGraphSQL;n=16384 (59159ms)
+    ✓ MaxGraphSQL;n=32768 (226145ms)
+    ✓ MaxGraphSQL;n=65536 (1071770ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..3fc065261af627badf4348dddf0c06caf3cfc114
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (697ms)
+    ✓ MaxGraphSQL;n=32 (447ms)
+    ✓ MaxGraphSQL;n=64 (446ms)
+    ✓ MaxGraphSQL;n=128 (465ms)
+    ✓ MaxGraphSQL;n=256 (593ms)
+    ✓ MaxGraphSQL;n=512 (649ms)
+    ✓ MaxGraphSQL;n=1024 (826ms)
+    ✓ MaxGraphSQL;n=2048 (1590ms)
+    ✓ MaxGraphSQL;n=4096 (4060ms)
+    ✓ MaxGraphSQL;n=8192 (14423ms)
+    ✓ MaxGraphSQL;n=16384 (63221ms)
+    ✓ MaxGraphSQL;n=32768 (240861ms)
+    ✓ MaxGraphSQL;n=65536 (1052638ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..70f0a8cf978f53252ca17bfaea92b48a44b2f146
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (705ms)
+    ✓ MaxGraphSQL;n=32 (433ms)
+    ✓ MaxGraphSQL;n=64 (415ms)
+    ✓ MaxGraphSQL;n=128 (425ms)
+    ✓ MaxGraphSQL;n=256 (441ms)
+    ✓ MaxGraphSQL;n=512 (491ms)
+    ✓ MaxGraphSQL;n=1024 (679ms)
+    ✓ MaxGraphSQL;n=2048 (1415ms)
+    ✓ MaxGraphSQL;n=4096 (3828ms)
+    ✓ MaxGraphSQL;n=8192 (13602ms)
+    ✓ MaxGraphSQL;n=16384 (54442ms)
+    ✓ MaxGraphSQL;n=32768 (237245ms)
+    ✓ MaxGraphSQL;n=65536 (1051007ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..86cb9e51c47dcc614550b3e78cca892ec23014fb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (747ms)
+    ✓ MaxGraphSQL;n=32 (450ms)
+    ✓ MaxGraphSQL;n=64 (433ms)
+    ✓ MaxGraphSQL;n=128 (456ms)
+    ✓ MaxGraphSQL;n=256 (457ms)
+    ✓ MaxGraphSQL;n=512 (520ms)
+    ✓ MaxGraphSQL;n=1024 (714ms)
+    ✓ MaxGraphSQL;n=2048 (1515ms)
+    ✓ MaxGraphSQL;n=4096 (4143ms)
+    ✓ MaxGraphSQL;n=8192 (14894ms)
+    ✓ MaxGraphSQL;n=16384 (60831ms)
+    ✓ MaxGraphSQL;n=32768 (255669ms)
+    ✓ MaxGraphSQL;n=65536 (1144491ms)
+
+
+  13 passing (25m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..c85d0165580cd80844b39884d3bc33609562c148
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (718ms)
+    ✓ MaxGraphSQL;n=32 (432ms)
+    ✓ MaxGraphSQL;n=64 (419ms)
+    ✓ MaxGraphSQL;n=128 (449ms)
+    ✓ MaxGraphSQL;n=256 (486ms)
+    ✓ MaxGraphSQL;n=512 (536ms)
+    ✓ MaxGraphSQL;n=1024 (722ms)
+    ✓ MaxGraphSQL;n=2048 (1480ms)
+    ✓ MaxGraphSQL;n=4096 (3946ms)
+    ✓ MaxGraphSQL;n=8192 (14006ms)
+    ✓ MaxGraphSQL;n=16384 (58723ms)
+    ✓ MaxGraphSQL;n=32768 (247255ms)
+    ✓ MaxGraphSQL;n=65536 (1165783ms)
+
+
+  13 passing (25m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..c56714cd3d974c1b6df1e7b60f313d089de26d6f
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (691ms)
+    ✓ MaxGraphSQL;n=32 (424ms)
+    ✓ MaxGraphSQL;n=64 (420ms)
+    ✓ MaxGraphSQL;n=128 (431ms)
+    ✓ MaxGraphSQL;n=256 (437ms)
+    ✓ MaxGraphSQL;n=512 (487ms)
+    ✓ MaxGraphSQL;n=1024 (679ms)
+    ✓ MaxGraphSQL;n=2048 (1521ms)
+    ✓ MaxGraphSQL;n=4096 (4052ms)
+    ✓ MaxGraphSQL;n=8192 (14376ms)
+    ✓ MaxGraphSQL;n=16384 (60480ms)
+    ✓ MaxGraphSQL;n=32768 (247338ms)
+    ✓ MaxGraphSQL;n=65536 (1091436ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..090b16d1dbcf773c75ceb29a22b0b6a0af328cec
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (693ms)
+    ✓ MaxGraphSQL;n=32 (454ms)
+    ✓ MaxGraphSQL;n=64 (423ms)
+    ✓ MaxGraphSQL;n=128 (450ms)
+    ✓ MaxGraphSQL;n=256 (454ms)
+    ✓ MaxGraphSQL;n=512 (514ms)
+    ✓ MaxGraphSQL;n=1024 (686ms)
+    ✓ MaxGraphSQL;n=2048 (1421ms)
+    ✓ MaxGraphSQL;n=4096 (3829ms)
+    ✓ MaxGraphSQL;n=8192 (14083ms)
+    ✓ MaxGraphSQL;n=16384 (58591ms)
+    ✓ MaxGraphSQL;n=32768 (233810ms)
+    ✓ MaxGraphSQL;n=65536 (1091070ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..59b48997b690eab87a5420e8e763f7c6027b2496
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (699ms)
+    ✓ MaxGraphSQL;n=32 (434ms)
+    ✓ MaxGraphSQL;n=64 (427ms)
+    ✓ MaxGraphSQL;n=128 (434ms)
+    ✓ MaxGraphSQL;n=256 (438ms)
+    ✓ MaxGraphSQL;n=512 (495ms)
+    ✓ MaxGraphSQL;n=1024 (667ms)
+    ✓ MaxGraphSQL;n=2048 (1369ms)
+    ✓ MaxGraphSQL;n=4096 (3692ms)
+    ✓ MaxGraphSQL;n=8192 (13095ms)
+    ✓ MaxGraphSQL;n=16384 (52180ms)
+    ✓ MaxGraphSQL;n=32768 (216730ms)
+    ✓ MaxGraphSQL;n=65536 (1046429ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..f4f8eec3ff6672fd0ea05ac55a203a2489d994f5
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (702ms)
+    ✓ MaxGraphSQL;n=32 (442ms)
+    ✓ MaxGraphSQL;n=64 (443ms)
+    ✓ MaxGraphSQL;n=128 (459ms)
+    ✓ MaxGraphSQL;n=256 (452ms)
+    ✓ MaxGraphSQL;n=512 (502ms)
+    ✓ MaxGraphSQL;n=1024 (687ms)
+    ✓ MaxGraphSQL;n=2048 (1420ms)
+    ✓ MaxGraphSQL;n=4096 (3849ms)
+    ✓ MaxGraphSQL;n=8192 (13670ms)
+    ✓ MaxGraphSQL;n=16384 (54688ms)
+    ✓ MaxGraphSQL;n=32768 (223459ms)
+    ✓ MaxGraphSQL;n=65536 (1103841ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..60f22d992fc107b9b0d118ba4891051eb0d8346e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (796ms)
+    ✓ MaxGraphSQL;n=32 (499ms)
+    ✓ MaxGraphSQL;n=64 (494ms)
+    ✓ MaxGraphSQL;n=128 (514ms)
+    ✓ MaxGraphSQL;n=256 (463ms)
+    ✓ MaxGraphSQL;n=512 (523ms)
+    ✓ MaxGraphSQL;n=1024 (711ms)
+    ✓ MaxGraphSQL;n=2048 (1413ms)
+    ✓ MaxGraphSQL;n=4096 (3774ms)
+    ✓ MaxGraphSQL;n=8192 (13390ms)
+    ✓ MaxGraphSQL;n=16384 (53782ms)
+    ✓ MaxGraphSQL;n=32768 (216374ms)
+    ✓ MaxGraphSQL;n=65536 (1035282ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..1caf228365433f5d0c059dbb6a5c965dd12c5866
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1097ms)
+    ✓ MaxGraphSQL;n=32 (769ms)
+    ✓ MaxGraphSQL;n=64 (758ms)
+    ✓ MaxGraphSQL;n=128 (758ms)
+    ✓ MaxGraphSQL;n=256 (771ms)
+    ✓ MaxGraphSQL;n=512 (783ms)
+    ✓ MaxGraphSQL;n=1024 (859ms)
+    ✓ MaxGraphSQL;n=2048 (1005ms)
+    ✓ MaxGraphSQL;n=4096 (1413ms)
+    ✓ MaxGraphSQL;n=8192 (2758ms)
+    ✓ MaxGraphSQL;n=16384 (7545ms)
+    ✓ MaxGraphSQL;n=32768 (27009ms)
+    ✓ MaxGraphSQL;n=65536 (113523ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..a2899dd2a0fcffcf59d40b2ec29bea0d4b907f15
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1090ms)
+    ✓ MaxGraphSQL;n=32 (800ms)
+    ✓ MaxGraphSQL;n=64 (791ms)
+    ✓ MaxGraphSQL;n=128 (796ms)
+    ✓ MaxGraphSQL;n=256 (811ms)
+    ✓ MaxGraphSQL;n=512 (840ms)
+    ✓ MaxGraphSQL;n=1024 (875ms)
+    ✓ MaxGraphSQL;n=2048 (993ms)
+    ✓ MaxGraphSQL;n=4096 (1406ms)
+    ✓ MaxGraphSQL;n=8192 (2721ms)
+    ✓ MaxGraphSQL;n=16384 (7345ms)
+    ✓ MaxGraphSQL;n=32768 (26384ms)
+    ✓ MaxGraphSQL;n=65536 (115450ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..622092623b3ab3b63c3e634c747c8335ebaf508f
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1200ms)
+    ✓ MaxGraphSQL;n=32 (791ms)
+    ✓ MaxGraphSQL;n=64 (801ms)
+    ✓ MaxGraphSQL;n=128 (835ms)
+    ✓ MaxGraphSQL;n=256 (826ms)
+    ✓ MaxGraphSQL;n=512 (849ms)
+    ✓ MaxGraphSQL;n=1024 (917ms)
+    ✓ MaxGraphSQL;n=2048 (1040ms)
+    ✓ MaxGraphSQL;n=4096 (1524ms)
+    ✓ MaxGraphSQL;n=8192 (2998ms)
+    ✓ MaxGraphSQL;n=16384 (8200ms)
+    ✓ MaxGraphSQL;n=32768 (30882ms)
+    ✓ MaxGraphSQL;n=65536 (131068ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..f2c90125654c05d4a2d970247979badf797b0660
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1086ms)
+    ✓ MaxGraphSQL;n=32 (776ms)
+    ✓ MaxGraphSQL;n=64 (763ms)
+    ✓ MaxGraphSQL;n=128 (772ms)
+    ✓ MaxGraphSQL;n=256 (785ms)
+    ✓ MaxGraphSQL;n=512 (849ms)
+    ✓ MaxGraphSQL;n=1024 (921ms)
+    ✓ MaxGraphSQL;n=2048 (1029ms)
+    ✓ MaxGraphSQL;n=4096 (1473ms)
+    ✓ MaxGraphSQL;n=8192 (2873ms)
+    ✓ MaxGraphSQL;n=16384 (7864ms)
+    ✓ MaxGraphSQL;n=32768 (29197ms)
+    ✓ MaxGraphSQL;n=65536 (128766ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..bbae6d4c4ecfebccb9bf2f51f145fdaa99677ed0
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1121ms)
+    ✓ MaxGraphSQL;n=32 (837ms)
+    ✓ MaxGraphSQL;n=64 (827ms)
+    ✓ MaxGraphSQL;n=128 (826ms)
+    ✓ MaxGraphSQL;n=256 (846ms)
+    ✓ MaxGraphSQL;n=512 (868ms)
+    ✓ MaxGraphSQL;n=1024 (925ms)
+    ✓ MaxGraphSQL;n=2048 (1056ms)
+    ✓ MaxGraphSQL;n=4096 (1487ms)
+    ✓ MaxGraphSQL;n=8192 (2920ms)
+    ✓ MaxGraphSQL;n=16384 (8019ms)
+    ✓ MaxGraphSQL;n=32768 (29526ms)
+    ✓ MaxGraphSQL;n=65536 (124484ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..32829a962abe31a211109b7b8abf42bbfd5f1211
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1109ms)
+    ✓ MaxGraphSQL;n=32 (770ms)
+    ✓ MaxGraphSQL;n=64 (761ms)
+    ✓ MaxGraphSQL;n=128 (764ms)
+    ✓ MaxGraphSQL;n=256 (767ms)
+    ✓ MaxGraphSQL;n=512 (783ms)
+    ✓ MaxGraphSQL;n=1024 (856ms)
+    ✓ MaxGraphSQL;n=2048 (989ms)
+    ✓ MaxGraphSQL;n=4096 (1412ms)
+    ✓ MaxGraphSQL;n=8192 (2770ms)
+    ✓ MaxGraphSQL;n=16384 (7564ms)
+    ✓ MaxGraphSQL;n=32768 (27924ms)
+    ✓ MaxGraphSQL;n=65536 (117124ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..47ee2df1e0a41f2c57fdb56289874a07ada3f842
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1335ms)
+    ✓ MaxGraphSQL;n=32 (842ms)
+    ✓ MaxGraphSQL;n=64 (840ms)
+    ✓ MaxGraphSQL;n=128 (848ms)
+    ✓ MaxGraphSQL;n=256 (853ms)
+    ✓ MaxGraphSQL;n=512 (867ms)
+    ✓ MaxGraphSQL;n=1024 (936ms)
+    ✓ MaxGraphSQL;n=2048 (1057ms)
+    ✓ MaxGraphSQL;n=4096 (1517ms)
+    ✓ MaxGraphSQL;n=8192 (2936ms)
+    ✓ MaxGraphSQL;n=16384 (8028ms)
+    ✓ MaxGraphSQL;n=32768 (31475ms)
+    ✓ MaxGraphSQL;n=65536 (132488ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..0f62a02a862fcf04519df6735af7979eefabcb60
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1141ms)
+    ✓ MaxGraphSQL;n=32 (757ms)
+    ✓ MaxGraphSQL;n=64 (762ms)
+    ✓ MaxGraphSQL;n=128 (763ms)
+    ✓ MaxGraphSQL;n=256 (791ms)
+    ✓ MaxGraphSQL;n=512 (934ms)
+    ✓ MaxGraphSQL;n=1024 (908ms)
+    ✓ MaxGraphSQL;n=2048 (1013ms)
+    ✓ MaxGraphSQL;n=4096 (1450ms)
+    ✓ MaxGraphSQL;n=8192 (2796ms)
+    ✓ MaxGraphSQL;n=16384 (7580ms)
+    ✓ MaxGraphSQL;n=32768 (27229ms)
+    ✓ MaxGraphSQL;n=65536 (116130ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..123621998afefa9ee739e7ad1f76315c4bd898fd
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1300ms)
+    ✓ MaxGraphSQL;n=32 (903ms)
+    ✓ MaxGraphSQL;n=64 (893ms)
+    ✓ MaxGraphSQL;n=128 (903ms)
+    ✓ MaxGraphSQL;n=256 (916ms)
+    ✓ MaxGraphSQL;n=512 (889ms)
+    ✓ MaxGraphSQL;n=1024 (973ms)
+    ✓ MaxGraphSQL;n=2048 (1147ms)
+    ✓ MaxGraphSQL;n=4096 (1580ms)
+    ✓ MaxGraphSQL;n=8192 (3033ms)
+    ✓ MaxGraphSQL;n=16384 (8185ms)
+    ✓ MaxGraphSQL;n=32768 (29988ms)
+    ✓ MaxGraphSQL;n=65536 (128313ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..b483b05d7c592938f270bc59fb612ea242ee9f0b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1152ms)
+    ✓ MaxGraphSQL;n=32 (822ms)
+    ✓ MaxGraphSQL;n=64 (815ms)
+    ✓ MaxGraphSQL;n=128 (828ms)
+    ✓ MaxGraphSQL;n=256 (828ms)
+    ✓ MaxGraphSQL;n=512 (844ms)
+    ✓ MaxGraphSQL;n=1024 (908ms)
+    ✓ MaxGraphSQL;n=2048 (1028ms)
+    ✓ MaxGraphSQL;n=4096 (1461ms)
+    ✓ MaxGraphSQL;n=8192 (2884ms)
+    ✓ MaxGraphSQL;n=16384 (7858ms)
+    ✓ MaxGraphSQL;n=32768 (27601ms)
+    ✓ MaxGraphSQL;n=65536 (110435ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..de6ef10cc4e0a5c38856afee50bd9a7720c86a79
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1292ms)
+    ✓ MaxGraphSQL;n=32 (907ms)
+    ✓ MaxGraphSQL;n=64 (896ms)
+    ✓ MaxGraphSQL;n=128 (898ms)
+    ✓ MaxGraphSQL;n=256 (926ms)
+    ✓ MaxGraphSQL;n=512 (934ms)
+    ✓ MaxGraphSQL;n=1024 (987ms)
+    ✓ MaxGraphSQL;n=2048 (1137ms)
+    ✓ MaxGraphSQL;n=4096 (1559ms)
+    ✓ MaxGraphSQL;n=8192 (2934ms)
+    ✓ MaxGraphSQL;n=16384 (7756ms)
+    ✓ MaxGraphSQL;n=32768 (28610ms)
+    ✓ MaxGraphSQL;n=65536 (117168ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..b70988f622f6fd8375b2e2f5fa4be71cf0580365
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1307ms)
+    ✓ MaxGraphSQL;n=32 (868ms)
+    ✓ MaxGraphSQL;n=64 (856ms)
+    ✓ MaxGraphSQL;n=128 (872ms)
+    ✓ MaxGraphSQL;n=256 (853ms)
+    ✓ MaxGraphSQL;n=512 (833ms)
+    ✓ MaxGraphSQL;n=1024 (900ms)
+    ✓ MaxGraphSQL;n=2048 (1018ms)
+    ✓ MaxGraphSQL;n=4096 (1456ms)
+    ✓ MaxGraphSQL;n=8192 (2826ms)
+    ✓ MaxGraphSQL;n=16384 (7731ms)
+    ✓ MaxGraphSQL;n=32768 (27211ms)
+    ✓ MaxGraphSQL;n=65536 (111041ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..683e62816e15fb511507a89aae6abf01217cbfcd
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1100ms)
+    ✓ MaxGraphSQL;n=32 (770ms)
+    ✓ MaxGraphSQL;n=64 (757ms)
+    ✓ MaxGraphSQL;n=128 (756ms)
+    ✓ MaxGraphSQL;n=256 (776ms)
+    ✓ MaxGraphSQL;n=512 (795ms)
+    ✓ MaxGraphSQL;n=1024 (863ms)
+    ✓ MaxGraphSQL;n=2048 (1097ms)
+    ✓ MaxGraphSQL;n=4096 (1578ms)
+    ✓ MaxGraphSQL;n=8192 (3089ms)
+    ✓ MaxGraphSQL;n=16384 (8478ms)
+    ✓ MaxGraphSQL;n=32768 (32624ms)
+    ✓ MaxGraphSQL;n=65536 (138534ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..43c45dc3189fcf388d67f7ec3808ae59b48a0b9d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1361ms)
+    ✓ MaxGraphSQL;n=32 (896ms)
+    ✓ MaxGraphSQL;n=64 (875ms)
+    ✓ MaxGraphSQL;n=128 (879ms)
+    ✓ MaxGraphSQL;n=256 (889ms)
+    ✓ MaxGraphSQL;n=512 (899ms)
+    ✓ MaxGraphSQL;n=1024 (975ms)
+    ✓ MaxGraphSQL;n=2048 (1095ms)
+    ✓ MaxGraphSQL;n=4096 (1557ms)
+    ✓ MaxGraphSQL;n=8192 (3003ms)
+    ✓ MaxGraphSQL;n=16384 (8105ms)
+    ✓ MaxGraphSQL;n=32768 (29831ms)
+    ✓ MaxGraphSQL;n=65536 (129914ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..1262c7e5a027fa1b6c453f6ebbbdbcce8b4018a1
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1144ms)
+    ✓ MaxGraphSQL;n=32 (819ms)
+    ✓ MaxGraphSQL;n=64 (807ms)
+    ✓ MaxGraphSQL;n=128 (822ms)
+    ✓ MaxGraphSQL;n=256 (818ms)
+    ✓ MaxGraphSQL;n=512 (838ms)
+    ✓ MaxGraphSQL;n=1024 (914ms)
+    ✓ MaxGraphSQL;n=2048 (1033ms)
+    ✓ MaxGraphSQL;n=4096 (1454ms)
+    ✓ MaxGraphSQL;n=8192 (2880ms)
+    ✓ MaxGraphSQL;n=16384 (7771ms)
+    ✓ MaxGraphSQL;n=32768 (29522ms)
+    ✓ MaxGraphSQL;n=65536 (127696ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..ffd9477cb8de90be82a5fe674a331ea5b9fb7e72
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1263ms)
+    ✓ MaxGraphSQL;n=32 (871ms)
+    ✓ MaxGraphSQL;n=64 (857ms)
+    ✓ MaxGraphSQL;n=128 (862ms)
+    ✓ MaxGraphSQL;n=256 (885ms)
+    ✓ MaxGraphSQL;n=512 (903ms)
+    ✓ MaxGraphSQL;n=1024 (949ms)
+    ✓ MaxGraphSQL;n=2048 (1101ms)
+    ✓ MaxGraphSQL;n=4096 (1572ms)
+    ✓ MaxGraphSQL;n=8192 (3107ms)
+    ✓ MaxGraphSQL;n=16384 (8475ms)
+    ✓ MaxGraphSQL;n=32768 (32491ms)
+    ✓ MaxGraphSQL;n=65536 (134850ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..df0d11c8d1ce7ae6837cf9d4f55636d55fc3bedb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1212ms)
+    ✓ MaxGraphSQL;n=32 (798ms)
+    ✓ MaxGraphSQL;n=64 (790ms)
+    ✓ MaxGraphSQL;n=128 (784ms)
+    ✓ MaxGraphSQL;n=256 (801ms)
+    ✓ MaxGraphSQL;n=512 (817ms)
+    ✓ MaxGraphSQL;n=1024 (885ms)
+    ✓ MaxGraphSQL;n=2048 (1020ms)
+    ✓ MaxGraphSQL;n=4096 (1466ms)
+    ✓ MaxGraphSQL;n=8192 (2912ms)
+    ✓ MaxGraphSQL;n=16384 (7968ms)
+    ✓ MaxGraphSQL;n=32768 (28185ms)
+    ✓ MaxGraphSQL;n=65536 (113470ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..25d5f848be0581fe9c17bfe681af3b7161fd25fb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1341ms)
+    ✓ MaxGraphSQL;n=32 (854ms)
+    ✓ MaxGraphSQL;n=64 (845ms)
+    ✓ MaxGraphSQL;n=128 (844ms)
+    ✓ MaxGraphSQL;n=256 (854ms)
+    ✓ MaxGraphSQL;n=512 (879ms)
+    ✓ MaxGraphSQL;n=1024 (942ms)
+    ✓ MaxGraphSQL;n=2048 (1069ms)
+    ✓ MaxGraphSQL;n=4096 (1539ms)
+    ✓ MaxGraphSQL;n=8192 (2998ms)
+    ✓ MaxGraphSQL;n=16384 (8127ms)
+    ✓ MaxGraphSQL;n=32768 (30591ms)
+    ✓ MaxGraphSQL;n=65536 (132945ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..470759644306e9fe1d380ea86b6964dbc26bfb4b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1128ms)
+    ✓ MaxGraphSQL;n=32 (745ms)
+    ✓ MaxGraphSQL;n=64 (741ms)
+    ✓ MaxGraphSQL;n=128 (740ms)
+    ✓ MaxGraphSQL;n=256 (748ms)
+    ✓ MaxGraphSQL;n=512 (766ms)
+    ✓ MaxGraphSQL;n=1024 (833ms)
+    ✓ MaxGraphSQL;n=2048 (962ms)
+    ✓ MaxGraphSQL;n=4096 (1364ms)
+    ✓ MaxGraphSQL;n=8192 (2739ms)
+    ✓ MaxGraphSQL;n=16384 (7566ms)
+    ✓ MaxGraphSQL;n=32768 (26946ms)
+    ✓ MaxGraphSQL;n=65536 (108497ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..5f56610044dd21eb550e507b675f659287ad08d5
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1122ms)
+    ✓ MaxGraphSQL;n=32 (780ms)
+    ✓ MaxGraphSQL;n=64 (773ms)
+    ✓ MaxGraphSQL;n=128 (769ms)
+    ✓ MaxGraphSQL;n=256 (795ms)
+    ✓ MaxGraphSQL;n=512 (804ms)
+    ✓ MaxGraphSQL;n=1024 (868ms)
+    ✓ MaxGraphSQL;n=2048 (989ms)
+    ✓ MaxGraphSQL;n=4096 (1423ms)
+    ✓ MaxGraphSQL;n=8192 (2825ms)
+    ✓ MaxGraphSQL;n=16384 (7772ms)
+    ✓ MaxGraphSQL;n=32768 (27849ms)
+    ✓ MaxGraphSQL;n=65536 (110086ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..1f2076dea4460859c7b3b2f7db98729e44896b90
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1918ms)
+    ✓ MaxGraphSQL;n=32 (1465ms)
+    ✓ MaxGraphSQL;n=64 (1452ms)
+    ✓ MaxGraphSQL;n=128 (1472ms)
+    ✓ MaxGraphSQL;n=256 (1645ms)
+    ✓ MaxGraphSQL;n=512 (1630ms)
+    ✓ MaxGraphSQL;n=1024 (1619ms)
+    ✓ MaxGraphSQL;n=2048 (1659ms)
+    ✓ MaxGraphSQL;n=4096 (1804ms)
+    ✓ MaxGraphSQL;n=8192 (2167ms)
+    ✓ MaxGraphSQL;n=16384 (3422ms)
+    ✓ MaxGraphSQL;n=32768 (7437ms)
+    ✓ MaxGraphSQL;n=65536 (25828ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..9ae204905abab907f2cecb9e3923413f213a2cf7
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2191ms)
+    ✓ MaxGraphSQL;n=32 (1670ms)
+    ✓ MaxGraphSQL;n=64 (1662ms)
+    ✓ MaxGraphSQL;n=128 (1676ms)
+    ✓ MaxGraphSQL;n=256 (1681ms)
+    ✓ MaxGraphSQL;n=512 (1680ms)
+    ✓ MaxGraphSQL;n=1024 (1701ms)
+    ✓ MaxGraphSQL;n=2048 (1764ms)
+    ✓ MaxGraphSQL;n=4096 (1885ms)
+    ✓ MaxGraphSQL;n=8192 (2250ms)
+    ✓ MaxGraphSQL;n=16384 (3413ms)
+    ✓ MaxGraphSQL;n=32768 (7143ms)
+    ✓ MaxGraphSQL;n=65536 (24764ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..213b6c1723dc0864c8c3a7617f7390a64d3a630c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2109ms)
+    ✓ MaxGraphSQL;n=32 (1556ms)
+    ✓ MaxGraphSQL;n=64 (1538ms)
+    ✓ MaxGraphSQL;n=128 (1542ms)
+    ✓ MaxGraphSQL;n=256 (1546ms)
+    ✓ MaxGraphSQL;n=512 (1549ms)
+    ✓ MaxGraphSQL;n=1024 (1572ms)
+    ✓ MaxGraphSQL;n=2048 (1642ms)
+    ✓ MaxGraphSQL;n=4096 (1761ms)
+    ✓ MaxGraphSQL;n=8192 (2136ms)
+    ✓ MaxGraphSQL;n=16384 (3369ms)
+    ✓ MaxGraphSQL;n=32768 (7328ms)
+    ✓ MaxGraphSQL;n=65536 (24830ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..a78d4fed65707219191aed5d656c4c7c41734d36
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2101ms)
+    ✓ MaxGraphSQL;n=32 (1558ms)
+    ✓ MaxGraphSQL;n=64 (1545ms)
+    ✓ MaxGraphSQL;n=128 (1554ms)
+    ✓ MaxGraphSQL;n=256 (1555ms)
+    ✓ MaxGraphSQL;n=512 (1562ms)
+    ✓ MaxGraphSQL;n=1024 (1618ms)
+    ✓ MaxGraphSQL;n=2048 (1706ms)
+    ✓ MaxGraphSQL;n=4096 (1833ms)
+    ✓ MaxGraphSQL;n=8192 (2155ms)
+    ✓ MaxGraphSQL;n=16384 (3462ms)
+    ✓ MaxGraphSQL;n=32768 (7566ms)
+    ✓ MaxGraphSQL;n=65536 (27310ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..c2287a477b6a3a329d96a49e10e88b1c536fbb86
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1957ms)
+    ✓ MaxGraphSQL;n=32 (1501ms)
+    ✓ MaxGraphSQL;n=64 (1479ms)
+    ✓ MaxGraphSQL;n=128 (1478ms)
+    ✓ MaxGraphSQL;n=256 (1489ms)
+    ✓ MaxGraphSQL;n=512 (1490ms)
+    ✓ MaxGraphSQL;n=1024 (1514ms)
+    ✓ MaxGraphSQL;n=2048 (1583ms)
+    ✓ MaxGraphSQL;n=4096 (1691ms)
+    ✓ MaxGraphSQL;n=8192 (2055ms)
+    ✓ MaxGraphSQL;n=16384 (3223ms)
+    ✓ MaxGraphSQL;n=32768 (7025ms)
+    ✓ MaxGraphSQL;n=65536 (24179ms)
+
+
+  13 passing (51s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..3acd32e0dad3c9ba3d00a065850d90055dbe00b9
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2097ms)
+    ✓ MaxGraphSQL;n=32 (1541ms)
+    ✓ MaxGraphSQL;n=64 (1576ms)
+    ✓ MaxGraphSQL;n=128 (1584ms)
+    ✓ MaxGraphSQL;n=256 (1583ms)
+    ✓ MaxGraphSQL;n=512 (1609ms)
+    ✓ MaxGraphSQL;n=1024 (1622ms)
+    ✓ MaxGraphSQL;n=2048 (1698ms)
+    ✓ MaxGraphSQL;n=4096 (1814ms)
+    ✓ MaxGraphSQL;n=8192 (2198ms)
+    ✓ MaxGraphSQL;n=16384 (3441ms)
+    ✓ MaxGraphSQL;n=32768 (7443ms)
+    ✓ MaxGraphSQL;n=65536 (26233ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..93590057d05623fa3a333f35639e5a11f6eddf5e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2201ms)
+    ✓ MaxGraphSQL;n=32 (1725ms)
+    ✓ MaxGraphSQL;n=64 (1702ms)
+    ✓ MaxGraphSQL;n=128 (1696ms)
+    ✓ MaxGraphSQL;n=256 (1715ms)
+    ✓ MaxGraphSQL;n=512 (1816ms)
+    ✓ MaxGraphSQL;n=1024 (1849ms)
+    ✓ MaxGraphSQL;n=2048 (1916ms)
+    ✓ MaxGraphSQL;n=4096 (2043ms)
+    ✓ MaxGraphSQL;n=8192 (2430ms)
+    ✓ MaxGraphSQL;n=16384 (3737ms)
+    ✓ MaxGraphSQL;n=32768 (7929ms)
+    ✓ MaxGraphSQL;n=65536 (26906ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..d7d4b8df6165f55c22232b68c934a593d19b217e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2135ms)
+    ✓ MaxGraphSQL;n=32 (1562ms)
+    ✓ MaxGraphSQL;n=64 (1561ms)
+    ✓ MaxGraphSQL;n=128 (1566ms)
+    ✓ MaxGraphSQL;n=256 (1572ms)
+    ✓ MaxGraphSQL;n=512 (1580ms)
+    ✓ MaxGraphSQL;n=1024 (1596ms)
+    ✓ MaxGraphSQL;n=2048 (1658ms)
+    ✓ MaxGraphSQL;n=4096 (1801ms)
+    ✓ MaxGraphSQL;n=8192 (2180ms)
+    ✓ MaxGraphSQL;n=16384 (3472ms)
+    ✓ MaxGraphSQL;n=32768 (7488ms)
+    ✓ MaxGraphSQL;n=65536 (26435ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..e9d9822d05324cd1ad991099857566b771194841
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2165ms)
+    ✓ MaxGraphSQL;n=32 (1635ms)
+    ✓ MaxGraphSQL;n=64 (1622ms)
+    ✓ MaxGraphSQL;n=128 (1629ms)
+    ✓ MaxGraphSQL;n=256 (1639ms)
+    ✓ MaxGraphSQL;n=512 (1647ms)
+    ✓ MaxGraphSQL;n=1024 (1666ms)
+    ✓ MaxGraphSQL;n=2048 (1727ms)
+    ✓ MaxGraphSQL;n=4096 (1852ms)
+    ✓ MaxGraphSQL;n=8192 (2210ms)
+    ✓ MaxGraphSQL;n=16384 (3447ms)
+    ✓ MaxGraphSQL;n=32768 (7305ms)
+    ✓ MaxGraphSQL;n=65536 (24555ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..33f6778a77cae818604b85b0ec9d8273d1fee25e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2066ms)
+    ✓ MaxGraphSQL;n=32 (1577ms)
+    ✓ MaxGraphSQL;n=64 (1560ms)
+    ✓ MaxGraphSQL;n=128 (1577ms)
+    ✓ MaxGraphSQL;n=256 (1584ms)
+    ✓ MaxGraphSQL;n=512 (1588ms)
+    ✓ MaxGraphSQL;n=1024 (1594ms)
+    ✓ MaxGraphSQL;n=2048 (1673ms)
+    ✓ MaxGraphSQL;n=4096 (1778ms)
+    ✓ MaxGraphSQL;n=8192 (2156ms)
+    ✓ MaxGraphSQL;n=16384 (3380ms)
+    ✓ MaxGraphSQL;n=32768 (7200ms)
+    ✓ MaxGraphSQL;n=65536 (25055ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..8a28d798f1a6d0ce68bfe853f51d15e06bcbe3fc
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2087ms)
+    ✓ MaxGraphSQL;n=32 (1601ms)
+    ✓ MaxGraphSQL;n=64 (1597ms)
+    ✓ MaxGraphSQL;n=128 (1598ms)
+    ✓ MaxGraphSQL;n=256 (1606ms)
+    ✓ MaxGraphSQL;n=512 (1620ms)
+    ✓ MaxGraphSQL;n=1024 (1767ms)
+    ✓ MaxGraphSQL;n=2048 (1820ms)
+    ✓ MaxGraphSQL;n=4096 (1881ms)
+    ✓ MaxGraphSQL;n=8192 (2259ms)
+    ✓ MaxGraphSQL;n=16384 (3385ms)
+    ✓ MaxGraphSQL;n=32768 (7242ms)
+    ✓ MaxGraphSQL;n=65536 (26248ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..cefde11368126c32a60362766e8846a099686d5d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2041ms)
+    ✓ MaxGraphSQL;n=32 (1546ms)
+    ✓ MaxGraphSQL;n=64 (1529ms)
+    ✓ MaxGraphSQL;n=128 (1538ms)
+    ✓ MaxGraphSQL;n=256 (1546ms)
+    ✓ MaxGraphSQL;n=512 (1542ms)
+    ✓ MaxGraphSQL;n=1024 (1582ms)
+    ✓ MaxGraphSQL;n=2048 (1616ms)
+    ✓ MaxGraphSQL;n=4096 (1754ms)
+    ✓ MaxGraphSQL;n=8192 (2146ms)
+    ✓ MaxGraphSQL;n=16384 (3243ms)
+    ✓ MaxGraphSQL;n=32768 (7192ms)
+    ✓ MaxGraphSQL;n=65536 (24384ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..e6ca3a6f0b61ad97b09a7753ef1f4a6eec758ce1
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2266ms)
+    ✓ MaxGraphSQL;n=32 (1689ms)
+    ✓ MaxGraphSQL;n=64 (1671ms)
+    ✓ MaxGraphSQL;n=128 (1682ms)
+    ✓ MaxGraphSQL;n=256 (1699ms)
+    ✓ MaxGraphSQL;n=512 (1699ms)
+    ✓ MaxGraphSQL;n=1024 (1715ms)
+    ✓ MaxGraphSQL;n=2048 (1795ms)
+    ✓ MaxGraphSQL;n=4096 (1910ms)
+    ✓ MaxGraphSQL;n=8192 (2303ms)
+    ✓ MaxGraphSQL;n=16384 (3584ms)
+    ✓ MaxGraphSQL;n=32768 (7648ms)
+    ✓ MaxGraphSQL;n=65536 (26562ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..53f764ea12669724a79786aa6eec209806cb88ab
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2401ms)
+    ✓ MaxGraphSQL;n=32 (1818ms)
+    ✓ MaxGraphSQL;n=64 (1815ms)
+    ✓ MaxGraphSQL;n=128 (1814ms)
+    ✓ MaxGraphSQL;n=256 (1825ms)
+    ✓ MaxGraphSQL;n=512 (1832ms)
+    ✓ MaxGraphSQL;n=1024 (1855ms)
+    ✓ MaxGraphSQL;n=2048 (1923ms)
+    ✓ MaxGraphSQL;n=4096 (2050ms)
+    ✓ MaxGraphSQL;n=8192 (2376ms)
+    ✓ MaxGraphSQL;n=16384 (3604ms)
+    ✓ MaxGraphSQL;n=32768 (7399ms)
+    ✓ MaxGraphSQL;n=65536 (24880ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..ac12d165c2246aa0752564325ab3aeb11129b193
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2082ms)
+    ✓ MaxGraphSQL;n=32 (1520ms)
+    ✓ MaxGraphSQL;n=64 (1522ms)
+    ✓ MaxGraphSQL;n=128 (1525ms)
+    ✓ MaxGraphSQL;n=256 (1519ms)
+    ✓ MaxGraphSQL;n=512 (1593ms)
+    ✓ MaxGraphSQL;n=1024 (1535ms)
+    ✓ MaxGraphSQL;n=2048 (1624ms)
+    ✓ MaxGraphSQL;n=4096 (1777ms)
+    ✓ MaxGraphSQL;n=8192 (2099ms)
+    ✓ MaxGraphSQL;n=16384 (3314ms)
+    ✓ MaxGraphSQL;n=32768 (7187ms)
+    ✓ MaxGraphSQL;n=65536 (24359ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..c1edc11580b6c0bdfd7da5ae5ff6a7bf54394044
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2158ms)
+    ✓ MaxGraphSQL;n=32 (1595ms)
+    ✓ MaxGraphSQL;n=64 (1585ms)
+    ✓ MaxGraphSQL;n=128 (1583ms)
+    ✓ MaxGraphSQL;n=256 (1604ms)
+    ✓ MaxGraphSQL;n=512 (1674ms)
+    ✓ MaxGraphSQL;n=1024 (1682ms)
+    ✓ MaxGraphSQL;n=2048 (1755ms)
+    ✓ MaxGraphSQL;n=4096 (1881ms)
+    ✓ MaxGraphSQL;n=8192 (2268ms)
+    ✓ MaxGraphSQL;n=16384 (3552ms)
+    ✓ MaxGraphSQL;n=32768 (7660ms)
+    ✓ MaxGraphSQL;n=65536 (26677ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..09a8117fe3614acf3b3613b11cdef14a67ec4a88
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2185ms)
+    ✓ MaxGraphSQL;n=32 (1624ms)
+    ✓ MaxGraphSQL;n=64 (1621ms)
+    ✓ MaxGraphSQL;n=128 (1620ms)
+    ✓ MaxGraphSQL;n=256 (1633ms)
+    ✓ MaxGraphSQL;n=512 (1641ms)
+    ✓ MaxGraphSQL;n=1024 (1657ms)
+    ✓ MaxGraphSQL;n=2048 (1742ms)
+    ✓ MaxGraphSQL;n=4096 (1920ms)
+    ✓ MaxGraphSQL;n=8192 (2306ms)
+    ✓ MaxGraphSQL;n=16384 (3739ms)
+    ✓ MaxGraphSQL;n=32768 (8211ms)
+    ✓ MaxGraphSQL;n=65536 (28335ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..404896a6f9bc02f6d1b5e42729c47fea7f7487ea
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2100ms)
+    ✓ MaxGraphSQL;n=32 (1515ms)
+    ✓ MaxGraphSQL;n=64 (1539ms)
+    ✓ MaxGraphSQL;n=128 (1515ms)
+    ✓ MaxGraphSQL;n=256 (1523ms)
+    ✓ MaxGraphSQL;n=512 (1532ms)
+    ✓ MaxGraphSQL;n=1024 (1567ms)
+    ✓ MaxGraphSQL;n=2048 (1604ms)
+    ✓ MaxGraphSQL;n=4096 (1743ms)
+    ✓ MaxGraphSQL;n=8192 (2116ms)
+    ✓ MaxGraphSQL;n=16384 (3355ms)
+    ✓ MaxGraphSQL;n=32768 (7324ms)
+    ✓ MaxGraphSQL;n=65536 (25737ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..c685b753ee9289857aba4ddca7caf145d8f5fb41
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2197ms)
+    ✓ MaxGraphSQL;n=32 (1659ms)
+    ✓ MaxGraphSQL;n=64 (1660ms)
+    ✓ MaxGraphSQL;n=128 (1670ms)
+    ✓ MaxGraphSQL;n=256 (1736ms)
+    ✓ MaxGraphSQL;n=512 (1759ms)
+    ✓ MaxGraphSQL;n=1024 (1779ms)
+    ✓ MaxGraphSQL;n=2048 (1843ms)
+    ✓ MaxGraphSQL;n=4096 (1970ms)
+    ✓ MaxGraphSQL;n=8192 (2340ms)
+    ✓ MaxGraphSQL;n=16384 (3544ms)
+    ✓ MaxGraphSQL;n=32768 (7350ms)
+    ✓ MaxGraphSQL;n=65536 (25374ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..b8b7219a2226f02d9d93798cf1155d12b8838407
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1983ms)
+    ✓ MaxGraphSQL;n=32 (1530ms)
+    ✓ MaxGraphSQL;n=64 (1481ms)
+    ✓ MaxGraphSQL;n=128 (1476ms)
+    ✓ MaxGraphSQL;n=256 (1479ms)
+    ✓ MaxGraphSQL;n=512 (1490ms)
+    ✓ MaxGraphSQL;n=1024 (1527ms)
+    ✓ MaxGraphSQL;n=2048 (1557ms)
+    ✓ MaxGraphSQL;n=4096 (1681ms)
+    ✓ MaxGraphSQL;n=8192 (2030ms)
+    ✓ MaxGraphSQL;n=16384 (3210ms)
+    ✓ MaxGraphSQL;n=32768 (6934ms)
+    ✓ MaxGraphSQL;n=65536 (23278ms)
+
+
+  13 passing (50s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..4eb481539eaddf602a8a7b22cb6e363e5ab4944b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (715ms)
+    ✓ MaxGraphSQL;n=32 (485ms)
+    ✓ MaxGraphSQL;n=64 (453ms)
+    ✓ MaxGraphSQL;n=128 (485ms)
+    ✓ MaxGraphSQL;n=256 (508ms)
+    ✓ MaxGraphSQL;n=512 (559ms)
+    ✓ MaxGraphSQL;n=1024 (751ms)
+    ✓ MaxGraphSQL;n=2048 (1538ms)
+    ✓ MaxGraphSQL;n=4096 (4075ms)
+    ✓ MaxGraphSQL;n=8192 (14496ms)
+    ✓ MaxGraphSQL;n=16384 (59547ms)
+    ✓ MaxGraphSQL;n=32768 (254224ms)
+    ✓ MaxGraphSQL;n=65536 (1098776ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..052828ee9b6bd6c6b61a03c73abcf6425b77e26f
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (707ms)
+    ✓ MaxGraphSQL;n=32 (446ms)
+    ✓ MaxGraphSQL;n=64 (438ms)
+    ✓ MaxGraphSQL;n=128 (461ms)
+    ✓ MaxGraphSQL;n=256 (489ms)
+    ✓ MaxGraphSQL;n=512 (545ms)
+    ✓ MaxGraphSQL;n=1024 (728ms)
+    ✓ MaxGraphSQL;n=2048 (1471ms)
+    ✓ MaxGraphSQL;n=4096 (3928ms)
+    ✓ MaxGraphSQL;n=8192 (13836ms)
+    ✓ MaxGraphSQL;n=16384 (55061ms)
+    ✓ MaxGraphSQL;n=32768 (244144ms)
+    ✓ MaxGraphSQL;n=65536 (1102243ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..9ad03853bee9df403605c3a9281a242511d59090
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (780ms)
+    ✓ MaxGraphSQL;n=32 (481ms)
+    ✓ MaxGraphSQL;n=64 (466ms)
+    ✓ MaxGraphSQL;n=128 (480ms)
+    ✓ MaxGraphSQL;n=256 (492ms)
+    ✓ MaxGraphSQL;n=512 (538ms)
+    ✓ MaxGraphSQL;n=1024 (731ms)
+    ✓ MaxGraphSQL;n=2048 (1502ms)
+    ✓ MaxGraphSQL;n=4096 (4066ms)
+    ✓ MaxGraphSQL;n=8192 (14629ms)
+    ✓ MaxGraphSQL;n=16384 (60877ms)
+    ✓ MaxGraphSQL;n=32768 (269931ms)
+    ✓ MaxGraphSQL;n=65536 (1106167ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..2ba31d00ae683ffbdaed16baaae8f8c14b7c2f80
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (729ms)
+    ✓ MaxGraphSQL;n=32 (470ms)
+    ✓ MaxGraphSQL;n=64 (457ms)
+    ✓ MaxGraphSQL;n=128 (471ms)
+    ✓ MaxGraphSQL;n=256 (477ms)
+    ✓ MaxGraphSQL;n=512 (530ms)
+    ✓ MaxGraphSQL;n=1024 (705ms)
+    ✓ MaxGraphSQL;n=2048 (1401ms)
+    ✓ MaxGraphSQL;n=4096 (3698ms)
+    ✓ MaxGraphSQL;n=8192 (13149ms)
+    ✓ MaxGraphSQL;n=16384 (55914ms)
+    ✓ MaxGraphSQL;n=32768 (235976ms)
+    ✓ MaxGraphSQL;n=65536 (1096264ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..690b9a873f2dacb2d5a9ec0a39a0c261c2b94352
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (729ms)
+    ✓ MaxGraphSQL;n=32 (449ms)
+    ✓ MaxGraphSQL;n=64 (440ms)
+    ✓ MaxGraphSQL;n=128 (457ms)
+    ✓ MaxGraphSQL;n=256 (463ms)
+    ✓ MaxGraphSQL;n=512 (517ms)
+    ✓ MaxGraphSQL;n=1024 (689ms)
+    ✓ MaxGraphSQL;n=2048 (1405ms)
+    ✓ MaxGraphSQL;n=4096 (3772ms)
+    ✓ MaxGraphSQL;n=8192 (13354ms)
+    ✓ MaxGraphSQL;n=16384 (52721ms)
+    ✓ MaxGraphSQL;n=32768 (244779ms)
+    ✓ MaxGraphSQL;n=65536 (1083681ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..cba2eb968c27be93ee9d6a92ad598113fbe1e747
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (732ms)
+    ✓ MaxGraphSQL;n=32 (436ms)
+    ✓ MaxGraphSQL;n=64 (419ms)
+    ✓ MaxGraphSQL;n=128 (448ms)
+    ✓ MaxGraphSQL;n=256 (479ms)
+    ✓ MaxGraphSQL;n=512 (538ms)
+    ✓ MaxGraphSQL;n=1024 (723ms)
+    ✓ MaxGraphSQL;n=2048 (1503ms)
+    ✓ MaxGraphSQL;n=4096 (4040ms)
+    ✓ MaxGraphSQL;n=8192 (14352ms)
+    ✓ MaxGraphSQL;n=16384 (57997ms)
+    ✓ MaxGraphSQL;n=32768 (259846ms)
+    ✓ MaxGraphSQL;n=65536 (1081550ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..d6bd98fc809cd985d5f26353596cb16d395eb6e9
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (725ms)
+    ✓ MaxGraphSQL;n=32 (432ms)
+    ✓ MaxGraphSQL;n=64 (420ms)
+    ✓ MaxGraphSQL;n=128 (445ms)
+    ✓ MaxGraphSQL;n=256 (487ms)
+    ✓ MaxGraphSQL;n=512 (543ms)
+    ✓ MaxGraphSQL;n=1024 (734ms)
+    ✓ MaxGraphSQL;n=2048 (1515ms)
+    ✓ MaxGraphSQL;n=4096 (4038ms)
+    ✓ MaxGraphSQL;n=8192 (14551ms)
+    ✓ MaxGraphSQL;n=16384 (60298ms)
+    ✓ MaxGraphSQL;n=32768 (250474ms)
+    ✓ MaxGraphSQL;n=65536 (1098888ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..9aa228b66e4b82cbf6df9fd1b8c7815ae34cb740
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (646ms)
+    ✓ MaxGraphSQL;n=32 (396ms)
+    ✓ MaxGraphSQL;n=64 (392ms)
+    ✓ MaxGraphSQL;n=128 (410ms)
+    ✓ MaxGraphSQL;n=256 (413ms)
+    ✓ MaxGraphSQL;n=512 (459ms)
+    ✓ MaxGraphSQL;n=1024 (630ms)
+    ✓ MaxGraphSQL;n=2048 (1320ms)
+    ✓ MaxGraphSQL;n=4096 (3611ms)
+    ✓ MaxGraphSQL;n=8192 (12898ms)
+    ✓ MaxGraphSQL;n=16384 (52432ms)
+    ✓ MaxGraphSQL;n=32768 (212067ms)
+    ✓ MaxGraphSQL;n=65536 (1191103ms)
+
+
+  13 passing (25m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..c3fb2542eaab041b625ebc2269c2f75a0bc71073
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (686ms)
+    ✓ MaxGraphSQL;n=32 (433ms)
+    ✓ MaxGraphSQL;n=64 (420ms)
+    ✓ MaxGraphSQL;n=128 (443ms)
+    ✓ MaxGraphSQL;n=256 (447ms)
+    ✓ MaxGraphSQL;n=512 (501ms)
+    ✓ MaxGraphSQL;n=1024 (675ms)
+    ✓ MaxGraphSQL;n=2048 (1392ms)
+    ✓ MaxGraphSQL;n=4096 (3734ms)
+    ✓ MaxGraphSQL;n=8192 (13357ms)
+    ✓ MaxGraphSQL;n=16384 (56595ms)
+    ✓ MaxGraphSQL;n=32768 (247519ms)
+    ✓ MaxGraphSQL;n=65536 (1030991ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..95b14f212f865b19991d56eff8611cce150e34cb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (691ms)
+    ✓ MaxGraphSQL;n=32 (423ms)
+    ✓ MaxGraphSQL;n=64 (418ms)
+    ✓ MaxGraphSQL;n=128 (428ms)
+    ✓ MaxGraphSQL;n=256 (434ms)
+    ✓ MaxGraphSQL;n=512 (482ms)
+    ✓ MaxGraphSQL;n=1024 (649ms)
+    ✓ MaxGraphSQL;n=2048 (1336ms)
+    ✓ MaxGraphSQL;n=4096 (3644ms)
+    ✓ MaxGraphSQL;n=8192 (12846ms)
+    ✓ MaxGraphSQL;n=16384 (51618ms)
+    ✓ MaxGraphSQL;n=32768 (210930ms)
+    ✓ MaxGraphSQL;n=65536 (1105551ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..bad7e99fa043fdb4ee155f8f39df75791acede8d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (719ms)
+    ✓ MaxGraphSQL;n=32 (468ms)
+    ✓ MaxGraphSQL;n=64 (438ms)
+    ✓ MaxGraphSQL;n=128 (448ms)
+    ✓ MaxGraphSQL;n=256 (462ms)
+    ✓ MaxGraphSQL;n=512 (514ms)
+    ✓ MaxGraphSQL;n=1024 (695ms)
+    ✓ MaxGraphSQL;n=2048 (1473ms)
+    ✓ MaxGraphSQL;n=4096 (3972ms)
+    ✓ MaxGraphSQL;n=8192 (14221ms)
+    ✓ MaxGraphSQL;n=16384 (57456ms)
+    ✓ MaxGraphSQL;n=32768 (250595ms)
+    ✓ MaxGraphSQL;n=65536 (1106977ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..f49d3a009dcd4070bc05194140de23bf97fff498
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (696ms)
+    ✓ MaxGraphSQL;n=32 (437ms)
+    ✓ MaxGraphSQL;n=64 (428ms)
+    ✓ MaxGraphSQL;n=128 (448ms)
+    ✓ MaxGraphSQL;n=256 (467ms)
+    ✓ MaxGraphSQL;n=512 (513ms)
+    ✓ MaxGraphSQL;n=1024 (685ms)
+    ✓ MaxGraphSQL;n=2048 (1379ms)
+    ✓ MaxGraphSQL;n=4096 (3688ms)
+    ✓ MaxGraphSQL;n=8192 (12942ms)
+    ✓ MaxGraphSQL;n=16384 (51869ms)
+    ✓ MaxGraphSQL;n=32768 (212928ms)
+    ✓ MaxGraphSQL;n=65536 (1043571ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..54e686acbbf768a616eb55e94a272b1033b93b44
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (666ms)
+    ✓ MaxGraphSQL;n=32 (412ms)
+    ✓ MaxGraphSQL;n=64 (402ms)
+    ✓ MaxGraphSQL;n=128 (413ms)
+    ✓ MaxGraphSQL;n=256 (421ms)
+    ✓ MaxGraphSQL;n=512 (471ms)
+    ✓ MaxGraphSQL;n=1024 (646ms)
+    ✓ MaxGraphSQL;n=2048 (1359ms)
+    ✓ MaxGraphSQL;n=4096 (3711ms)
+    ✓ MaxGraphSQL;n=8192 (13275ms)
+    ✓ MaxGraphSQL;n=16384 (52512ms)
+    ✓ MaxGraphSQL;n=32768 (256153ms)
+    ✓ MaxGraphSQL;n=65536 (1126427ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..95bdd9def95c0f55fbc1c426c38b3ff03cb7f1a6
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (704ms)
+    ✓ MaxGraphSQL;n=32 (423ms)
+    ✓ MaxGraphSQL;n=64 (413ms)
+    ✓ MaxGraphSQL;n=128 (432ms)
+    ✓ MaxGraphSQL;n=256 (442ms)
+    ✓ MaxGraphSQL;n=512 (486ms)
+    ✓ MaxGraphSQL;n=1024 (669ms)
+    ✓ MaxGraphSQL;n=2048 (1410ms)
+    ✓ MaxGraphSQL;n=4096 (3872ms)
+    ✓ MaxGraphSQL;n=8192 (13795ms)
+    ✓ MaxGraphSQL;n=16384 (54877ms)
+    ✓ MaxGraphSQL;n=32768 (223268ms)
+    ✓ MaxGraphSQL;n=65536 (962454ms)
+
+
+  13 passing (21m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..5efde09d6ed0d7237a3bf8bbb26d0ad29ebfcf0c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (714ms)
+    ✓ MaxGraphSQL;n=32 (436ms)
+    ✓ MaxGraphSQL;n=64 (425ms)
+    ✓ MaxGraphSQL;n=128 (443ms)
+    ✓ MaxGraphSQL;n=256 (447ms)
+    ✓ MaxGraphSQL;n=512 (495ms)
+    ✓ MaxGraphSQL;n=1024 (671ms)
+    ✓ MaxGraphSQL;n=2048 (1401ms)
+    ✓ MaxGraphSQL;n=4096 (3775ms)
+    ✓ MaxGraphSQL;n=8192 (13378ms)
+    ✓ MaxGraphSQL;n=16384 (53094ms)
+    ✓ MaxGraphSQL;n=32768 (216890ms)
+    ✓ MaxGraphSQL;n=65536 (1112706ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..732a2aba884b2991c8fd1c73532eaf28c0ea02c8
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (761ms)
+    ✓ MaxGraphSQL;n=32 (466ms)
+    ✓ MaxGraphSQL;n=64 (455ms)
+    ✓ MaxGraphSQL;n=128 (476ms)
+    ✓ MaxGraphSQL;n=256 (488ms)
+    ✓ MaxGraphSQL;n=512 (535ms)
+    ✓ MaxGraphSQL;n=1024 (742ms)
+    ✓ MaxGraphSQL;n=2048 (1565ms)
+    ✓ MaxGraphSQL;n=4096 (4287ms)
+    ✓ MaxGraphSQL;n=8192 (15426ms)
+    ✓ MaxGraphSQL;n=16384 (62249ms)
+    ✓ MaxGraphSQL;n=32768 (244870ms)
+    ✓ MaxGraphSQL;n=65536 (978517ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..d14ded7aff9a0b2651f7ea9c19f7b84169791e41
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (719ms)
+    ✓ MaxGraphSQL;n=32 (450ms)
+    ✓ MaxGraphSQL;n=64 (488ms)
+    ✓ MaxGraphSQL;n=128 (496ms)
+    ✓ MaxGraphSQL;n=256 (500ms)
+    ✓ MaxGraphSQL;n=512 (546ms)
+    ✓ MaxGraphSQL;n=1024 (722ms)
+    ✓ MaxGraphSQL;n=2048 (1405ms)
+    ✓ MaxGraphSQL;n=4096 (3674ms)
+    ✓ MaxGraphSQL;n=8192 (12937ms)
+    ✓ MaxGraphSQL;n=16384 (54991ms)
+    ✓ MaxGraphSQL;n=32768 (240621ms)
+    ✓ MaxGraphSQL;n=65536 (1121620ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..03a25d7811383992535f7274f10342e32c45192b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (676ms)
+    ✓ MaxGraphSQL;n=32 (410ms)
+    ✓ MaxGraphSQL;n=64 (399ms)
+    ✓ MaxGraphSQL;n=128 (408ms)
+    ✓ MaxGraphSQL;n=256 (425ms)
+    ✓ MaxGraphSQL;n=512 (478ms)
+    ✓ MaxGraphSQL;n=1024 (663ms)
+    ✓ MaxGraphSQL;n=2048 (1400ms)
+    ✓ MaxGraphSQL;n=4096 (3889ms)
+    ✓ MaxGraphSQL;n=8192 (13892ms)
+    ✓ MaxGraphSQL;n=16384 (55705ms)
+    ✓ MaxGraphSQL;n=32768 (255993ms)
+    ✓ MaxGraphSQL;n=65536 (991055ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..bafb7676c76728386b480a407a0a8d6d0eb8bde3
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (737ms)
+    ✓ MaxGraphSQL;n=32 (469ms)
+    ✓ MaxGraphSQL;n=64 (462ms)
+    ✓ MaxGraphSQL;n=128 (486ms)
+    ✓ MaxGraphSQL;n=256 (526ms)
+    ✓ MaxGraphSQL;n=512 (581ms)
+    ✓ MaxGraphSQL;n=1024 (756ms)
+    ✓ MaxGraphSQL;n=2048 (1481ms)
+    ✓ MaxGraphSQL;n=4096 (3814ms)
+    ✓ MaxGraphSQL;n=8192 (13445ms)
+    ✓ MaxGraphSQL;n=16384 (53559ms)
+    ✓ MaxGraphSQL;n=32768 (217137ms)
+    ✓ MaxGraphSQL;n=65536 (1032683ms)
+
+
+  13 passing (22m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..c4e2b6430850de7b05783f8e156127032d50c181
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (686ms)
+    ✓ MaxGraphSQL;n=32 (415ms)
+    ✓ MaxGraphSQL;n=64 (401ms)
+    ✓ MaxGraphSQL;n=128 (411ms)
+    ✓ MaxGraphSQL;n=256 (417ms)
+    ✓ MaxGraphSQL;n=512 (470ms)
+    ✓ MaxGraphSQL;n=1024 (647ms)
+    ✓ MaxGraphSQL;n=2048 (1366ms)
+    ✓ MaxGraphSQL;n=4096 (3802ms)
+    ✓ MaxGraphSQL;n=8192 (13912ms)
+    ✓ MaxGraphSQL;n=16384 (54675ms)
+    ✓ MaxGraphSQL;n=32768 (234362ms)
+    ✓ MaxGraphSQL;n=65536 (1130804ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..d84fa6206e689d83b41680209f5edcab3488765c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1151ms)
+    ✓ MaxGraphSQL;n=32 (777ms)
+    ✓ MaxGraphSQL;n=64 (767ms)
+    ✓ MaxGraphSQL;n=128 (770ms)
+    ✓ MaxGraphSQL;n=256 (820ms)
+    ✓ MaxGraphSQL;n=512 (850ms)
+    ✓ MaxGraphSQL;n=1024 (925ms)
+    ✓ MaxGraphSQL;n=2048 (1044ms)
+    ✓ MaxGraphSQL;n=4096 (1467ms)
+    ✓ MaxGraphSQL;n=8192 (2896ms)
+    ✓ MaxGraphSQL;n=16384 (7877ms)
+    ✓ MaxGraphSQL;n=32768 (29223ms)
+    ✓ MaxGraphSQL;n=65536 (120124ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..b5e301c2607c66f73dac279645c73808de488e7a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1198ms)
+    ✓ MaxGraphSQL;n=32 (784ms)
+    ✓ MaxGraphSQL;n=64 (776ms)
+    ✓ MaxGraphSQL;n=128 (788ms)
+    ✓ MaxGraphSQL;n=256 (861ms)
+    ✓ MaxGraphSQL;n=512 (814ms)
+    ✓ MaxGraphSQL;n=1024 (889ms)
+    ✓ MaxGraphSQL;n=2048 (1012ms)
+    ✓ MaxGraphSQL;n=4096 (1438ms)
+    ✓ MaxGraphSQL;n=8192 (2893ms)
+    ✓ MaxGraphSQL;n=16384 (7982ms)
+    ✓ MaxGraphSQL;n=32768 (28993ms)
+    ✓ MaxGraphSQL;n=65536 (115196ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..76a7c7a0bf470f22c0a60607160ede8e0c0b88fb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1217ms)
+    ✓ MaxGraphSQL;n=32 (809ms)
+    ✓ MaxGraphSQL;n=64 (798ms)
+    ✓ MaxGraphSQL;n=128 (810ms)
+    ✓ MaxGraphSQL;n=256 (801ms)
+    ✓ MaxGraphSQL;n=512 (812ms)
+    ✓ MaxGraphSQL;n=1024 (870ms)
+    ✓ MaxGraphSQL;n=2048 (989ms)
+    ✓ MaxGraphSQL;n=4096 (1410ms)
+    ✓ MaxGraphSQL;n=8192 (2745ms)
+    ✓ MaxGraphSQL;n=16384 (7515ms)
+    ✓ MaxGraphSQL;n=32768 (28083ms)
+    ✓ MaxGraphSQL;n=65536 (119009ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..f9ee622986255824ffea6cb2b2dff30e787ddf87
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1293ms)
+    ✓ MaxGraphSQL;n=32 (886ms)
+    ✓ MaxGraphSQL;n=64 (867ms)
+    ✓ MaxGraphSQL;n=128 (919ms)
+    ✓ MaxGraphSQL;n=256 (881ms)
+    ✓ MaxGraphSQL;n=512 (890ms)
+    ✓ MaxGraphSQL;n=1024 (947ms)
+    ✓ MaxGraphSQL;n=2048 (1080ms)
+    ✓ MaxGraphSQL;n=4096 (1522ms)
+    ✓ MaxGraphSQL;n=8192 (2986ms)
+    ✓ MaxGraphSQL;n=16384 (8123ms)
+    ✓ MaxGraphSQL;n=32768 (30320ms)
+    ✓ MaxGraphSQL;n=65536 (123711ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..67cb5bc24e96ed1b839eea41250bbfce3e233f63
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1175ms)
+    ✓ MaxGraphSQL;n=32 (834ms)
+    ✓ MaxGraphSQL;n=64 (823ms)
+    ✓ MaxGraphSQL;n=128 (817ms)
+    ✓ MaxGraphSQL;n=256 (832ms)
+    ✓ MaxGraphSQL;n=512 (794ms)
+    ✓ MaxGraphSQL;n=1024 (835ms)
+    ✓ MaxGraphSQL;n=2048 (966ms)
+    ✓ MaxGraphSQL;n=4096 (1407ms)
+    ✓ MaxGraphSQL;n=8192 (2774ms)
+    ✓ MaxGraphSQL;n=16384 (7652ms)
+    ✓ MaxGraphSQL;n=32768 (28204ms)
+    ✓ MaxGraphSQL;n=65536 (117547ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..9a7861e58b97d355497a71930fd19de463626b1e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1250ms)
+    ✓ MaxGraphSQL;n=32 (869ms)
+    ✓ MaxGraphSQL;n=64 (855ms)
+    ✓ MaxGraphSQL;n=128 (858ms)
+    ✓ MaxGraphSQL;n=256 (878ms)
+    ✓ MaxGraphSQL;n=512 (894ms)
+    ✓ MaxGraphSQL;n=1024 (967ms)
+    ✓ MaxGraphSQL;n=2048 (1097ms)
+    ✓ MaxGraphSQL;n=4096 (1554ms)
+    ✓ MaxGraphSQL;n=8192 (3066ms)
+    ✓ MaxGraphSQL;n=16384 (8501ms)
+    ✓ MaxGraphSQL;n=32768 (31962ms)
+    ✓ MaxGraphSQL;n=65536 (130327ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..11a12b28b7734ee4b609a8cc3ba29c8dad6f56f4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1190ms)
+    ✓ MaxGraphSQL;n=32 (765ms)
+    ✓ MaxGraphSQL;n=64 (756ms)
+    ✓ MaxGraphSQL;n=128 (755ms)
+    ✓ MaxGraphSQL;n=256 (784ms)
+    ✓ MaxGraphSQL;n=512 (787ms)
+    ✓ MaxGraphSQL;n=1024 (858ms)
+    ✓ MaxGraphSQL;n=2048 (983ms)
+    ✓ MaxGraphSQL;n=4096 (1427ms)
+    ✓ MaxGraphSQL;n=8192 (2917ms)
+    ✓ MaxGraphSQL;n=16384 (8158ms)
+    ✓ MaxGraphSQL;n=32768 (29691ms)
+    ✓ MaxGraphSQL;n=65536 (117757ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..10680ed45685d03be73f357d6f21ab0c8f58bdd7
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1227ms)
+    ✓ MaxGraphSQL;n=32 (785ms)
+    ✓ MaxGraphSQL;n=64 (781ms)
+    ✓ MaxGraphSQL;n=128 (784ms)
+    ✓ MaxGraphSQL;n=256 (796ms)
+    ✓ MaxGraphSQL;n=512 (809ms)
+    ✓ MaxGraphSQL;n=1024 (874ms)
+    ✓ MaxGraphSQL;n=2048 (995ms)
+    ✓ MaxGraphSQL;n=4096 (1448ms)
+    ✓ MaxGraphSQL;n=8192 (2902ms)
+    ✓ MaxGraphSQL;n=16384 (8006ms)
+    ✓ MaxGraphSQL;n=32768 (28518ms)
+    ✓ MaxGraphSQL;n=65536 (112413ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..dbcc19057d14a08d08cc7a5bde27db0cf7d33f07
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1114ms)
+    ✓ MaxGraphSQL;n=32 (756ms)
+    ✓ MaxGraphSQL;n=64 (755ms)
+    ✓ MaxGraphSQL;n=128 (758ms)
+    ✓ MaxGraphSQL;n=256 (769ms)
+    ✓ MaxGraphSQL;n=512 (776ms)
+    ✓ MaxGraphSQL;n=1024 (855ms)
+    ✓ MaxGraphSQL;n=2048 (980ms)
+    ✓ MaxGraphSQL;n=4096 (1449ms)
+    ✓ MaxGraphSQL;n=8192 (2935ms)
+    ✓ MaxGraphSQL;n=16384 (8257ms)
+    ✓ MaxGraphSQL;n=32768 (29909ms)
+    ✓ MaxGraphSQL;n=65536 (119183ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..daaa8954b01b506121730eaa66f7de5a36590f52
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1328ms)
+    ✓ MaxGraphSQL;n=32 (888ms)
+    ✓ MaxGraphSQL;n=64 (890ms)
+    ✓ MaxGraphSQL;n=128 (889ms)
+    ✓ MaxGraphSQL;n=256 (900ms)
+    ✓ MaxGraphSQL;n=512 (915ms)
+    ✓ MaxGraphSQL;n=1024 (962ms)
+    ✓ MaxGraphSQL;n=2048 (1090ms)
+    ✓ MaxGraphSQL;n=4096 (1553ms)
+    ✓ MaxGraphSQL;n=8192 (2952ms)
+    ✓ MaxGraphSQL;n=16384 (8049ms)
+    ✓ MaxGraphSQL;n=32768 (30635ms)
+    ✓ MaxGraphSQL;n=65536 (132320ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..efa2a8575367278d899361b358efeca4a347d1c4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1171ms)
+    ✓ MaxGraphSQL;n=32 (816ms)
+    ✓ MaxGraphSQL;n=64 (794ms)
+    ✓ MaxGraphSQL;n=128 (806ms)
+    ✓ MaxGraphSQL;n=256 (896ms)
+    ✓ MaxGraphSQL;n=512 (854ms)
+    ✓ MaxGraphSQL;n=1024 (922ms)
+    ✓ MaxGraphSQL;n=2048 (1086ms)
+    ✓ MaxGraphSQL;n=4096 (1536ms)
+    ✓ MaxGraphSQL;n=8192 (2977ms)
+    ✓ MaxGraphSQL;n=16384 (8043ms)
+    ✓ MaxGraphSQL;n=32768 (29655ms)
+    ✓ MaxGraphSQL;n=65536 (128985ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..7993a0be09e020f6aaa8a980d8fe105d170c5379
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1133ms)
+    ✓ MaxGraphSQL;n=32 (792ms)
+    ✓ MaxGraphSQL;n=64 (776ms)
+    ✓ MaxGraphSQL;n=128 (786ms)
+    ✓ MaxGraphSQL;n=256 (807ms)
+    ✓ MaxGraphSQL;n=512 (858ms)
+    ✓ MaxGraphSQL;n=1024 (940ms)
+    ✓ MaxGraphSQL;n=2048 (1053ms)
+    ✓ MaxGraphSQL;n=4096 (1516ms)
+    ✓ MaxGraphSQL;n=8192 (2977ms)
+    ✓ MaxGraphSQL;n=16384 (8120ms)
+    ✓ MaxGraphSQL;n=32768 (29483ms)
+    ✓ MaxGraphSQL;n=65536 (123075ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..0f8bd35719e8367805ddcb5067ebf510236a51ee
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1154ms)
+    ✓ MaxGraphSQL;n=32 (777ms)
+    ✓ MaxGraphSQL;n=64 (765ms)
+    ✓ MaxGraphSQL;n=128 (773ms)
+    ✓ MaxGraphSQL;n=256 (779ms)
+    ✓ MaxGraphSQL;n=512 (802ms)
+    ✓ MaxGraphSQL;n=1024 (864ms)
+    ✓ MaxGraphSQL;n=2048 (984ms)
+    ✓ MaxGraphSQL;n=4096 (1419ms)
+    ✓ MaxGraphSQL;n=8192 (2807ms)
+    ✓ MaxGraphSQL;n=16384 (7737ms)
+    ✓ MaxGraphSQL;n=32768 (27691ms)
+    ✓ MaxGraphSQL;n=65536 (110918ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..4214ecc50b3157e76afe2c5269c381a0e78315a3
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1217ms)
+    ✓ MaxGraphSQL;n=32 (852ms)
+    ✓ MaxGraphSQL;n=64 (847ms)
+    ✓ MaxGraphSQL;n=128 (846ms)
+    ✓ MaxGraphSQL;n=256 (851ms)
+    ✓ MaxGraphSQL;n=512 (875ms)
+    ✓ MaxGraphSQL;n=1024 (949ms)
+    ✓ MaxGraphSQL;n=2048 (1053ms)
+    ✓ MaxGraphSQL;n=4096 (1477ms)
+    ✓ MaxGraphSQL;n=8192 (2859ms)
+    ✓ MaxGraphSQL;n=16384 (7692ms)
+    ✓ MaxGraphSQL;n=32768 (27294ms)
+    ✓ MaxGraphSQL;n=65536 (109856ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..644448618ec4ce7afd3a2239142e072be46be6ed
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1251ms)
+    ✓ MaxGraphSQL;n=32 (820ms)
+    ✓ MaxGraphSQL;n=64 (808ms)
+    ✓ MaxGraphSQL;n=128 (816ms)
+    ✓ MaxGraphSQL;n=256 (827ms)
+    ✓ MaxGraphSQL;n=512 (840ms)
+    ✓ MaxGraphSQL;n=1024 (909ms)
+    ✓ MaxGraphSQL;n=2048 (1038ms)
+    ✓ MaxGraphSQL;n=4096 (1498ms)
+    ✓ MaxGraphSQL;n=8192 (2961ms)
+    ✓ MaxGraphSQL;n=16384 (8131ms)
+    ✓ MaxGraphSQL;n=32768 (30285ms)
+    ✓ MaxGraphSQL;n=65536 (128575ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..a1171285245ca17dd937ab0c82c2e2f1202da28c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1139ms)
+    ✓ MaxGraphSQL;n=32 (740ms)
+    ✓ MaxGraphSQL;n=64 (734ms)
+    ✓ MaxGraphSQL;n=128 (744ms)
+    ✓ MaxGraphSQL;n=256 (760ms)
+    ✓ MaxGraphSQL;n=512 (774ms)
+    ✓ MaxGraphSQL;n=1024 (822ms)
+    ✓ MaxGraphSQL;n=2048 (974ms)
+    ✓ MaxGraphSQL;n=4096 (1458ms)
+    ✓ MaxGraphSQL;n=8192 (2935ms)
+    ✓ MaxGraphSQL;n=16384 (8070ms)
+    ✓ MaxGraphSQL;n=32768 (30529ms)
+    ✓ MaxGraphSQL;n=65536 (125737ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..af21209b3a6b3656dc00bed52b30467c1558ec07
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1123ms)
+    ✓ MaxGraphSQL;n=32 (768ms)
+    ✓ MaxGraphSQL;n=64 (747ms)
+    ✓ MaxGraphSQL;n=128 (756ms)
+    ✓ MaxGraphSQL;n=256 (772ms)
+    ✓ MaxGraphSQL;n=512 (856ms)
+    ✓ MaxGraphSQL;n=1024 (896ms)
+    ✓ MaxGraphSQL;n=2048 (1034ms)
+    ✓ MaxGraphSQL;n=4096 (1492ms)
+    ✓ MaxGraphSQL;n=8192 (2988ms)
+    ✓ MaxGraphSQL;n=16384 (8307ms)
+    ✓ MaxGraphSQL;n=32768 (30529ms)
+    ✓ MaxGraphSQL;n=65536 (129161ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..232b5660562354eb9a2009ecf8b09bd6c0e309ed
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1193ms)
+    ✓ MaxGraphSQL;n=32 (785ms)
+    ✓ MaxGraphSQL;n=64 (778ms)
+    ✓ MaxGraphSQL;n=128 (776ms)
+    ✓ MaxGraphSQL;n=256 (794ms)
+    ✓ MaxGraphSQL;n=512 (826ms)
+    ✓ MaxGraphSQL;n=1024 (869ms)
+    ✓ MaxGraphSQL;n=2048 (995ms)
+    ✓ MaxGraphSQL;n=4096 (1457ms)
+    ✓ MaxGraphSQL;n=8192 (2910ms)
+    ✓ MaxGraphSQL;n=16384 (7965ms)
+    ✓ MaxGraphSQL;n=32768 (28806ms)
+    ✓ MaxGraphSQL;n=65536 (113594ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..bb6404d884897f139ab14abb5b65f061928800a8
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1161ms)
+    ✓ MaxGraphSQL;n=32 (817ms)
+    ✓ MaxGraphSQL;n=64 (801ms)
+    ✓ MaxGraphSQL;n=128 (809ms)
+    ✓ MaxGraphSQL;n=256 (828ms)
+    ✓ MaxGraphSQL;n=512 (881ms)
+    ✓ MaxGraphSQL;n=1024 (929ms)
+    ✓ MaxGraphSQL;n=2048 (1050ms)
+    ✓ MaxGraphSQL;n=4096 (1512ms)
+    ✓ MaxGraphSQL;n=8192 (2960ms)
+    ✓ MaxGraphSQL;n=16384 (8104ms)
+    ✓ MaxGraphSQL;n=32768 (29557ms)
+    ✓ MaxGraphSQL;n=65536 (124271ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..5f946efc226aa2249b5b8f6be208e87fdcd2c4d0
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1345ms)
+    ✓ MaxGraphSQL;n=32 (852ms)
+    ✓ MaxGraphSQL;n=64 (818ms)
+    ✓ MaxGraphSQL;n=128 (830ms)
+    ✓ MaxGraphSQL;n=256 (752ms)
+    ✓ MaxGraphSQL;n=512 (768ms)
+    ✓ MaxGraphSQL;n=1024 (823ms)
+    ✓ MaxGraphSQL;n=2048 (938ms)
+    ✓ MaxGraphSQL;n=4096 (1344ms)
+    ✓ MaxGraphSQL;n=8192 (2626ms)
+    ✓ MaxGraphSQL;n=16384 (7183ms)
+    ✓ MaxGraphSQL;n=32768 (25491ms)
+    ✓ MaxGraphSQL;n=65536 (102417ms)
+
+
+  13 passing (2m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..40f7a4f1e015f46958396f8516b7bab5d4137f89
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2145ms)
+    ✓ MaxGraphSQL;n=32 (1595ms)
+    ✓ MaxGraphSQL;n=64 (1582ms)
+    ✓ MaxGraphSQL;n=128 (1594ms)
+    ✓ MaxGraphSQL;n=256 (1603ms)
+    ✓ MaxGraphSQL;n=512 (1606ms)
+    ✓ MaxGraphSQL;n=1024 (1638ms)
+    ✓ MaxGraphSQL;n=2048 (1678ms)
+    ✓ MaxGraphSQL;n=4096 (1831ms)
+    ✓ MaxGraphSQL;n=8192 (2194ms)
+    ✓ MaxGraphSQL;n=16384 (3472ms)
+    ✓ MaxGraphSQL;n=32768 (7428ms)
+    ✓ MaxGraphSQL;n=65536 (26217ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..21d400ee2795ecc2e8c67aeab3ae0a3a2cb019b4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2152ms)
+    ✓ MaxGraphSQL;n=32 (1625ms)
+    ✓ MaxGraphSQL;n=64 (1606ms)
+    ✓ MaxGraphSQL;n=128 (1622ms)
+    ✓ MaxGraphSQL;n=256 (1626ms)
+    ✓ MaxGraphSQL;n=512 (1640ms)
+    ✓ MaxGraphSQL;n=1024 (1652ms)
+    ✓ MaxGraphSQL;n=2048 (1754ms)
+    ✓ MaxGraphSQL;n=4096 (1819ms)
+    ✓ MaxGraphSQL;n=8192 (2193ms)
+    ✓ MaxGraphSQL;n=16384 (3400ms)
+    ✓ MaxGraphSQL;n=32768 (7228ms)
+    ✓ MaxGraphSQL;n=65536 (25310ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..323d12588ab0b02f02329fd96f645124e70f9f62
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1956ms)
+    ✓ MaxGraphSQL;n=32 (1446ms)
+    ✓ MaxGraphSQL;n=64 (1446ms)
+    ✓ MaxGraphSQL;n=128 (1449ms)
+    ✓ MaxGraphSQL;n=256 (1588ms)
+    ✓ MaxGraphSQL;n=512 (1456ms)
+    ✓ MaxGraphSQL;n=1024 (1486ms)
+    ✓ MaxGraphSQL;n=2048 (1558ms)
+    ✓ MaxGraphSQL;n=4096 (1813ms)
+    ✓ MaxGraphSQL;n=8192 (2186ms)
+    ✓ MaxGraphSQL;n=16384 (3480ms)
+    ✓ MaxGraphSQL;n=32768 (7029ms)
+    ✓ MaxGraphSQL;n=65536 (24772ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..c2be911b753949cbad383e4b87c288f98deb1484
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2170ms)
+    ✓ MaxGraphSQL;n=32 (1605ms)
+    ✓ MaxGraphSQL;n=64 (1600ms)
+    ✓ MaxGraphSQL;n=128 (1614ms)
+    ✓ MaxGraphSQL;n=256 (1660ms)
+    ✓ MaxGraphSQL;n=512 (1662ms)
+    ✓ MaxGraphSQL;n=1024 (1681ms)
+    ✓ MaxGraphSQL;n=2048 (1761ms)
+    ✓ MaxGraphSQL;n=4096 (1874ms)
+    ✓ MaxGraphSQL;n=8192 (2252ms)
+    ✓ MaxGraphSQL;n=16384 (3546ms)
+    ✓ MaxGraphSQL;n=32768 (7530ms)
+    ✓ MaxGraphSQL;n=65536 (25979ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..7d14cf32ea83ad9208ac0ee391564d33905bbde9
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2022ms)
+    ✓ MaxGraphSQL;n=32 (1483ms)
+    ✓ MaxGraphSQL;n=64 (1469ms)
+    ✓ MaxGraphSQL;n=128 (1474ms)
+    ✓ MaxGraphSQL;n=256 (1483ms)
+    ✓ MaxGraphSQL;n=512 (1498ms)
+    ✓ MaxGraphSQL;n=1024 (1553ms)
+    ✓ MaxGraphSQL;n=2048 (1589ms)
+    ✓ MaxGraphSQL;n=4096 (1776ms)
+    ✓ MaxGraphSQL;n=8192 (2149ms)
+    ✓ MaxGraphSQL;n=16384 (3326ms)
+    ✓ MaxGraphSQL;n=32768 (7199ms)
+    ✓ MaxGraphSQL;n=65536 (26171ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..39e6545acbc7bf0dcbd53e0819367b6626868b55
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2167ms)
+    ✓ MaxGraphSQL;n=32 (1569ms)
+    ✓ MaxGraphSQL;n=64 (1560ms)
+    ✓ MaxGraphSQL;n=128 (1566ms)
+    ✓ MaxGraphSQL;n=256 (1584ms)
+    ✓ MaxGraphSQL;n=512 (1601ms)
+    ✓ MaxGraphSQL;n=1024 (1610ms)
+    ✓ MaxGraphSQL;n=2048 (1678ms)
+    ✓ MaxGraphSQL;n=4096 (1817ms)
+    ✓ MaxGraphSQL;n=8192 (2198ms)
+    ✓ MaxGraphSQL;n=16384 (3497ms)
+    ✓ MaxGraphSQL;n=32768 (7588ms)
+    ✓ MaxGraphSQL;n=65536 (26058ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..9b72875fcca58f91b65490bf7e24abecaf603dde
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2233ms)
+    ✓ MaxGraphSQL;n=32 (1645ms)
+    ✓ MaxGraphSQL;n=64 (1635ms)
+    ✓ MaxGraphSQL;n=128 (1642ms)
+    ✓ MaxGraphSQL;n=256 (1655ms)
+    ✓ MaxGraphSQL;n=512 (1658ms)
+    ✓ MaxGraphSQL;n=1024 (1664ms)
+    ✓ MaxGraphSQL;n=2048 (1746ms)
+    ✓ MaxGraphSQL;n=4096 (1879ms)
+    ✓ MaxGraphSQL;n=8192 (2272ms)
+    ✓ MaxGraphSQL;n=16384 (3517ms)
+    ✓ MaxGraphSQL;n=32768 (7592ms)
+    ✓ MaxGraphSQL;n=65536 (26833ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..e00cb79cfa8cf974ecc1521e665805fd8fa41df4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2182ms)
+    ✓ MaxGraphSQL;n=32 (1660ms)
+    ✓ MaxGraphSQL;n=64 (1671ms)
+    ✓ MaxGraphSQL;n=128 (1658ms)
+    ✓ MaxGraphSQL;n=256 (1668ms)
+    ✓ MaxGraphSQL;n=512 (1689ms)
+    ✓ MaxGraphSQL;n=1024 (1705ms)
+    ✓ MaxGraphSQL;n=2048 (1771ms)
+    ✓ MaxGraphSQL;n=4096 (1905ms)
+    ✓ MaxGraphSQL;n=8192 (2324ms)
+    ✓ MaxGraphSQL;n=16384 (3717ms)
+    ✓ MaxGraphSQL;n=32768 (8141ms)
+    ✓ MaxGraphSQL;n=65536 (27879ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..804a7c7b1bc845a4ea2c1cc3caa0802792718185
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2206ms)
+    ✓ MaxGraphSQL;n=32 (1621ms)
+    ✓ MaxGraphSQL;n=64 (1602ms)
+    ✓ MaxGraphSQL;n=128 (1597ms)
+    ✓ MaxGraphSQL;n=256 (1623ms)
+    ✓ MaxGraphSQL;n=512 (1617ms)
+    ✓ MaxGraphSQL;n=1024 (1633ms)
+    ✓ MaxGraphSQL;n=2048 (1705ms)
+    ✓ MaxGraphSQL;n=4096 (1848ms)
+    ✓ MaxGraphSQL;n=8192 (2227ms)
+    ✓ MaxGraphSQL;n=16384 (3542ms)
+    ✓ MaxGraphSQL;n=32768 (7636ms)
+    ✓ MaxGraphSQL;n=65536 (26948ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..b024ab454844ef871bf2c7f765b9a3e00717bb3f
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2033ms)
+    ✓ MaxGraphSQL;n=32 (1463ms)
+    ✓ MaxGraphSQL;n=64 (1453ms)
+    ✓ MaxGraphSQL;n=128 (1458ms)
+    ✓ MaxGraphSQL;n=256 (1468ms)
+    ✓ MaxGraphSQL;n=512 (1469ms)
+    ✓ MaxGraphSQL;n=1024 (1483ms)
+    ✓ MaxGraphSQL;n=2048 (1551ms)
+    ✓ MaxGraphSQL;n=4096 (1675ms)
+    ✓ MaxGraphSQL;n=8192 (2044ms)
+    ✓ MaxGraphSQL;n=16384 (3276ms)
+    ✓ MaxGraphSQL;n=32768 (7237ms)
+    ✓ MaxGraphSQL;n=65536 (25175ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..fa8f60dde6c0e208d2b910377b5d1b145189ca35
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1963ms)
+    ✓ MaxGraphSQL;n=32 (1510ms)
+    ✓ MaxGraphSQL;n=64 (1499ms)
+    ✓ MaxGraphSQL;n=128 (1503ms)
+    ✓ MaxGraphSQL;n=256 (1513ms)
+    ✓ MaxGraphSQL;n=512 (1621ms)
+    ✓ MaxGraphSQL;n=1024 (1646ms)
+    ✓ MaxGraphSQL;n=2048 (1690ms)
+    ✓ MaxGraphSQL;n=4096 (1833ms)
+    ✓ MaxGraphSQL;n=8192 (2192ms)
+    ✓ MaxGraphSQL;n=16384 (3434ms)
+    ✓ MaxGraphSQL;n=32768 (7384ms)
+    ✓ MaxGraphSQL;n=65536 (25503ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..d226e3d677647976b74dc93c1c0af4d5629fc475
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2148ms)
+    ✓ MaxGraphSQL;n=32 (1580ms)
+    ✓ MaxGraphSQL;n=64 (1574ms)
+    ✓ MaxGraphSQL;n=128 (1577ms)
+    ✓ MaxGraphSQL;n=256 (1593ms)
+    ✓ MaxGraphSQL;n=512 (1587ms)
+    ✓ MaxGraphSQL;n=1024 (1611ms)
+    ✓ MaxGraphSQL;n=2048 (1677ms)
+    ✓ MaxGraphSQL;n=4096 (1812ms)
+    ✓ MaxGraphSQL;n=8192 (2177ms)
+    ✓ MaxGraphSQL;n=16384 (3437ms)
+    ✓ MaxGraphSQL;n=32768 (7392ms)
+    ✓ MaxGraphSQL;n=65536 (25585ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..4f9f3ce90289e435b084220942cbb8e5d2f5911a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1921ms)
+    ✓ MaxGraphSQL;n=32 (1427ms)
+    ✓ MaxGraphSQL;n=64 (1420ms)
+    ✓ MaxGraphSQL;n=128 (1418ms)
+    ✓ MaxGraphSQL;n=256 (1482ms)
+    ✓ MaxGraphSQL;n=512 (1493ms)
+    ✓ MaxGraphSQL;n=1024 (1450ms)
+    ✓ MaxGraphSQL;n=2048 (1512ms)
+    ✓ MaxGraphSQL;n=4096 (1625ms)
+    ✓ MaxGraphSQL;n=8192 (1980ms)
+    ✓ MaxGraphSQL;n=16384 (3111ms)
+    ✓ MaxGraphSQL;n=32768 (6772ms)
+    ✓ MaxGraphSQL;n=65536 (23077ms)
+
+
+  13 passing (49s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..a87c7ef0c85164091ede8fad83c74166f0951da0
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2097ms)
+    ✓ MaxGraphSQL;n=32 (1515ms)
+    ✓ MaxGraphSQL;n=64 (1519ms)
+    ✓ MaxGraphSQL;n=128 (1513ms)
+    ✓ MaxGraphSQL;n=256 (1523ms)
+    ✓ MaxGraphSQL;n=512 (1574ms)
+    ✓ MaxGraphSQL;n=1024 (1589ms)
+    ✓ MaxGraphSQL;n=2048 (1656ms)
+    ✓ MaxGraphSQL;n=4096 (1781ms)
+    ✓ MaxGraphSQL;n=8192 (2149ms)
+    ✓ MaxGraphSQL;n=16384 (3404ms)
+    ✓ MaxGraphSQL;n=32768 (7372ms)
+    ✓ MaxGraphSQL;n=65536 (26225ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..0e3a4d6b6a699f25b72b68f114a2e44e6ecc4b75
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2167ms)
+    ✓ MaxGraphSQL;n=32 (1610ms)
+    ✓ MaxGraphSQL;n=64 (1598ms)
+    ✓ MaxGraphSQL;n=128 (1608ms)
+    ✓ MaxGraphSQL;n=256 (1709ms)
+    ✓ MaxGraphSQL;n=512 (1716ms)
+    ✓ MaxGraphSQL;n=1024 (1729ms)
+    ✓ MaxGraphSQL;n=2048 (1818ms)
+    ✓ MaxGraphSQL;n=4096 (1939ms)
+    ✓ MaxGraphSQL;n=8192 (2310ms)
+    ✓ MaxGraphSQL;n=16384 (3601ms)
+    ✓ MaxGraphSQL;n=32768 (7743ms)
+    ✓ MaxGraphSQL;n=65536 (26485ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..d101c7ca04f66d6333c30bb78f0b7b723aac3d3a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2317ms)
+    ✓ MaxGraphSQL;n=32 (1824ms)
+    ✓ MaxGraphSQL;n=64 (1745ms)
+    ✓ MaxGraphSQL;n=128 (1762ms)
+    ✓ MaxGraphSQL;n=256 (1766ms)
+    ✓ MaxGraphSQL;n=512 (1764ms)
+    ✓ MaxGraphSQL;n=1024 (1793ms)
+    ✓ MaxGraphSQL;n=2048 (1859ms)
+    ✓ MaxGraphSQL;n=4096 (2003ms)
+    ✓ MaxGraphSQL;n=8192 (2380ms)
+    ✓ MaxGraphSQL;n=16384 (3690ms)
+    ✓ MaxGraphSQL;n=32768 (7929ms)
+    ✓ MaxGraphSQL;n=65536 (27001ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..bb07438cc89ea6258dbb51023280edd847567364
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2127ms)
+    ✓ MaxGraphSQL;n=32 (1609ms)
+    ✓ MaxGraphSQL;n=64 (1597ms)
+    ✓ MaxGraphSQL;n=128 (1617ms)
+    ✓ MaxGraphSQL;n=256 (1624ms)
+    ✓ MaxGraphSQL;n=512 (1628ms)
+    ✓ MaxGraphSQL;n=1024 (1640ms)
+    ✓ MaxGraphSQL;n=2048 (1708ms)
+    ✓ MaxGraphSQL;n=4096 (1839ms)
+    ✓ MaxGraphSQL;n=8192 (2199ms)
+    ✓ MaxGraphSQL;n=16384 (3403ms)
+    ✓ MaxGraphSQL;n=32768 (7223ms)
+    ✓ MaxGraphSQL;n=65536 (25059ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..9a916ba8d01bb48b5b1c8522021ce5f9dc3e5110
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2232ms)
+    ✓ MaxGraphSQL;n=32 (1644ms)
+    ✓ MaxGraphSQL;n=64 (1631ms)
+    ✓ MaxGraphSQL;n=128 (1634ms)
+    ✓ MaxGraphSQL;n=256 (1677ms)
+    ✓ MaxGraphSQL;n=512 (1641ms)
+    ✓ MaxGraphSQL;n=1024 (1698ms)
+    ✓ MaxGraphSQL;n=2048 (1732ms)
+    ✓ MaxGraphSQL;n=4096 (1843ms)
+    ✓ MaxGraphSQL;n=8192 (2207ms)
+    ✓ MaxGraphSQL;n=16384 (3466ms)
+    ✓ MaxGraphSQL;n=32768 (7135ms)
+    ✓ MaxGraphSQL;n=65536 (24397ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..eeed719b39c24e13b827c3d988ec2f50edbba295
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2139ms)
+    ✓ MaxGraphSQL;n=32 (1556ms)
+    ✓ MaxGraphSQL;n=64 (1553ms)
+    ✓ MaxGraphSQL;n=128 (1557ms)
+    ✓ MaxGraphSQL;n=256 (1562ms)
+    ✓ MaxGraphSQL;n=512 (1564ms)
+    ✓ MaxGraphSQL;n=1024 (1588ms)
+    ✓ MaxGraphSQL;n=2048 (1652ms)
+    ✓ MaxGraphSQL;n=4096 (1776ms)
+    ✓ MaxGraphSQL;n=8192 (2149ms)
+    ✓ MaxGraphSQL;n=16384 (3410ms)
+    ✓ MaxGraphSQL;n=32768 (7443ms)
+    ✓ MaxGraphSQL;n=65536 (26516ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..f6bcc46a53410f650b8575da508de4a0f4766bd3
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2246ms)
+    ✓ MaxGraphSQL;n=32 (1661ms)
+    ✓ MaxGraphSQL;n=64 (1650ms)
+    ✓ MaxGraphSQL;n=128 (1650ms)
+    ✓ MaxGraphSQL;n=256 (1610ms)
+    ✓ MaxGraphSQL;n=512 (1600ms)
+    ✓ MaxGraphSQL;n=1024 (1627ms)
+    ✓ MaxGraphSQL;n=2048 (1696ms)
+    ✓ MaxGraphSQL;n=4096 (1821ms)
+    ✓ MaxGraphSQL;n=8192 (2171ms)
+    ✓ MaxGraphSQL;n=16384 (3377ms)
+    ✓ MaxGraphSQL;n=32768 (7348ms)
+    ✓ MaxGraphSQL;n=65536 (26075ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..82ca4f02930e50966974e669432050dcc9c0af3e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1435
+Mediana        = 1430.5
+Variancia      = 4773.47
+Desvio Padrao  = 69.09
+Coef. Variacao = 0.05
+Min            = 1285
+Max            = 1590
+Esq, Dir.      = 1409.5885 , 1460.4115
diff --git a/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..63b6dbdfaccdfee23814279439cf2865283297ea
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+2048 1463
+2048 1415
+2048 1590
+2048 1451
+2048 1521
+2048 1421
+2048 1398
+2048 1494
+2048 1420
+2048 1461
+2048 1319
+2048 1285
+2048 1369
+2048 1413
+2048 1480
+2048 1440
+2048 1515
+2048 1444
+2048 1410
+2048 1391
diff --git a/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..13e89db01a8d8f95ff6b6183a24f1fe92c6822af
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1043.9
+Mediana        = 1031
+Variancia      = 2556.94
+Desvio Padrao  = 50.57
+Coef. Variacao = 0.05
+Min            = 962
+Max            = 1147
+Esq, Dir.      = 1025.3017 , 1062.4983
diff --git a/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..663c3b306165c308b2613d9c8c677a7d9ea88836
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+2048 1137
+2048 1097
+2048 1018
+2048 989
+2048 1101
+2048 1020
+2048 1057
+2048 1029
+2048 962
+2048 993
+2048 1005
+2048 1147
+2048 1069
+2048 989
+2048 1033
+2048 1056
+2048 1095
+2048 1028
+2048 1013
+2048 1040
diff --git a/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9321848c207a3817732d260252db59cb73c79f65
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1715.25
+Mediana        = 1702
+Variancia      = 10999.25
+Desvio Padrao  = 104.88
+Coef. Variacao = 0.06
+Min            = 1557
+Max            = 1923
+Esq, Dir.      = 1676.6761 , 1753.8239
diff --git a/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7428cc689c65e964ccbb8933c65e8ea9ea451a65
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+2048 1820
+2048 1795
+2048 1616
+2048 1698
+2048 1755
+2048 1742
+2048 1916
+2048 1706
+2048 1843
+2048 1764
+2048 1659
+2048 1727
+2048 1604
+2048 1557
+2048 1624
+2048 1583
+2048 1923
+2048 1673
+2048 1658
+2048 1642
diff --git a/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4462a83d1f9cfdb056b8d0e386bb028abddcbcd6
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 461.4
+Mediana        = 453
+Variancia      = 1554.04
+Desvio Padrao  = 39.42
+Coef. Variacao = 0.09
+Min            = 418
+Max            = 593
+Esq, Dir.      = 446.9008 , 475.8992
diff --git a/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..50fd07d3ad23456a64c8ae087675eebb865ea015
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+256 496
+256 441
+256 593
+256 454
+256 437
+256 454
+256 431
+256 438
+256 452
+256 491
+256 423
+256 446
+256 438
+256 463
+256 486
+256 499
+256 457
+256 480
+256 431
+256 418
diff --git a/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6a6a76538377a21eca629b4de5b078a7f8e3f159
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 826.95
+Mediana        = 822
+Variancia      = 2528.89
+Desvio Padrao  = 50.29
+Coef. Variacao = 0.06
+Min            = 748
+Max            = 926
+Esq, Dir.      = 808.454 , 845.446
diff --git a/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a90d1b04e67a46aa3d421b0c296dfcdad4c7fb10
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+256 926
+256 776
+256 853
+256 767
+256 885
+256 801
+256 853
+256 785
+256 748
+256 811
+256 771
+256 916
+256 854
+256 795
+256 818
+256 846
+256 889
+256 828
+256 791
+256 826
diff --git a/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a581dfdf286a079edb4d5ce720313ce5ffd1cb85
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1608.95
+Mediana        = 1594
+Variancia      = 7917.42
+Desvio Padrao  = 88.98
+Coef. Variacao = 0.06
+Min            = 1479
+Max            = 1825
+Esq, Dir.      = 1576.2232 , 1641.6768
diff --git a/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..40575dc358db1371da6cb516a0bd038b892a1ec2
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+256 1606
+256 1699
+256 1546
+256 1583
+256 1604
+256 1633
+256 1715
+256 1555
+256 1736
+256 1681
+256 1645
+256 1639
+256 1523
+256 1479
+256 1519
+256 1489
+256 1825
+256 1584
+256 1572
+256 1546
diff --git a/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cc70b63462796d202dc22105dae97bc4c2489f50
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 441.35
+Mediana        = 439
+Variancia      = 637.71
+Desvio Padrao  = 25.25
+Coef. Variacao = 0.06
+Min            = 395
+Max            = 508
+Esq, Dir.      = 432.0619 , 450.6381
diff --git a/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6922844c3c379bf74167833884d2189e73326eeb
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32 508
+32 433
+32 447
+32 439
+32 424
+32 454
+32 421
+32 445
+32 442
+32 446
+32 424
+32 395
+32 434
+32 499
+32 432
+32 437
+32 450
+32 439
+32 442
+32 416
diff --git a/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..339bece9afcf680e66ecaec65afaceccf4ad023c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 818.75
+Mediana        = 809.5
+Variancia      = 2605.14
+Desvio Padrao  = 51.04
+Coef. Variacao = 0.06
+Min            = 745
+Max            = 907
+Esq, Dir.      = 799.9772 , 837.5228
diff --git a/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9305119096f6cc9e963ba83f15c54fefdfa44748
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32 907
+32 770
+32 868
+32 770
+32 871
+32 798
+32 842
+32 776
+32 745
+32 800
+32 769
+32 903
+32 854
+32 780
+32 819
+32 837
+32 896
+32 822
+32 757
+32 791
diff --git a/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..dd460432713b1348c86e583bd26cb3a49400d1bc
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1594.35
+Mediana        = 1569.5
+Variancia      = 7329.5
+Desvio Padrao  = 85.61
+Coef. Variacao = 0.05
+Min            = 1465
+Max            = 1818
+Esq, Dir.      = 1562.8617 , 1625.8383
diff --git a/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c034e9f516ad4830b86fab927c1a3a4d2a8c9fbc
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32 1601
+32 1689
+32 1546
+32 1541
+32 1595
+32 1624
+32 1725
+32 1558
+32 1659
+32 1670
+32 1465
+32 1635
+32 1515
+32 1530
+32 1520
+32 1501
+32 1818
+32 1577
+32 1562
+32 1556
diff --git a/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..056497cf1a6a178554e14cad66a002c5bd0dc24c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 237059.3
+Mediana        = 236902.5
+Variancia      = 155986551.38
+Desvio Padrao  = 12489.46
+Coef. Variacao = 0.05
+Min            = 216374
+Max            = 263475
+Esq, Dir.      = 232465.6718 , 241652.9282
diff --git a/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9484487b15777cd9a1433536a6cd61267c3322b2
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32768 226145
+32768 237245
+32768 240861
+32768 236217
+32768 247338
+32768 233810
+32768 244875
+32768 263475
+32768 223459
+32768 233982
+32768 240310
+32768 236560
+32768 216730
+32768 216374
+32768 247255
+32768 220130
+32768 255669
+32768 240300
+32768 231844
+32768 248607
diff --git a/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f4e1552838fc026e7a1186cfef0dd8834e2f3fab
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 29053.75
+Mediana        = 28903.5
+Variancia      = 3491352.51
+Desvio Padrao  = 1868.52
+Coef. Variacao = 0.06
+Min            = 26384
+Max            = 32624
+Esq, Dir.      = 28366.5089 , 29740.9911
diff --git a/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..fe3c821303b1c70835d482025ab33cdc38964f62
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32768 28610
+32768 32624
+32768 27211
+32768 27924
+32768 32491
+32768 28185
+32768 31475
+32768 29197
+32768 26946
+32768 26384
+32768 27009
+32768 29988
+32768 30591
+32768 27849
+32768 29522
+32768 29526
+32768 29831
+32768 27601
+32768 27229
+32768 30882
diff --git a/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..eb2fb04c4cfd2c2064b5080c6db1b029687bed55
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 7400.55
+Mediana        = 7339
+Variancia      = 89741.63
+Desvio Padrao  = 299.57
+Coef. Variacao = 0.04
+Min            = 6934
+Max            = 8211
+Esq, Dir.      = 7290.3684 , 7510.7316
diff --git a/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0196b211de9f763bc0b5206f79891bdcb8ccbaaa
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+32768 7242
+32768 7648
+32768 7192
+32768 7443
+32768 7660
+32768 8211
+32768 7929
+32768 7566
+32768 7350
+32768 7143
+32768 7437
+32768 7305
+32768 7324
+32768 6934
+32768 7187
+32768 7025
+32768 7399
+32768 7200
+32768 7488
+32768 7328
diff --git a/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7f078950bf6cc6496a7205c61759fd09d7bf829a
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 3857.65
+Mediana        = 3834
+Variancia      = 24857.71
+Desvio Padrao  = 157.66
+Coef. Variacao = 0.04
+Min            = 3510
+Max            = 4143
+Esq, Dir.      = 3799.6614 , 3915.6386
diff --git a/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9f14bcc48b86c97114a01bb64388173405243b64
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+4096 3925
+4096 3828
+4096 4060
+4096 4027
+4096 4052
+4096 3829
+4096 3818
+4096 4034
+4096 3849
+4096 3839
+4096 3598
+4096 3510
+4096 3692
+4096 3774
+4096 3946
+4096 3766
+4096 4143
+4096 3810
+4096 3849
+4096 3804
diff --git a/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..732cd1e7b5c9aaa0ee8f77fee95e2d0635ff8cda
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1484.55
+Mediana        = 1469.5
+Variancia      = 4247.94
+Desvio Padrao  = 65.18
+Coef. Variacao = 0.04
+Min            = 1364
+Max            = 1580
+Esq, Dir.      = 1460.5781 , 1508.5219
diff --git a/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..feafdd2d6f7d1eaeb800062a62734ab78693036e
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+4096 1559
+4096 1578
+4096 1456
+4096 1412
+4096 1572
+4096 1466
+4096 1517
+4096 1473
+4096 1364
+4096 1406
+4096 1413
+4096 1580
+4096 1539
+4096 1423
+4096 1454
+4096 1487
+4096 1557
+4096 1461
+4096 1450
+4096 1524
diff --git a/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..776d6eb06fca363931a27b40e683f74bce4a71c4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1841.45
+Mediana        = 1823.5
+Variancia      = 10572.68
+Desvio Padrao  = 102.82
+Coef. Variacao = 0.06
+Min            = 1681
+Max            = 2050
+Esq, Dir.      = 1803.6315 , 1879.2685
diff --git a/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..86d07ec25aae35a16b94b55c2c665e145860175c
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+4096 1881
+4096 1910
+4096 1754
+4096 1814
+4096 1881
+4096 1920
+4096 2043
+4096 1833
+4096 1970
+4096 1885
+4096 1804
+4096 1852
+4096 1743
+4096 1681
+4096 1777
+4096 1691
+4096 2050
+4096 1778
+4096 1801
+4096 1761
diff --git a/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6f682610229781a5c65f74f218c234fe54b8ba22
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 511.6
+Mediana        = 505
+Variancia      = 1843.83
+Desvio Padrao  = 42.94
+Coef. Variacao = 0.08
+Min            = 451
+Max            = 649
+Esq, Dir.      = 495.8067 , 527.3933
diff --git a/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9d4ce6dd9d7a5504e6f3c97d6f3c9f9306e12a06
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+512 547
+512 491
+512 649
+512 508
+512 487
+512 514
+512 480
+512 489
+512 502
+512 541
+512 470
+512 451
+512 495
+512 523
+512 536
+512 554
+512 520
+512 527
+512 479
+512 469
diff --git a/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8517c9bab2df2d7ccb3e2f8fdc43f946dc82fd78
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 848.7
+Mediana        = 846.5
+Variancia      = 2373.59
+Desvio Padrao  = 48.72
+Coef. Variacao = 0.06
+Min            = 766
+Max            = 934
+Esq, Dir.      = 830.7809 , 866.6191
diff --git a/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d996ae703a9a973273fc43be2e08f8ce411a7eff
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+512 934
+512 795
+512 833
+512 783
+512 903
+512 817
+512 867
+512 849
+512 766
+512 840
+512 783
+512 889
+512 879
+512 804
+512 838
+512 868
+512 899
+512 844
+512 934
+512 849
diff --git a/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..98130b2fdd3e847543dd04a78ba14852116c45cd
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1626.65
+Mediana        = 1614.5
+Variancia      = 9227.92
+Desvio Padrao  = 96.06
+Coef. Variacao = 0.06
+Min            = 1490
+Max            = 1832
+Esq, Dir.      = 1591.3183 , 1661.9817
diff --git a/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..047155dadd308f0778cf67f7baa4cd683cd2e4e9
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+512 1620
+512 1699
+512 1542
+512 1609
+512 1674
+512 1641
+512 1816
+512 1562
+512 1759
+512 1680
+512 1630
+512 1647
+512 1532
+512 1490
+512 1593
+512 1490
+512 1832
+512 1588
+512 1580
+512 1549
diff --git a/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..38161021b5b2fbffd220fd662ff624aa5f109561
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 425.7
+Mediana        = 419.5
+Variancia      = 610.43
+Desvio Padrao  = 24.71
+Coef. Variacao = 0.06
+Min            = 392
+Max            = 494
+Esq, Dir.      = 416.6128 , 434.7872
diff --git a/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a1463db9b92f0ab2cda845e1ac0fbcdb9ce76ec8
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+64 477
+64 415
+64 446
+64 429
+64 420
+64 423
+64 409
+64 417
+64 443
+64 418
+64 401
+64 392
+64 427
+64 494
+64 419
+64 430
+64 433
+64 407
+64 400
+64 414
diff --git a/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4912be522d8f1ff29d330061896e6a3bec0f517f
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 810.4
+Mediana        = 804
+Variancia      = 2351.52
+Desvio Padrao  = 48.49
+Coef. Variacao = 0.06
+Min            = 741
+Max            = 896
+Esq, Dir.      = 792.5645 , 828.2355
diff --git a/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..09e876151841376cf1dc9f1dbb85ddc43978ffb3
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+64 896
+64 757
+64 856
+64 761
+64 857
+64 790
+64 840
+64 763
+64 741
+64 791
+64 758
+64 893
+64 845
+64 773
+64 807
+64 827
+64 875
+64 815
+64 762
+64 801
diff --git a/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..11d9d401e09d86eb71139765fbfce51dc577a090
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1585.85
+Mediana        = 1568.5
+Variancia      = 7494.03
+Desvio Padrao  = 86.57
+Coef. Variacao = 0.05
+Min            = 1452
+Max            = 1815
+Esq, Dir.      = 1554.0102 , 1617.6898
diff --git a/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e06a2bbb5efb0b99295f1d26d2ed92dfb5fc49ba
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+64 1597
+64 1671
+64 1529
+64 1576
+64 1585
+64 1621
+64 1702
+64 1545
+64 1660
+64 1662
+64 1452
+64 1622
+64 1539
+64 1481
+64 1522
+64 1479
+64 1815
+64 1560
+64 1561
+64 1538
diff --git a/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d7efa01e3d3082147386baec3f96249b826e084b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1079043.2
+Mediana        = 1090197
+Variancia      = 2664015443.43
+Desvio Padrao  = 51614.1
+Coef. Variacao = 0.05
+Min            = 960288
+Max            = 1165783
+Esq, Dir.      = 1060059.5102 , 1098026.8898
diff --git a/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..badba01e4cbd8bfb960552973bb9e710807356a2
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+65536 1071770
+65536 1051007
+65536 1052638
+65536 1100360
+65536 1091436
+65536 1091070
+65536 1119651
+65536 1109543
+65536 1103841
+65536 1031495
+65536 1111129
+65536 982053
+65536 1046429
+65536 1035282
+65536 1165783
+65536 960288
+65536 1144491
+65536 1089324
+65536 1085978
+65536 1137296
diff --git a/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..98832721d4948230bac6fa06253f571b810163a6
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 122099.1
+Mediana        = 120826
+Variancia      = 93917082.41
+Desvio Padrao  = 9691.08
+Coef. Variacao = 0.08
+Min            = 108497
+Max            = 138534
+Esq, Dir.      = 118534.7154 , 125663.4846
diff --git a/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6ac29f364358f18b3b3e5920233aecff8150267d
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+65536 117168
+65536 138534
+65536 111041
+65536 117124
+65536 134850
+65536 113470
+65536 132488
+65536 128766
+65536 108497
+65536 115450
+65536 113523
+65536 128313
+65536 132945
+65536 110086
+65536 127696
+65536 124484
+65536 129914
+65536 110435
+65536 116130
+65536 131068
diff --git a/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e9b6c072f5610ba48ce4c6883488c7918b019f22
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 25596.45
+Mediana        = 25555.5
+Variancia      = 1550717.73
+Desvio Padrao  = 1245.28
+Coef. Variacao = 0.05
+Min            = 23278
+Max            = 28335
+Esq, Dir.      = 25138.4361 , 26054.4639
diff --git a/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f2352e804a30ac851812f8ac3ec2b7bbf10612a4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+65536 26248
+65536 26562
+65536 24384
+65536 26233
+65536 26677
+65536 28335
+65536 26906
+65536 27310
+65536 25374
+65536 24764
+65536 25828
+65536 24555
+65536 25737
+65536 23278
+65536 24359
+65536 24179
+65536 24880
+65536 25055
+65536 26435
+65536 24830
diff --git a/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..602745f04f6c974f9b7cd76b917304a93ea576e4
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 13772.9
+Mediana        = 13744.5
+Variancia      = 330900.31
+Desvio Padrao  = 575.24
+Coef. Variacao = 0.04
+Min            = 12527
+Max            = 14894
+Esq, Dir.      = 13561.3267 , 13984.4733
diff --git a/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..91f60d6a0edcd1406c315631cdf1374057717f03
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+8192 13977
+8192 13602
+8192 14423
+8192 14007
+8192 14376
+8192 14083
+8192 13529
+8192 14656
+8192 13670
+8192 13833
+8192 12874
+8192 12527
+8192 13095
+8192 13390
+8192 14006
+8192 13441
+8192 14894
+8192 13722
+8192 13767
+8192 13586
diff --git a/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a5444148963556e7cd95515675ee5b6ada24580b
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2900.1
+Mediana        = 2898
+Variancia      = 13021.04
+Desvio Padrao  = 114.11
+Coef. Variacao = 0.04
+Min            = 2721
+Max            = 3107
+Esq, Dir.      = 2858.1304 , 2942.0696
diff --git a/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a3e5c41291e95cf2d1d217f823cd8994fc460042
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+8192 2934
+8192 3089
+8192 2826
+8192 2770
+8192 3107
+8192 2912
+8192 2936
+8192 2873
+8192 2739
+8192 2721
+8192 2758
+8192 3033
+8192 2998
+8192 2825
+8192 2880
+8192 2920
+8192 3003
+8192 2884
+8192 2796
+8192 2998
diff --git a/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..754aed7a0b274fe233668a20df895d6706b41160
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2209
+Mediana        = 2189
+Variancia      = 11266
+Desvio Padrao  = 106.14
+Coef. Variacao = 0.05
+Min            = 2030
+Max            = 2430
+Esq, Dir.      = 2169.9611 , 2248.0389
diff --git a/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0bcdafffd2bc9456c0f97767772330f12435fb17
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res
@@ -0,0 +1,20 @@
+8192 2259
+8192 2303
+8192 2146
+8192 2198
+8192 2268
+8192 2306
+8192 2430
+8192 2155
+8192 2340
+8192 2250
+8192 2167
+8192 2210
+8192 2116
+8192 2030
+8192 2099
+8192 2055
+8192 2376
+8192 2156
+8192 2180
+8192 2136
diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear2.res b/experiments/develop_processed_dimentions_required/mean_by_linear2.res
new file mode 100644
index 0000000000000000000000000000000000000000..17fcab55afdc7cf354ab937c92396c1542ea9529
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/mean_by_linear2.res
@@ -0,0 +1,13 @@
+16 701.55
+32 441.35
+64 425.7
+128 443.75
+256 461.4
+512 511.6
+1024 696.9
+2048 1435
+4096 3857.65
+8192 13772.9
+16384 56748.15
+32768 237059.3
+65536 1079043.2
diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear4.res b/experiments/develop_processed_dimentions_required/mean_by_linear4.res
new file mode 100644
index 0000000000000000000000000000000000000000..cd0cc7e925c9b3f5bb1814c29ab711fefc796c76
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/mean_by_linear4.res
@@ -0,0 +1,13 @@
+16 1195.05
+32 818.75
+64 810.4
+128 815.95
+256 826.95
+512 848.7
+1024 909.7
+2048 1043.9
+4096 1484.55
+8192 2900.1
+16384 7896.85
+32768 29053.75
+65536 122099.1
diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear8.res b/experiments/develop_processed_dimentions_required/mean_by_linear8.res
new file mode 100644
index 0000000000000000000000000000000000000000..d89ecf4b225c63c8b7635df48aa2cf123bd16bb7
--- /dev/null
+++ b/experiments/develop_processed_dimentions_required/mean_by_linear8.res
@@ -0,0 +1,13 @@
+16 2122
+32 1594.35
+64 1585.85
+128 1589.75
+256 1608.95
+512 1626.65
+1024 1650.85
+2048 1715.25
+4096 1841.45
+8192 2209
+16384 3444.8
+32768 7400.55
+65536 25596.45
diff --git a/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0d43e958696a2d39b2ebad98f76a4ac230edbf76
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1681.08
+Mediana        = 1625
+Variancia      = 51548.21
+Desvio Padrao  = 227.04
+Coef. Variacao = 0.14
+Min            = 1480
+Max            = 2944
+Esq, Dir.      = 1646.992 , 1715.1746
diff --git a/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0a2c8f819aa3b15a6dd606705903535e5e83d831
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+1024 1651
+1024 1789
+1024 1631
+1024 1672
+1024 1676
+1024 1562
+1024 1666
+1024 1543
+1024 1627
+1024 1654
+1024 1506
+1024 1683
+1024 1606
+1024 1594
+1024 2372
+1024 1534
+1024 1723
+1024 1579
+1024 1548
+1024 1678
+1024 1480
+1024 1572
+1024 1561
+1024 1561
+1024 1690
+1024 1709
+1024 1631
+1024 1551
+1024 1587
+1024 1707
+1024 1560
+1024 1609
+1024 2194
+1024 1550
+1024 1608
+1024 1574
+1024 1643
+1024 1565
+1024 1614
+1024 1623
+1024 1715
+1024 1594
+1024 1782
+1024 1657
+1024 1677
+1024 1637
+1024 1519
+1024 1636
+1024 1551
+1024 1559
+1024 1670
+1024 1636
+1024 1672
+1024 1607
+1024 1735
+1024 1751
+1024 1681
+1024 1530
+1024 1623
+1024 2579
+1024 1666
+1024 1679
+1024 1711
+1024 2446
+1024 1693
+1024 1659
+1024 1630
+1024 1630
+1024 1755
+1024 1617
+1024 1753
+1024 1629
+1024 1599
+1024 1749
+1024 1522
+1024 1762
+1024 1550
+1024 1901
+1024 1951
+1024 1546
+1024 1621
+1024 1617
+1024 1655
+1024 2604
+1024 2155
+1024 1561
+1024 1612
+1024 1628
+1024 1795
+1024 1766
+1024 1566
+1024 1508
+1024 1712
+1024 1566
+1024 2174
+1024 1547
+1024 1565
+1024 1611
+1024 1486
+1024 1509
+1024 1649
+1024 1564
+1024 1546
+1024 1598
+1024 1636
+1024 1593
+1024 1605
+1024 2944
+1024 1595
+1024 1496
+1024 1645
+1024 1495
+1024 1603
+1024 1529
+1024 1621
+1024 1589
+1024 1714
+1024 1722
+1024 1609
+1024 1577
diff --git a/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5ba323eb78cdacf5d840af70823c1d1720b319d8
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1741.08
+Mediana        = 1677.5
+Variancia      = 70378.81
+Desvio Padrao  = 265.29
+Coef. Variacao = 0.15
+Min            = 1463
+Max            = 3386
+Esq, Dir.      = 1701.2407 , 1780.9093
diff --git a/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..26ce205b796eda6b84c7a60a380e64ee373813b7
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+128 1598
+128 1773
+128 1815
+128 1906
+128 1811
+128 1706
+128 1624
+128 1470
+128 1592
+128 1624
+128 1512
+128 1506
+128 1573
+128 1552
+128 1526
+128 1779
+128 1678
+128 1550
+128 1528
+128 1646
+128 1553
+128 1863
+128 1534
+128 1668
+128 1977
+128 1675
+128 2062
+128 1707
+128 1561
+128 2009
+128 1541
+128 1906
+128 1593
+128 1791
+128 3031
+128 1534
+128 1843
+128 1801
+128 1574
+128 2270
+128 1625
+128 1540
+128 1870
+128 1812
+128 1907
+128 1587
+128 1484
+128 1603
+128 1511
+128 1917
+128 1795
+128 2013
+128 1945
+128 1603
+128 2287
+128 1629
+128 2005
+128 1471
+128 1777
+128 1674
+128 1576
+128 1642
+128 1585
+128 1561
+128 2051
+128 1611
+128 1764
+128 3386
+128 1851
+128 1749
+128 1720
+128 1539
+128 1923
+128 2020
+128 1706
+128 2108
+128 1863
+128 1535
+128 1560
+128 1504
+128 1590
+128 1743
+128 1817
+128 1579
+128 1611
+128 1780
+128 1920
+128 1510
+128 1674
+128 2129
+128 1519
+128 1484
+128 1518
+128 1544
+128 1516
+128 1763
+128 1606
+128 1579
+128 1817
+128 1670
+128 1687
+128 1785
+128 1769
+128 1677
+128 1936
+128 2070
+128 1573
+128 1679
+128 1584
+128 1703
+128 1949
+128 1805
+128 1667
+128 1751
+128 2078
+128 1463
+128 1684
+128 1862
+128 1721
+128 1546
diff --git a/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cead80d700176d84ca00642bdac7436385e01d15
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2143.94
+Mediana        = 2134.5
+Variancia      = 7607.69
+Desvio Padrao  = 87.22
+Coef. Variacao = 0.04
+Min            = 1901
+Max            = 2371
+Esq, Dir.      = 2130.8449 , 2157.0384
diff --git a/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..db73e70fff000eb1c6b3666a501ad62c887ebb64
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+16 2110
+16 2092
+16 2062
+16 2265
+16 2132
+16 2162
+16 2023
+16 2057
+16 2100
+16 1901
+16 2077
+16 2078
+16 2112
+16 2125
+16 2090
+16 2095
+16 2287
+16 2131
+16 2076
+16 2112
+16 1997
+16 2151
+16 2030
+16 2269
+16 2285
+16 2252
+16 2219
+16 2145
+16 2174
+16 2165
+16 2055
+16 2196
+16 2148
+16 2155
+16 2065
+16 2049
+16 2141
+16 2159
+16 2085
+16 2149
+16 2141
+16 2074
+16 2313
+16 2342
+16 2309
+16 2187
+16 2003
+16 2135
+16 2063
+16 2119
+16 2371
+16 2306
+16 2287
+16 2173
+16 2103
+16 2247
+16 2244
+16 2018
+16 2149
+16 2142
+16 2133
+16 2159
+16 2088
+16 2134
+16 2222
+16 2089
+16 2084
+16 2156
+16 2176
+16 2215
+16 2264
+16 2071
+16 2218
+16 2174
+16 2115
+16 2271
+16 2208
+16 2095
+16 2081
+16 2017
+16 2159
+16 2232
+16 2206
+16 2122
+16 2161
+16 2164
+16 2157
+16 2018
+16 2219
+16 2132
+16 2059
+16 2114
+16 2004
+16 2100
+16 2068
+16 2116
+16 2309
+16 2106
+16 2089
+16 2058
+16 2344
+16 2030
+16 2186
+16 2188
+16 2293
+16 2147
+16 2128
+16 2199
+16 2119
+16 2009
+16 2171
+16 2083
+16 2151
+16 2101
+16 2222
+16 1948
+16 2215
+16 2239
+16 2129
+16 2106
diff --git a/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1f2a7a1b5238effb251f6f5b3840206d213ece90
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 3676.32
+Mediana        = 3641
+Variancia      = 146128.08
+Desvio Padrao  = 382.27
+Coef. Variacao = 0.1
+Min            = 3199
+Max            = 7400
+Esq, Dir.      = 3618.9178 , 3733.7156
diff --git a/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e8f47efff232e80b08f73a2c5806967444210827
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+16384 3677
+16384 4002
+16384 3293
+16384 3768
+16384 3676
+16384 3595
+16384 3734
+16384 3380
+16384 3608
+16384 3820
+16384 3751
+16384 3771
+16384 3526
+16384 3642
+16384 3586
+16384 3553
+16384 3939
+16384 3638
+16384 3556
+16384 3537
+16384 3296
+16384 3479
+16384 3536
+16384 3250
+16384 3797
+16384 3751
+16384 3691
+16384 3551
+16384 3791
+16384 3764
+16384 3819
+16384 3581
+16384 3639
+16384 3545
+16384 3459
+16384 3456
+16384 3484
+16384 3715
+16384 3685
+16384 3532
+16384 3672
+16384 3367
+16384 4029
+16384 3832
+16384 3700
+16384 3626
+16384 3378
+16384 3587
+16384 3410
+16384 3578
+16384 3756
+16384 3691
+16384 3948
+16384 3472
+16384 3791
+16384 3998
+16384 3894
+16384 3199
+16384 3670
+16384 3585
+16384 3592
+16384 3867
+16384 3620
+16384 3668
+16384 3630
+16384 3803
+16384 3464
+16384 3625
+16384 7400
+16384 3708
+16384 3754
+16384 3853
+16384 3735
+16384 3856
+16384 3503
+16384 3574
+16384 3756
+16384 3554
+16384 3514
+16384 3341
+16384 3664
+16384 3817
+16384 3744
+16384 3594
+16384 3646
+16384 3696
+16384 3625
+16384 3708
+16384 4022
+16384 3867
+16384 3526
+16384 3649
+16384 3896
+16384 3600
+16384 3654
+16384 3560
+16384 3763
+16384 3468
+16384 3485
+16384 3562
+16384 3794
+16384 3577
+16384 3640
+16384 3710
+16384 3832
+16384 3414
+16384 3637
+16384 3962
+16384 3675
+16384 3207
+16384 3535
+16384 3469
+16384 3669
+16384 3764
+16384 3529
+16384 3557
+16384 3896
+16384 3586
+16384 3746
+16384 3540
diff --git a/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b8b812f47d6d792d22cf7ce602b064a1e8b61b27
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1862.39
+Mediana        = 1699
+Variancia      = 273172.11
+Desvio Padrao  = 522.66
+Coef. Variacao = 0.28
+Min            = 1539
+Max            = 3959
+Esq, Dir.      = 1783.9124 , 1940.8709
diff --git a/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..504be9ba046a9c76dfed74f81961c1f07883fd14
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+2048 1699
+2048 1885
+2048 1700
+2048 1743
+2048 1747
+2048 1627
+2048 1721
+2048 1612
+2048 1703
+2048 1739
+2048 1578
+2048 2375
+2048 1668
+2048 1659
+2048 3630
+2048 1600
+2048 1841
+2048 1658
+2048 1641
+2048 1741
+2048 1539
+2048 1644
+2048 1634
+2048 1623
+2048 1760
+2048 1777
+2048 1699
+2048 1619
+2048 1663
+2048 1805
+2048 1628
+2048 1690
+2048 3238
+2048 1623
+2048 1670
+2048 1618
+2048 1700
+2048 1634
+2048 1703
+2048 1687
+2048 1778
+2048 1671
+2048 1868
+2048 1735
+2048 1757
+2048 1713
+2048 1599
+2048 1719
+2048 1595
+2048 1603
+2048 1734
+2048 1763
+2048 1867
+2048 1681
+2048 1790
+2048 1853
+2048 1746
+2048 1584
+2048 1685
+2048 3432
+2048 1684
+2048 1774
+2048 2636
+2048 3817
+2048 1705
+2048 1737
+2048 1680
+2048 1746
+2048 1833
+2048 1685
+2048 1828
+2048 1710
+2048 1673
+2048 1812
+2048 1598
+2048 1829
+2048 1635
+2048 3124
+2048 3192
+2048 1612
+2048 1704
+2048 1685
+2048 1652
+2048 3591
+2048 3915
+2048 1646
+2048 1677
+2048 1715
+2048 1893
+2048 1779
+2048 1719
+2048 1597
+2048 1794
+2048 1644
+2048 3959
+2048 1611
+2048 1635
+2048 1687
+2048 1559
+2048 1569
+2048 1732
+2048 1638
+2048 1632
+2048 1684
+2048 1723
+2048 1638
+2048 1683
+2048 3138
+2048 1677
+2048 1554
+2048 1732
+2048 1562
+2048 2147
+2048 1599
+2048 1692
+2048 1655
+2048 1807
+2048 1805
+2048 1698
+2048 1656
diff --git a/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..500efa3256f64552db50a670f6bd452e26e5bbc4
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1610.47
+Mediana        = 1595.5
+Variancia      = 5512.82
+Desvio Padrao  = 74.25
+Coef. Variacao = 0.05
+Min            = 1484
+Max            = 1867
+Esq, Dir.      = 1599.318 , 1621.6154
diff --git a/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..62140a93aa41c8e24030c75d541d402549c78a5f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+256 1642
+256 1633
+256 1579
+256 1649
+256 1647
+256 1566
+256 1622
+256 1517
+256 1603
+256 1627
+256 1525
+256 1537
+256 1578
+256 1567
+256 1555
+256 1520
+256 1688
+256 1555
+256 1555
+256 1621
+256 1484
+256 1579
+256 1558
+256 1545
+256 1685
+256 1707
+256 1603
+256 1592
+256 1567
+256 1684
+256 1579
+256 1577
+256 1743
+256 1542
+256 1595
+256 1531
+256 1574
+256 1560
+256 1593
+256 1628
+256 1685
+256 1612
+256 1749
+256 1630
+256 1663
+256 1620
+256 1491
+256 1610
+256 1517
+256 1530
+256 1641
+256 1687
+256 1674
+256 1595
+256 1711
+256 1646
+256 1743
+256 1489
+256 1612
+256 1596
+256 1590
+256 1661
+256 1685
+256 1650
+256 1686
+256 1631
+256 1503
+256 1665
+256 1749
+256 1597
+256 1725
+256 1576
+256 1584
+256 1729
+256 1509
+256 1711
+256 1556
+256 1732
+256 1568
+256 1518
+256 1598
+256 1594
+256 1642
+256 1592
+256 1670
+256 1540
+256 1534
+256 1594
+256 1693
+256 1702
+256 1528
+256 1491
+256 1685
+256 1584
+256 1545
+256 1867
+256 1555
+256 1588
+256 1622
+256 1512
+256 1616
+256 1586
+256 1536
+256 1582
+256 1628
+256 1557
+256 1580
+256 1780
+256 1600
+256 1525
+256 1618
+256 1498
+256 1693
+256 1811
+256 1648
+256 1501
+256 1696
+256 1680
+256 1591
+256 1556
diff --git a/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8ae3edef04bfd99c31f9e4bc5d3bbe46fe4eb601
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1848.56
+Mediana        = 1729
+Variancia      = 89922.57
+Desvio Padrao  = 299.87
+Coef. Variacao = 0.16
+Min            = 1473
+Max            = 2466
+Esq, Dir.      = 1803.5315 , 1893.5851
diff --git a/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..29e310570d545dcfce20f04f7cd87f784cec7b6c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+32 1594
+32 1814
+32 2011
+32 2264
+32 2150
+32 2143
+32 1544
+32 1474
+32 1617
+32 1473
+32 1527
+32 1519
+32 1582
+32 1556
+32 1522
+32 2062
+32 1704
+32 1557
+32 1536
+32 1661
+32 1943
+32 2065
+32 1551
+32 2224
+32 2303
+32 1679
+32 2262
+32 2114
+32 1561
+32 2221
+32 1540
+32 2260
+32 1581
+32 2116
+32 1710
+32 1544
+32 2050
+32 2130
+32 1549
+32 2010
+32 1618
+32 1532
+32 1769
+32 2442
+32 2145
+32 1612
+32 1505
+32 1606
+32 1528
+32 1959
+32 2466
+32 2140
+32 2229
+32 1614
+32 2093
+32 1647
+32 2214
+32 1494
+32 2022
+32 1597
+32 1609
+32 1660
+32 1565
+32 1534
+32 2225
+32 1582
+32 2020
+32 1822
+32 1692
+32 2215
+32 1748
+32 1539
+32 2190
+32 2284
+32 1992
+32 2205
+32 2212
+32 1522
+32 1558
+32 1528
+32 1610
+32 2133
+32 2364
+32 1567
+32 1596
+32 2121
+32 2052
+32 1514
+32 1706
+32 2020
+32 1536
+32 1494
+32 1522
+32 1541
+32 1524
+32 1975
+32 2422
+32 1598
+32 1959
+32 1964
+32 2447
+32 2127
+32 2019
+32 2045
+32 2175
+32 2171
+32 1581
+32 1645
+32 1575
+32 2042
+32 2221
+32 2039
+32 1591
+32 1988
+32 2246
+32 1476
+32 1666
+32 2241
+32 2088
+32 1569
diff --git a/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ee150d0a5cee8e33ef0eabda0b2bcae9f08d178b
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 8586.03
+Mediana        = 8619.5
+Variancia      = 345866.79
+Desvio Padrao  = 588.1
+Coef. Variacao = 0.07
+Min            = 7004
+Max            = 9954
+Esq, Dir.      = 8497.7272 , 8674.3395
diff --git a/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..de6451c5a425b41c597bd0702b58900d5385ea21
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+32768 9115
+32768 9242
+32768 7068
+32768 8858
+32768 8132
+32768 8659
+32768 8616
+32768 7702
+32768 8233
+32768 9045
+32768 8990
+32768 9112
+32768 8016
+32768 8427
+32768 8304
+32768 8025
+32768 9080
+32768 8451
+32768 8170
+32768 7892
+32768 8101
+32768 8470
+32768 8150
+32768 7561
+32768 9350
+32768 8353
+32768 9056
+32768 8830
+32768 8838
+32768 9227
+32768 9031
+32768 8460
+32768 8128
+32768 8690
+32768 8401
+32768 7858
+32768 8182
+32768 9571
+32768 8474
+32768 8225
+32768 8277
+32768 7378
+32768 8647
+32768 8753
+32768 9169
+32768 8451
+32768 7641
+32768 7945
+32768 7825
+32768 8704
+32768 8708
+32768 8881
+32768 9954
+32768 7689
+32768 9008
+32768 9270
+32768 9608
+32768 7004
+32768 8613
+32768 8276
+32768 9441
+32768 8704
+32768 8366
+32768 8551
+32768 8726
+32768 8741
+32768 7718
+32768 8442
+32768 9464
+32768 8618
+32768 8488
+32768 9038
+32768 9363
+32768 9296
+32768 8650
+32768 8448
+32768 9338
+32768 7641
+32768 8621
+32768 7403
+32768 8460
+32768 9441
+32768 9287
+32768 8351
+32768 8480
+32768 8895
+32768 8640
+32768 8674
+32768 9267
+32768 9576
+32768 7964
+32768 8608
+32768 9210
+32768 8353
+32768 8246
+32768 8869
+32768 8758
+32768 7760
+32768 8168
+32768 9177
+32768 8778
+32768 8894
+32768 9083
+32768 8883
+32768 9602
+32768 8051
+32768 8342
+32768 9545
+32768 7877
+32768 7335
+32768 8254
+32768 8780
+32768 8649
+32768 9491
+32768 8269
+32768 8160
+32768 8859
+32768 8622
+32768 9386
+32768 8329
diff --git a/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e1b47803f4ace435f5b33124bba651eb0fe95218
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1898.59
+Mediana        = 1836
+Variancia      = 102097.07
+Desvio Padrao  = 319.53
+Coef. Variacao = 0.17
+Min            = 1668
+Max            = 4105
+Esq, Dir.      = 1850.6135 , 1946.5698
diff --git a/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c7d557c385d486066515a790b8ea2cc707bcece2
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+4096 1875
+4096 2017
+4096 1866
+4096 1885
+4096 1894
+4096 1780
+4096 1853
+4096 1734
+4096 1825
+4096 1883
+4096 1697
+4096 3076
+4096 1795
+4096 1798
+4096 1794
+4096 1755
+4096 1933
+4096 1799
+4096 1755
+4096 1855
+4096 1668
+4096 1771
+4096 1777
+4096 1750
+4096 1919
+4096 1950
+4096 1839
+4096 1764
+4096 1810
+4096 1892
+4096 1774
+4096 1815
+4096 2002
+4096 1764
+4096 1803
+4096 1755
+4096 1846
+4096 1843
+4096 1859
+4096 1814
+4096 1908
+4096 1781
+4096 2029
+4096 1870
+4096 1984
+4096 1836
+4096 1715
+4096 1845
+4096 1734
+4096 1760
+4096 1881
+4096 1904
+4096 1994
+4096 1809
+4096 1934
+4096 1971
+4096 1955
+4096 1701
+4096 1833
+4096 1923
+4096 1822
+4096 1966
+4096 3917
+4096 1906
+4096 1832
+4096 1879
+4096 1836
+4096 1876
+4096 1982
+4096 1834
+4096 1969
+4096 1854
+4096 1823
+4096 2064
+4096 1725
+4096 1866
+4096 1819
+4096 2230
+4096 2492
+4096 1743
+4096 1833
+4096 1848
+4096 1892
+4096 1887
+4096 2245
+4096 1787
+4096 1806
+4096 1841
+4096 2013
+4096 1927
+4096 1765
+4096 1723
+4096 1926
+4096 1776
+4096 2038
+4096 1747
+4096 1789
+4096 1803
+4096 1704
+4096 1675
+4096 1877
+4096 1780
+4096 1812
+4096 1820
+4096 1863
+4096 1761
+4096 1803
+4096 1973
+4096 1823
+4096 1676
+4096 1881
+4096 1693
+4096 4105
+4096 1738
+4096 1841
+4096 1789
+4096 1939
+4096 1930
+4096 1834
+4096 1782
diff --git a/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..aa4b294917483512f9b5fa4b71b288a42d63df96
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 1616.2
+Mediana        = 1604.5
+Variancia      = 6865.05
+Desvio Padrao  = 82.86
+Coef. Variacao = 0.05
+Min            = 1474
+Max            = 1933
+Esq, Dir.      = 1603.7589 , 1628.6411
diff --git a/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..950f5f822cf5e6365823022fa24e64a14e884bcf
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+512 1614
+512 1795
+512 1614
+512 1648
+512 1647
+512 1548
+512 1636
+512 1534
+512 1607
+512 1641
+512 1498
+512 1553
+512 1585
+512 1591
+512 1697
+512 1515
+512 1701
+512 1566
+512 1540
+512 1665
+512 1597
+512 1565
+512 1576
+512 1543
+512 1666
+512 1774
+512 1613
+512 1536
+512 1575
+512 1726
+512 1568
+512 1584
+512 1697
+512 1538
+512 1587
+512 1548
+512 1621
+512 1551
+512 1594
+512 1593
+512 1688
+512 1580
+512 1770
+512 1700
+512 1660
+512 1617
+512 1502
+512 1622
+512 1523
+512 1526
+512 1637
+512 1673
+512 1666
+512 1614
+512 1706
+512 1729
+512 1701
+512 1491
+512 1602
+512 1773
+512 1620
+512 1673
+512 1598
+512 1699
+512 1639
+512 1633
+512 1517
+512 1612
+512 1730
+512 1597
+512 1731
+512 1614
+512 1583
+512 1724
+512 1508
+512 1734
+512 1570
+512 1530
+512 1571
+512 1523
+512 1612
+512 1593
+512 1617
+512 1785
+512 1752
+512 1521
+512 1585
+512 1624
+512 1798
+512 1695
+512 1547
+512 1495
+512 1695
+512 1617
+512 1783
+512 1514
+512 1556
+512 1598
+512 1478
+512 1491
+512 1631
+512 1557
+512 1524
+512 1582
+512 1615
+512 1557
+512 1597
+512 1933
+512 1617
+512 1474
+512 1626
+512 1477
+512 1589
+512 1657
+512 1587
+512 1569
+512 1709
+512 1703
+512 1589
+512 1562
diff --git a/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..bb0766f01902f8b2918335a3fe80bedf15f8f306
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2377.15
+Mediana        = 1745.5
+Variancia      = 753562.73
+Desvio Padrao  = 868.08
+Coef. Variacao = 0.37
+Min            = 1454
+Max            = 3984
+Esq, Dir.      = 2246.8044 , 2507.4956
diff --git a/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b7234d509890227e5af000e257b168f4ad5aad51
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+64 1580
+64 1771
+64 3065
+64 3455
+64 3517
+64 3266
+64 1596
+64 1458
+64 1588
+64 1627
+64 1511
+64 1501
+64 1563
+64 1544
+64 1515
+64 3076
+64 1678
+64 1544
+64 1514
+64 1647
+64 2941
+64 2988
+64 1522
+64 3538
+64 3536
+64 1689
+64 3583
+64 3181
+64 1562
+64 3873
+64 1520
+64 3685
+64 1564
+64 3142
+64 2230
+64 1522
+64 2991
+64 3188
+64 1550
+64 2938
+64 1608
+64 1520
+64 1777
+64 3480
+64 3053
+64 1591
+64 1486
+64 1596
+64 1512
+64 2903
+64 3366
+64 3079
+64 3443
+64 1591
+64 3005
+64 1625
+64 3279
+64 1476
+64 3088
+64 1589
+64 1582
+64 1641
+64 1565
+64 1536
+64 3386
+64 1595
+64 3177
+64 2525
+64 1683
+64 3582
+64 1720
+64 1506
+64 3224
+64 3486
+64 2903
+64 3262
+64 3563
+64 1506
+64 1541
+64 1500
+64 1589
+64 3132
+64 3984
+64 1565
+64 1585
+64 3404
+64 3010
+64 1497
+64 1678
+64 2928
+64 1523
+64 1484
+64 1512
+64 1531
+64 1509
+64 2865
+64 3526
+64 1583
+64 2855
+64 2846
+64 3797
+64 3463
+64 2992
+64 3163
+64 3502
+64 3355
+64 1567
+64 1637
+64 1566
+64 3081
+64 3727
+64 3120
+64 1573
+64 2917
+64 3385
+64 1454
+64 1677
+64 3374
+64 3447
+64 1546
diff --git a/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e275b717bf4264251b7b86912aae29c963c6ac15
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 28076.81
+Mediana        = 28276.5
+Variancia      = 5278237.74
+Desvio Padrao  = 2297.44
+Coef. Variacao = 0.08
+Min            = 21361
+Max            = 32168
+Esq, Dir.      = 27731.8385 , 28421.7782
diff --git a/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3c5c9627e992eb66a869d1c001df9d6cd95e3e10
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+65536 30315
+65536 28704
+65536 24823
+65536 29551
+65536 28033
+65536 28279
+65536 26933
+65536 23886
+65536 26044
+65536 28882
+65536 28274
+65536 31459
+65536 24879
+65536 26389
+65536 28233
+65536 30437
+65536 28432
+65536 26696
+65536 28657
+65536 24359
+65536 30671
+65536 26928
+65536 27357
+65536 29095
+65536 25859
+65536 26054
+65536 28912
+65536 26690
+65536 28186
+65536 30238
+65536 31225
+65536 29570
+65536 28349
+65536 29052
+65536 31164
+65536 24391
+65536 26598
+65536 29790
+65536 26850
+65536 31025
+65536 25677
+65536 22423
+65536 26110
+65536 29069
+65536 29656
+65536 26697
+65536 24226
+65536 24384
+65536 24714
+65536 25318
+65536 29972
+65536 29052
+65536 25650
+65536 23584
+65536 29325
+65536 28880
+65536 29838
+65536 21361
+65536 29858
+65536 28524
+65536 31789
+65536 27307
+65536 28610
+65536 29436
+65536 28217
+65536 27439
+65536 28778
+65536 30777
+65536 30932
+65536 30212
+65536 26171
+65536 28054
+65536 26408
+65536 29721
+65536 28349
+65536 29840
+65536 27610
+65536 27210
+65536 28157
+65536 22753
+65536 26736
+65536 31133
+65536 31261
+65536 30403
+65536 30793
+65536 31566
+65536 25993
+65536 27478
+65536 28679
+65536 31772
+65536 24741
+65536 27980
+65536 29202
+65536 32168
+65536 29949
+65536 29640
+65536 31857
+65536 23820
+65536 27915
+65536 28292
+65536 27386
+65536 30588
+65536 26993
+65536 30540
+65536 31594
+65536 26219
+65536 26697
+65536 27105
+65536 26988
+65536 25142
+65536 26942
+65536 30039
+65536 30572
+65536 30038
+65536 29825
+65536 25754
+65536 27937
+65536 26947
+65536 30017
+65536 27159
diff --git a/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a0ca6d3d42cce9237846129cb463c806f498a8f7
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R
@@ -0,0 +1,8 @@
+Media          = 2433.85
+Mediana        = 2251
+Variancia      = 549691.29
+Desvio Padrao  = 741.41
+Coef. Variacao = 0.3
+Min            = 2039
+Max            = 5713
+Esq, Dir.      = 2322.5241 , 2545.1759
diff --git a/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..61bd7e1de173b5c62070e185f7541d7a64def8dc
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res
@@ -0,0 +1,120 @@
+8192 5649
+8192 2463
+8192 2102
+8192 2303
+8192 2316
+8192 2262
+8192 2287
+8192 2110
+8192 2222
+8192 2322
+8192 2242
+8192 2267
+8192 2180
+8192 2231
+8192 2095
+8192 2154
+8192 2370
+8192 2213
+8192 4414
+8192 2255
+8192 2049
+8192 2156
+8192 4848
+8192 2116
+8192 2288
+8192 2400
+8192 2244
+8192 2156
+8192 2277
+8192 2311
+8192 4898
+8192 2218
+8192 2291
+8192 2169
+8192 2168
+8192 2137
+8192 2245
+8192 2257
+8192 2270
+8192 2188
+8192 2301
+8192 2156
+8192 5102
+8192 2297
+8192 2481
+8192 2297
+8192 2078
+8192 2235
+8192 2098
+8192 2150
+8192 2263
+8192 2296
+8192 2397
+8192 2176
+8192 2350
+8192 2414
+8192 2391
+8192 2043
+8192 2252
+8192 2258
+8192 5337
+8192 2381
+8192 2338
+8192 2217
+8192 2228
+8192 2285
+8192 2224
+8192 2280
+8192 2397
+8192 2215
+8192 2408
+8192 2298
+8192 2254
+8192 2405
+8192 2115
+8192 2256
+8192 2217
+8192 2170
+8192 2143
+8192 2107
+8192 2250
+8192 2280
+8192 2302
+8192 2196
+8192 2222
+8192 2234
+8192 2221
+8192 2279
+8192 2461
+8192 2302
+8192 2155
+8192 2162
+8192 2382
+8192 5713
+8192 2162
+8192 2154
+8192 2215
+8192 2186
+8192 2073
+8192 2046
+8192 2276
+8192 2201
+8192 2175
+8192 2230
+8192 2315
+8192 2157
+8192 2203
+8192 2391
+8192 5206
+8192 2039
+8192 2253
+8192 2089
+8192 2368
+8192 2111
+8192 2281
+8192 2189
+8192 2380
+8192 2311
+8192 2244
+8192 2195
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..3ea74574dc6efd74b8f5cc7bb4d228e466ca6b92
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2081ms)
+    ✓ MaxGraphSQL;n=32 (1558ms)
+    ✓ MaxGraphSQL;n=64 (1541ms)
+    ✓ MaxGraphSQL;n=128 (1560ms)
+    ✓ MaxGraphSQL;n=256 (1568ms)
+    ✓ MaxGraphSQL;n=512 (1571ms)
+    ✓ MaxGraphSQL;n=1024 (1951ms)
+    ✓ MaxGraphSQL;n=2048 (3192ms)
+    ✓ MaxGraphSQL;n=4096 (2492ms)
+    ✓ MaxGraphSQL;n=8192 (2143ms)
+    ✓ MaxGraphSQL;n=16384 (3514ms)
+    ✓ MaxGraphSQL;n=32768 (8621ms)
+    ✓ MaxGraphSQL;n=65536 (28157ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..1abaf24d50355752d81164a9d566dec145fccb85
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2115ms)
+    ✓ MaxGraphSQL;n=32 (1992ms)
+    ✓ MaxGraphSQL;n=64 (2903ms)
+    ✓ MaxGraphSQL;n=128 (1706ms)
+    ✓ MaxGraphSQL;n=256 (1509ms)
+    ✓ MaxGraphSQL;n=512 (1508ms)
+    ✓ MaxGraphSQL;n=1024 (1522ms)
+    ✓ MaxGraphSQL;n=2048 (1598ms)
+    ✓ MaxGraphSQL;n=4096 (1725ms)
+    ✓ MaxGraphSQL;n=8192 (2115ms)
+    ✓ MaxGraphSQL;n=16384 (3503ms)
+    ✓ MaxGraphSQL;n=32768 (8650ms)
+    ✓ MaxGraphSQL;n=65536 (28349ms)
+
+
+  13 passing (60s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test
new file mode 100644
index 0000000000000000000000000000000000000000..cb3bacb297a43cbc5b648a06f5d1802d33182aa6
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2119ms)
+    ✓ MaxGraphSQL;n=32 (1575ms)
+    ✓ MaxGraphSQL;n=64 (1566ms)
+    ✓ MaxGraphSQL;n=128 (1584ms)
+    ✓ MaxGraphSQL;n=256 (1600ms)
+    ✓ MaxGraphSQL;n=512 (1617ms)
+    ✓ MaxGraphSQL;n=1024 (1595ms)
+    ✓ MaxGraphSQL;n=2048 (1677ms)
+    ✓ MaxGraphSQL;n=4096 (1823ms)
+    ✓ MaxGraphSQL;n=8192 (5206ms)
+    ✓ MaxGraphSQL;n=16384 (3675ms)
+    ✓ MaxGraphSQL;n=32768 (7877ms)
+    ✓ MaxGraphSQL;n=65536 (26988ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test
new file mode 100644
index 0000000000000000000000000000000000000000..806e40bf3507b2c10d4862f2ebd196807c6212c7
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2058ms)
+    ✓ MaxGraphSQL;n=32 (1964ms)
+    ✓ MaxGraphSQL;n=64 (2846ms)
+    ✓ MaxGraphSQL;n=128 (1670ms)
+    ✓ MaxGraphSQL;n=256 (1512ms)
+    ✓ MaxGraphSQL;n=512 (1491ms)
+    ✓ MaxGraphSQL;n=1024 (1509ms)
+    ✓ MaxGraphSQL;n=2048 (1569ms)
+    ✓ MaxGraphSQL;n=4096 (1675ms)
+    ✓ MaxGraphSQL;n=8192 (2046ms)
+    ✓ MaxGraphSQL;n=16384 (3562ms)
+    ✓ MaxGraphSQL;n=32768 (9177ms)
+    ✓ MaxGraphSQL;n=65536 (28292ms)
+
+
+  13 passing (60s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test
new file mode 100644
index 0000000000000000000000000000000000000000..616478c1c45deddad1a69dc96f3ce047be26f0d3
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2171ms)
+    ✓ MaxGraphSQL;n=32 (2221ms)
+    ✓ MaxGraphSQL;n=64 (3727ms)
+    ✓ MaxGraphSQL;n=128 (1949ms)
+    ✓ MaxGraphSQL;n=256 (1618ms)
+    ✓ MaxGraphSQL;n=512 (1626ms)
+    ✓ MaxGraphSQL;n=1024 (1645ms)
+    ✓ MaxGraphSQL;n=2048 (1732ms)
+    ✓ MaxGraphSQL;n=4096 (1881ms)
+    ✓ MaxGraphSQL;n=8192 (2253ms)
+    ✓ MaxGraphSQL;n=16384 (3535ms)
+    ✓ MaxGraphSQL;n=32768 (8254ms)
+    ✓ MaxGraphSQL;n=65536 (26942ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test
new file mode 100644
index 0000000000000000000000000000000000000000..1d0b91368b39894125239c7e077bf6cb6a2677a1
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1997ms)
+    ✓ MaxGraphSQL;n=32 (1943ms)
+    ✓ MaxGraphSQL;n=64 (2941ms)
+    ✓ MaxGraphSQL;n=128 (1553ms)
+    ✓ MaxGraphSQL;n=256 (1484ms)
+    ✓ MaxGraphSQL;n=512 (1597ms)
+    ✓ MaxGraphSQL;n=1024 (1480ms)
+    ✓ MaxGraphSQL;n=2048 (1539ms)
+    ✓ MaxGraphSQL;n=4096 (1668ms)
+    ✓ MaxGraphSQL;n=8192 (2049ms)
+    ✓ MaxGraphSQL;n=16384 (3296ms)
+    ✓ MaxGraphSQL;n=32768 (8101ms)
+    ✓ MaxGraphSQL;n=65536 (30671ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test
new file mode 100644
index 0000000000000000000000000000000000000000..6031716577921c866ae1f7906ee4ba507408dea9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2271ms)
+    ✓ MaxGraphSQL;n=32 (2205ms)
+    ✓ MaxGraphSQL;n=64 (3262ms)
+    ✓ MaxGraphSQL;n=128 (2108ms)
+    ✓ MaxGraphSQL;n=256 (1711ms)
+    ✓ MaxGraphSQL;n=512 (1734ms)
+    ✓ MaxGraphSQL;n=1024 (1762ms)
+    ✓ MaxGraphSQL;n=2048 (1829ms)
+    ✓ MaxGraphSQL;n=4096 (1866ms)
+    ✓ MaxGraphSQL;n=8192 (2256ms)
+    ✓ MaxGraphSQL;n=16384 (3574ms)
+    ✓ MaxGraphSQL;n=32768 (8448ms)
+    ✓ MaxGraphSQL;n=65536 (29840ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test
new file mode 100644
index 0000000000000000000000000000000000000000..a69e511afb8e694f081e7d4fb42f7490907c5bbe
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2222ms)
+    ✓ MaxGraphSQL;n=32 (2225ms)
+    ✓ MaxGraphSQL;n=64 (3386ms)
+    ✓ MaxGraphSQL;n=128 (2051ms)
+    ✓ MaxGraphSQL;n=256 (1686ms)
+    ✓ MaxGraphSQL;n=512 (1639ms)
+    ✓ MaxGraphSQL;n=1024 (1693ms)
+    ✓ MaxGraphSQL;n=2048 (1705ms)
+    ✓ MaxGraphSQL;n=4096 (1832ms)
+    ✓ MaxGraphSQL;n=8192 (2228ms)
+    ✓ MaxGraphSQL;n=16384 (3630ms)
+    ✓ MaxGraphSQL;n=32768 (8726ms)
+    ✓ MaxGraphSQL;n=65536 (28217ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test
new file mode 100644
index 0000000000000000000000000000000000000000..3feb4343d5357542c7fbb8fccb91b2543917b49c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2162ms)
+    ✓ MaxGraphSQL;n=32 (2143ms)
+    ✓ MaxGraphSQL;n=64 (3266ms)
+    ✓ MaxGraphSQL;n=128 (1706ms)
+    ✓ MaxGraphSQL;n=256 (1566ms)
+    ✓ MaxGraphSQL;n=512 (1548ms)
+    ✓ MaxGraphSQL;n=1024 (1562ms)
+    ✓ MaxGraphSQL;n=2048 (1627ms)
+    ✓ MaxGraphSQL;n=4096 (1780ms)
+    ✓ MaxGraphSQL;n=8192 (2262ms)
+    ✓ MaxGraphSQL;n=16384 (3595ms)
+    ✓ MaxGraphSQL;n=32768 (8659ms)
+    ✓ MaxGraphSQL;n=65536 (28279ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test
new file mode 100644
index 0000000000000000000000000000000000000000..03579652b7692fab0983876ef9ae8baec1ac3ca1
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2148ms)
+    ✓ MaxGraphSQL;n=32 (1581ms)
+    ✓ MaxGraphSQL;n=64 (1564ms)
+    ✓ MaxGraphSQL;n=128 (1593ms)
+    ✓ MaxGraphSQL;n=256 (1743ms)
+    ✓ MaxGraphSQL;n=512 (1697ms)
+    ✓ MaxGraphSQL;n=1024 (2194ms)
+    ✓ MaxGraphSQL;n=2048 (3238ms)
+    ✓ MaxGraphSQL;n=4096 (2002ms)
+    ✓ MaxGraphSQL;n=8192 (2291ms)
+    ✓ MaxGraphSQL;n=16384 (3639ms)
+    ✓ MaxGraphSQL;n=32768 (8128ms)
+    ✓ MaxGraphSQL;n=65536 (28349ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test
new file mode 100644
index 0000000000000000000000000000000000000000..1c157d0d54f6b273f500a40482226c5d1272dfcc
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2134ms)
+    ✓ MaxGraphSQL;n=32 (1534ms)
+    ✓ MaxGraphSQL;n=64 (1536ms)
+    ✓ MaxGraphSQL;n=128 (1561ms)
+    ✓ MaxGraphSQL;n=256 (1650ms)
+    ✓ MaxGraphSQL;n=512 (1699ms)
+    ✓ MaxGraphSQL;n=1024 (2446ms)
+    ✓ MaxGraphSQL;n=2048 (3817ms)
+    ✓ MaxGraphSQL;n=4096 (1906ms)
+    ✓ MaxGraphSQL;n=8192 (2217ms)
+    ✓ MaxGraphSQL;n=16384 (3668ms)
+    ✓ MaxGraphSQL;n=32768 (8551ms)
+    ✓ MaxGraphSQL;n=65536 (29436ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..148c63a0e6c0c1c23f5f8835e8e58d689e47c784
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2129ms)
+    ✓ MaxGraphSQL;n=32 (2088ms)
+    ✓ MaxGraphSQL;n=64 (3447ms)
+    ✓ MaxGraphSQL;n=128 (1721ms)
+    ✓ MaxGraphSQL;n=256 (1591ms)
+    ✓ MaxGraphSQL;n=512 (1589ms)
+    ✓ MaxGraphSQL;n=1024 (1609ms)
+    ✓ MaxGraphSQL;n=2048 (1698ms)
+    ✓ MaxGraphSQL;n=4096 (1834ms)
+    ✓ MaxGraphSQL;n=8192 (2244ms)
+    ✓ MaxGraphSQL;n=16384 (3746ms)
+    ✓ MaxGraphSQL;n=32768 (9386ms)
+    ✓ MaxGraphSQL;n=65536 (30017ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test
new file mode 100644
index 0000000000000000000000000000000000000000..fe8ebb9f8c347a22cf4b547b2b1a1db2bf9f4817
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2142ms)
+    ✓ MaxGraphSQL;n=32 (1597ms)
+    ✓ MaxGraphSQL;n=64 (1589ms)
+    ✓ MaxGraphSQL;n=128 (1674ms)
+    ✓ MaxGraphSQL;n=256 (1596ms)
+    ✓ MaxGraphSQL;n=512 (1773ms)
+    ✓ MaxGraphSQL;n=1024 (2579ms)
+    ✓ MaxGraphSQL;n=2048 (3432ms)
+    ✓ MaxGraphSQL;n=4096 (1923ms)
+    ✓ MaxGraphSQL;n=8192 (2258ms)
+    ✓ MaxGraphSQL;n=16384 (3585ms)
+    ✓ MaxGraphSQL;n=32768 (8276ms)
+    ✓ MaxGraphSQL;n=65536 (28524ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test
new file mode 100644
index 0000000000000000000000000000000000000000..d964559c29f45c851055f41b9775046276598c78
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2265ms)
+    ✓ MaxGraphSQL;n=32 (2264ms)
+    ✓ MaxGraphSQL;n=64 (3455ms)
+    ✓ MaxGraphSQL;n=128 (1906ms)
+    ✓ MaxGraphSQL;n=256 (1649ms)
+    ✓ MaxGraphSQL;n=512 (1648ms)
+    ✓ MaxGraphSQL;n=1024 (1672ms)
+    ✓ MaxGraphSQL;n=2048 (1743ms)
+    ✓ MaxGraphSQL;n=4096 (1885ms)
+    ✓ MaxGraphSQL;n=8192 (2303ms)
+    ✓ MaxGraphSQL;n=16384 (3768ms)
+    ✓ MaxGraphSQL;n=32768 (8858ms)
+    ✓ MaxGraphSQL;n=65536 (29551ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test
new file mode 100644
index 0000000000000000000000000000000000000000..e3226e6a116fa0dd689a2267e6c3303091bc8656
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2095ms)
+    ✓ MaxGraphSQL;n=32 (2062ms)
+    ✓ MaxGraphSQL;n=64 (3076ms)
+    ✓ MaxGraphSQL;n=128 (1779ms)
+    ✓ MaxGraphSQL;n=256 (1520ms)
+    ✓ MaxGraphSQL;n=512 (1515ms)
+    ✓ MaxGraphSQL;n=1024 (1534ms)
+    ✓ MaxGraphSQL;n=2048 (1600ms)
+    ✓ MaxGraphSQL;n=4096 (1755ms)
+    ✓ MaxGraphSQL;n=8192 (2154ms)
+    ✓ MaxGraphSQL;n=16384 (3553ms)
+    ✓ MaxGraphSQL;n=32768 (8025ms)
+    ✓ MaxGraphSQL;n=65536 (30437ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test
new file mode 100644
index 0000000000000000000000000000000000000000..9f35f59c22278cea9fffc967deababad48d4ea0d
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2208ms)
+    ✓ MaxGraphSQL;n=32 (2212ms)
+    ✓ MaxGraphSQL;n=64 (3563ms)
+    ✓ MaxGraphSQL;n=128 (1863ms)
+    ✓ MaxGraphSQL;n=256 (1556ms)
+    ✓ MaxGraphSQL;n=512 (1570ms)
+    ✓ MaxGraphSQL;n=1024 (1550ms)
+    ✓ MaxGraphSQL;n=2048 (1635ms)
+    ✓ MaxGraphSQL;n=4096 (1819ms)
+    ✓ MaxGraphSQL;n=8192 (2217ms)
+    ✓ MaxGraphSQL;n=16384 (3756ms)
+    ✓ MaxGraphSQL;n=32768 (9338ms)
+    ✓ MaxGraphSQL;n=65536 (27610ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test
new file mode 100644
index 0000000000000000000000000000000000000000..126e8884e24e3036a49b421d13c8fe743246ea21
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2313ms)
+    ✓ MaxGraphSQL;n=32 (1769ms)
+    ✓ MaxGraphSQL;n=64 (1777ms)
+    ✓ MaxGraphSQL;n=128 (1870ms)
+    ✓ MaxGraphSQL;n=256 (1749ms)
+    ✓ MaxGraphSQL;n=512 (1770ms)
+    ✓ MaxGraphSQL;n=1024 (1782ms)
+    ✓ MaxGraphSQL;n=2048 (1868ms)
+    ✓ MaxGraphSQL;n=4096 (2029ms)
+    ✓ MaxGraphSQL;n=8192 (5102ms)
+    ✓ MaxGraphSQL;n=16384 (4029ms)
+    ✓ MaxGraphSQL;n=32768 (8647ms)
+    ✓ MaxGraphSQL;n=65536 (26110ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test
new file mode 100644
index 0000000000000000000000000000000000000000..fdff9677bf5d4ea63dc5c46c56f41ceef4e89869
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2159ms)
+    ✓ MaxGraphSQL;n=32 (2130ms)
+    ✓ MaxGraphSQL;n=64 (3188ms)
+    ✓ MaxGraphSQL;n=128 (1801ms)
+    ✓ MaxGraphSQL;n=256 (1560ms)
+    ✓ MaxGraphSQL;n=512 (1551ms)
+    ✓ MaxGraphSQL;n=1024 (1565ms)
+    ✓ MaxGraphSQL;n=2048 (1634ms)
+    ✓ MaxGraphSQL;n=4096 (1843ms)
+    ✓ MaxGraphSQL;n=8192 (2257ms)
+    ✓ MaxGraphSQL;n=16384 (3715ms)
+    ✓ MaxGraphSQL;n=32768 (9571ms)
+    ✓ MaxGraphSQL;n=65536 (29790ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test
new file mode 100644
index 0000000000000000000000000000000000000000..3d1c7def5d97cb51e59bc6b08856ed1a78c65687
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2122ms)
+    ✓ MaxGraphSQL;n=32 (1567ms)
+    ✓ MaxGraphSQL;n=64 (1565ms)
+    ✓ MaxGraphSQL;n=128 (1579ms)
+    ✓ MaxGraphSQL;n=256 (1592ms)
+    ✓ MaxGraphSQL;n=512 (1785ms)
+    ✓ MaxGraphSQL;n=1024 (2604ms)
+    ✓ MaxGraphSQL;n=2048 (3591ms)
+    ✓ MaxGraphSQL;n=4096 (1887ms)
+    ✓ MaxGraphSQL;n=8192 (2196ms)
+    ✓ MaxGraphSQL;n=16384 (3594ms)
+    ✓ MaxGraphSQL;n=32768 (8351ms)
+    ✓ MaxGraphSQL;n=65536 (30403ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test
new file mode 100644
index 0000000000000000000000000000000000000000..fd0f8460658a212f881f5157c3bc21e6ecf0c740
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2155ms)
+    ✓ MaxGraphSQL;n=32 (2116ms)
+    ✓ MaxGraphSQL;n=64 (3142ms)
+    ✓ MaxGraphSQL;n=128 (1791ms)
+    ✓ MaxGraphSQL;n=256 (1542ms)
+    ✓ MaxGraphSQL;n=512 (1538ms)
+    ✓ MaxGraphSQL;n=1024 (1550ms)
+    ✓ MaxGraphSQL;n=2048 (1623ms)
+    ✓ MaxGraphSQL;n=4096 (1764ms)
+    ✓ MaxGraphSQL;n=8192 (2169ms)
+    ✓ MaxGraphSQL;n=16384 (3545ms)
+    ✓ MaxGraphSQL;n=32768 (8690ms)
+    ✓ MaxGraphSQL;n=65536 (29052ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test
new file mode 100644
index 0000000000000000000000000000000000000000..b3ba7a98aa1f2f22b1c62c591b9a7609d9c95bef
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2149ms)
+    ✓ MaxGraphSQL;n=32 (2022ms)
+    ✓ MaxGraphSQL;n=64 (3088ms)
+    ✓ MaxGraphSQL;n=128 (1777ms)
+    ✓ MaxGraphSQL;n=256 (1612ms)
+    ✓ MaxGraphSQL;n=512 (1602ms)
+    ✓ MaxGraphSQL;n=1024 (1623ms)
+    ✓ MaxGraphSQL;n=2048 (1685ms)
+    ✓ MaxGraphSQL;n=4096 (1833ms)
+    ✓ MaxGraphSQL;n=8192 (2252ms)
+    ✓ MaxGraphSQL;n=16384 (3670ms)
+    ✓ MaxGraphSQL;n=32768 (8613ms)
+    ✓ MaxGraphSQL;n=65536 (29858ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test
new file mode 100644
index 0000000000000000000000000000000000000000..3d16de29c91d02be642a27a245ac0c78f3a432f4
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2309ms)
+    ✓ MaxGraphSQL;n=32 (2422ms)
+    ✓ MaxGraphSQL;n=64 (3526ms)
+    ✓ MaxGraphSQL;n=128 (1606ms)
+    ✓ MaxGraphSQL;n=256 (1555ms)
+    ✓ MaxGraphSQL;n=512 (1556ms)
+    ✓ MaxGraphSQL;n=1024 (1565ms)
+    ✓ MaxGraphSQL;n=2048 (1635ms)
+    ✓ MaxGraphSQL;n=4096 (1789ms)
+    ✓ MaxGraphSQL;n=8192 (2215ms)
+    ✓ MaxGraphSQL;n=16384 (3763ms)
+    ✓ MaxGraphSQL;n=32768 (8758ms)
+    ✓ MaxGraphSQL;n=65536 (31857ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ce03587588ba90bebc7fd2287ea8b513b9956380
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2244ms)
+    ✓ MaxGraphSQL;n=32 (2214ms)
+    ✓ MaxGraphSQL;n=64 (3279ms)
+    ✓ MaxGraphSQL;n=128 (2005ms)
+    ✓ MaxGraphSQL;n=256 (1743ms)
+    ✓ MaxGraphSQL;n=512 (1701ms)
+    ✓ MaxGraphSQL;n=1024 (1681ms)
+    ✓ MaxGraphSQL;n=2048 (1746ms)
+    ✓ MaxGraphSQL;n=4096 (1955ms)
+    ✓ MaxGraphSQL;n=8192 (2391ms)
+    ✓ MaxGraphSQL;n=16384 (3894ms)
+    ✓ MaxGraphSQL;n=32768 (9608ms)
+    ✓ MaxGraphSQL;n=65536 (29838ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test
new file mode 100644
index 0000000000000000000000000000000000000000..f315227d3ad6048994cc24584d994001bb047979
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2156ms)
+    ✓ MaxGraphSQL;n=32 (1822ms)
+    ✓ MaxGraphSQL;n=64 (2525ms)
+    ✓ MaxGraphSQL;n=128 (3386ms)
+    ✓ MaxGraphSQL;n=256 (1665ms)
+    ✓ MaxGraphSQL;n=512 (1612ms)
+    ✓ MaxGraphSQL;n=1024 (1630ms)
+    ✓ MaxGraphSQL;n=2048 (1746ms)
+    ✓ MaxGraphSQL;n=4096 (1876ms)
+    ✓ MaxGraphSQL;n=8192 (2280ms)
+    ✓ MaxGraphSQL;n=16384 (3625ms)
+    ✓ MaxGraphSQL;n=32768 (8442ms)
+    ✓ MaxGraphSQL;n=65536 (30777ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test
new file mode 100644
index 0000000000000000000000000000000000000000..36582219d7b55aa1c66bf7ba7d01f91f8a12ac97
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2159ms)
+    ✓ MaxGraphSQL;n=32 (1610ms)
+    ✓ MaxGraphSQL;n=64 (1589ms)
+    ✓ MaxGraphSQL;n=128 (1590ms)
+    ✓ MaxGraphSQL;n=256 (1598ms)
+    ✓ MaxGraphSQL;n=512 (1612ms)
+    ✓ MaxGraphSQL;n=1024 (1621ms)
+    ✓ MaxGraphSQL;n=2048 (1704ms)
+    ✓ MaxGraphSQL;n=4096 (1833ms)
+    ✓ MaxGraphSQL;n=8192 (2250ms)
+    ✓ MaxGraphSQL;n=16384 (3664ms)
+    ✓ MaxGraphSQL;n=32768 (8460ms)
+    ✓ MaxGraphSQL;n=65536 (26736ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test
new file mode 100644
index 0000000000000000000000000000000000000000..bdbcc2dfeba625f95490785d4b5824aa38fccebd
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2215ms)
+    ✓ MaxGraphSQL;n=32 (1666ms)
+    ✓ MaxGraphSQL;n=64 (1677ms)
+    ✓ MaxGraphSQL;n=128 (1684ms)
+    ✓ MaxGraphSQL;n=256 (1696ms)
+    ✓ MaxGraphSQL;n=512 (1709ms)
+    ✓ MaxGraphSQL;n=1024 (1714ms)
+    ✓ MaxGraphSQL;n=2048 (1807ms)
+    ✓ MaxGraphSQL;n=4096 (1939ms)
+    ✓ MaxGraphSQL;n=8192 (2380ms)
+    ✓ MaxGraphSQL;n=16384 (3896ms)
+    ✓ MaxGraphSQL;n=32768 (8859ms)
+    ✓ MaxGraphSQL;n=65536 (27937ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test
new file mode 100644
index 0000000000000000000000000000000000000000..61d8d2e159331e52c77796a50be05806805bf812
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2017ms)
+    ✓ MaxGraphSQL;n=32 (1528ms)
+    ✓ MaxGraphSQL;n=64 (1500ms)
+    ✓ MaxGraphSQL;n=128 (1504ms)
+    ✓ MaxGraphSQL;n=256 (1518ms)
+    ✓ MaxGraphSQL;n=512 (1523ms)
+    ✓ MaxGraphSQL;n=1024 (1546ms)
+    ✓ MaxGraphSQL;n=2048 (1612ms)
+    ✓ MaxGraphSQL;n=4096 (1743ms)
+    ✓ MaxGraphSQL;n=8192 (2107ms)
+    ✓ MaxGraphSQL;n=16384 (3341ms)
+    ✓ MaxGraphSQL;n=32768 (7403ms)
+    ✓ MaxGraphSQL;n=65536 (22753ms)
+
+
+  13 passing (50s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test
new file mode 100644
index 0000000000000000000000000000000000000000..5897cf8e8fafd1ebdcd3c8a3181672aa66dc1481
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2018ms)
+    ✓ MaxGraphSQL;n=32 (1494ms)
+    ✓ MaxGraphSQL;n=64 (1476ms)
+    ✓ MaxGraphSQL;n=128 (1471ms)
+    ✓ MaxGraphSQL;n=256 (1489ms)
+    ✓ MaxGraphSQL;n=512 (1491ms)
+    ✓ MaxGraphSQL;n=1024 (1530ms)
+    ✓ MaxGraphSQL;n=2048 (1584ms)
+    ✓ MaxGraphSQL;n=4096 (1701ms)
+    ✓ MaxGraphSQL;n=8192 (2043ms)
+    ✓ MaxGraphSQL;n=16384 (3199ms)
+    ✓ MaxGraphSQL;n=32768 (7004ms)
+    ✓ MaxGraphSQL;n=65536 (21361ms)
+
+
+  13 passing (48s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test
new file mode 100644
index 0000000000000000000000000000000000000000..39d29a0b843ffab3d9110cb032e5acb81eab9c8b
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2023ms)
+    ✓ MaxGraphSQL;n=32 (1544ms)
+    ✓ MaxGraphSQL;n=64 (1596ms)
+    ✓ MaxGraphSQL;n=128 (1624ms)
+    ✓ MaxGraphSQL;n=256 (1622ms)
+    ✓ MaxGraphSQL;n=512 (1636ms)
+    ✓ MaxGraphSQL;n=1024 (1666ms)
+    ✓ MaxGraphSQL;n=2048 (1721ms)
+    ✓ MaxGraphSQL;n=4096 (1853ms)
+    ✓ MaxGraphSQL;n=8192 (2287ms)
+    ✓ MaxGraphSQL;n=16384 (3734ms)
+    ✓ MaxGraphSQL;n=32768 (8616ms)
+    ✓ MaxGraphSQL;n=65536 (26933ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test
new file mode 100644
index 0000000000000000000000000000000000000000..6bd934beeb4743bde04b8d70339c2e5baaf03d45
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2174ms)
+    ✓ MaxGraphSQL;n=32 (1561ms)
+    ✓ MaxGraphSQL;n=64 (1562ms)
+    ✓ MaxGraphSQL;n=128 (1561ms)
+    ✓ MaxGraphSQL;n=256 (1567ms)
+    ✓ MaxGraphSQL;n=512 (1575ms)
+    ✓ MaxGraphSQL;n=1024 (1587ms)
+    ✓ MaxGraphSQL;n=2048 (1663ms)
+    ✓ MaxGraphSQL;n=4096 (1810ms)
+    ✓ MaxGraphSQL;n=8192 (2277ms)
+    ✓ MaxGraphSQL;n=16384 (3791ms)
+    ✓ MaxGraphSQL;n=32768 (8838ms)
+    ✓ MaxGraphSQL;n=65536 (28186ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test
new file mode 100644
index 0000000000000000000000000000000000000000..889c580d94ded8a391a3befeab5a28f04c78feda
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2287ms)
+    ✓ MaxGraphSQL;n=32 (1704ms)
+    ✓ MaxGraphSQL;n=64 (1678ms)
+    ✓ MaxGraphSQL;n=128 (1678ms)
+    ✓ MaxGraphSQL;n=256 (1688ms)
+    ✓ MaxGraphSQL;n=512 (1701ms)
+    ✓ MaxGraphSQL;n=1024 (1723ms)
+    ✓ MaxGraphSQL;n=2048 (1841ms)
+    ✓ MaxGraphSQL;n=4096 (1933ms)
+    ✓ MaxGraphSQL;n=8192 (2370ms)
+    ✓ MaxGraphSQL;n=16384 (3939ms)
+    ✓ MaxGraphSQL;n=32768 (9080ms)
+    ✓ MaxGraphSQL;n=65536 (28432ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test
new file mode 100644
index 0000000000000000000000000000000000000000..1e63895e6ceac1aa9b0b4b2168a264ed35d82d75
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2135ms)
+    ✓ MaxGraphSQL;n=32 (1606ms)
+    ✓ MaxGraphSQL;n=64 (1596ms)
+    ✓ MaxGraphSQL;n=128 (1603ms)
+    ✓ MaxGraphSQL;n=256 (1610ms)
+    ✓ MaxGraphSQL;n=512 (1622ms)
+    ✓ MaxGraphSQL;n=1024 (1636ms)
+    ✓ MaxGraphSQL;n=2048 (1719ms)
+    ✓ MaxGraphSQL;n=4096 (1845ms)
+    ✓ MaxGraphSQL;n=8192 (2235ms)
+    ✓ MaxGraphSQL;n=16384 (3587ms)
+    ✓ MaxGraphSQL;n=32768 (7945ms)
+    ✓ MaxGraphSQL;n=65536 (24384ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test
new file mode 100644
index 0000000000000000000000000000000000000000..a10b49e8e8dcd410e9d7d3556741ba1d1bdb2cc7
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2100ms)
+    ✓ MaxGraphSQL;n=32 (1617ms)
+    ✓ MaxGraphSQL;n=64 (1588ms)
+    ✓ MaxGraphSQL;n=128 (1592ms)
+    ✓ MaxGraphSQL;n=256 (1603ms)
+    ✓ MaxGraphSQL;n=512 (1607ms)
+    ✓ MaxGraphSQL;n=1024 (1627ms)
+    ✓ MaxGraphSQL;n=2048 (1703ms)
+    ✓ MaxGraphSQL;n=4096 (1825ms)
+    ✓ MaxGraphSQL;n=8192 (2222ms)
+    ✓ MaxGraphSQL;n=16384 (3608ms)
+    ✓ MaxGraphSQL;n=32768 (8233ms)
+    ✓ MaxGraphSQL;n=65536 (26044ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..55e1d05474ba7911ab2962da219e4ebf87047b0f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2030ms)
+    ✓ MaxGraphSQL;n=32 (2127ms)
+    ✓ MaxGraphSQL;n=64 (3463ms)
+    ✓ MaxGraphSQL;n=128 (1785ms)
+    ✓ MaxGraphSQL;n=256 (1586ms)
+    ✓ MaxGraphSQL;n=512 (1557ms)
+    ✓ MaxGraphSQL;n=1024 (1564ms)
+    ✓ MaxGraphSQL;n=2048 (1638ms)
+    ✓ MaxGraphSQL;n=4096 (1780ms)
+    ✓ MaxGraphSQL;n=8192 (2201ms)
+    ✓ MaxGraphSQL;n=16384 (3577ms)
+    ✓ MaxGraphSQL;n=32768 (8894ms)
+    ✓ MaxGraphSQL;n=65536 (30588ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test
new file mode 100644
index 0000000000000000000000000000000000000000..679b6d62396d9641e34837e70ea5328577e57190
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2131ms)
+    ✓ MaxGraphSQL;n=32 (1557ms)
+    ✓ MaxGraphSQL;n=64 (1544ms)
+    ✓ MaxGraphSQL;n=128 (1550ms)
+    ✓ MaxGraphSQL;n=256 (1555ms)
+    ✓ MaxGraphSQL;n=512 (1566ms)
+    ✓ MaxGraphSQL;n=1024 (1579ms)
+    ✓ MaxGraphSQL;n=2048 (1658ms)
+    ✓ MaxGraphSQL;n=4096 (1799ms)
+    ✓ MaxGraphSQL;n=8192 (2213ms)
+    ✓ MaxGraphSQL;n=16384 (3638ms)
+    ✓ MaxGraphSQL;n=32768 (8451ms)
+    ✓ MaxGraphSQL;n=65536 (26696ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test
new file mode 100644
index 0000000000000000000000000000000000000000..209f8da3974a2bfd9a491df5faaac810cafb8005
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2077ms)
+    ✓ MaxGraphSQL;n=32 (1527ms)
+    ✓ MaxGraphSQL;n=64 (1511ms)
+    ✓ MaxGraphSQL;n=128 (1512ms)
+    ✓ MaxGraphSQL;n=256 (1525ms)
+    ✓ MaxGraphSQL;n=512 (1498ms)
+    ✓ MaxGraphSQL;n=1024 (1506ms)
+    ✓ MaxGraphSQL;n=2048 (1578ms)
+    ✓ MaxGraphSQL;n=4096 (1697ms)
+    ✓ MaxGraphSQL;n=8192 (2242ms)
+    ✓ MaxGraphSQL;n=16384 (3751ms)
+    ✓ MaxGraphSQL;n=32768 (8990ms)
+    ✓ MaxGraphSQL;n=65536 (28274ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test
new file mode 100644
index 0000000000000000000000000000000000000000..f165ec3e62481b6cbb277e573a05e6002cb005a6
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2106ms)
+    ✓ MaxGraphSQL;n=32 (1569ms)
+    ✓ MaxGraphSQL;n=64 (1546ms)
+    ✓ MaxGraphSQL;n=128 (1546ms)
+    ✓ MaxGraphSQL;n=256 (1556ms)
+    ✓ MaxGraphSQL;n=512 (1562ms)
+    ✓ MaxGraphSQL;n=1024 (1577ms)
+    ✓ MaxGraphSQL;n=2048 (1656ms)
+    ✓ MaxGraphSQL;n=4096 (1782ms)
+    ✓ MaxGraphSQL;n=8192 (2195ms)
+    ✓ MaxGraphSQL;n=16384 (3540ms)
+    ✓ MaxGraphSQL;n=32768 (8329ms)
+    ✓ MaxGraphSQL;n=65536 (27159ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test
new file mode 100644
index 0000000000000000000000000000000000000000..8958e4edc0949a20c02fcfff5d9d7eceb2a2ac07
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1948ms)
+    ✓ MaxGraphSQL;n=32 (1476ms)
+    ✓ MaxGraphSQL;n=64 (1454ms)
+    ✓ MaxGraphSQL;n=128 (1463ms)
+    ✓ MaxGraphSQL;n=256 (1501ms)
+    ✓ MaxGraphSQL;n=512 (1569ms)
+    ✓ MaxGraphSQL;n=1024 (1589ms)
+    ✓ MaxGraphSQL;n=2048 (1655ms)
+    ✓ MaxGraphSQL;n=4096 (1789ms)
+    ✓ MaxGraphSQL;n=8192 (2189ms)
+    ✓ MaxGraphSQL;n=16384 (3557ms)
+    ✓ MaxGraphSQL;n=32768 (8160ms)
+    ✓ MaxGraphSQL;n=65536 (25754ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test
new file mode 100644
index 0000000000000000000000000000000000000000..8f48c783faeca6eb2cab104f448b9bba6d0f093f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2063ms)
+    ✓ MaxGraphSQL;n=32 (1528ms)
+    ✓ MaxGraphSQL;n=64 (1512ms)
+    ✓ MaxGraphSQL;n=128 (1511ms)
+    ✓ MaxGraphSQL;n=256 (1517ms)
+    ✓ MaxGraphSQL;n=512 (1523ms)
+    ✓ MaxGraphSQL;n=1024 (1551ms)
+    ✓ MaxGraphSQL;n=2048 (1595ms)
+    ✓ MaxGraphSQL;n=4096 (1734ms)
+    ✓ MaxGraphSQL;n=8192 (2098ms)
+    ✓ MaxGraphSQL;n=16384 (3410ms)
+    ✓ MaxGraphSQL;n=32768 (7825ms)
+    ✓ MaxGraphSQL;n=65536 (24714ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test
new file mode 100644
index 0000000000000000000000000000000000000000..acb94312e723fc589fe6f4805808d9f57cd3bff8
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2247ms)
+    ✓ MaxGraphSQL;n=32 (1647ms)
+    ✓ MaxGraphSQL;n=64 (1625ms)
+    ✓ MaxGraphSQL;n=128 (1629ms)
+    ✓ MaxGraphSQL;n=256 (1646ms)
+    ✓ MaxGraphSQL;n=512 (1729ms)
+    ✓ MaxGraphSQL;n=1024 (1751ms)
+    ✓ MaxGraphSQL;n=2048 (1853ms)
+    ✓ MaxGraphSQL;n=4096 (1971ms)
+    ✓ MaxGraphSQL;n=8192 (2414ms)
+    ✓ MaxGraphSQL;n=16384 (3998ms)
+    ✓ MaxGraphSQL;n=32768 (9270ms)
+    ✓ MaxGraphSQL;n=65536 (28880ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test
new file mode 100644
index 0000000000000000000000000000000000000000..4c4804ae3c90504f0360b2071cc66dc85a6fb93d
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2173ms)
+    ✓ MaxGraphSQL;n=32 (1614ms)
+    ✓ MaxGraphSQL;n=64 (1591ms)
+    ✓ MaxGraphSQL;n=128 (1603ms)
+    ✓ MaxGraphSQL;n=256 (1595ms)
+    ✓ MaxGraphSQL;n=512 (1614ms)
+    ✓ MaxGraphSQL;n=1024 (1607ms)
+    ✓ MaxGraphSQL;n=2048 (1681ms)
+    ✓ MaxGraphSQL;n=4096 (1809ms)
+    ✓ MaxGraphSQL;n=8192 (2176ms)
+    ✓ MaxGraphSQL;n=16384 (3472ms)
+    ✓ MaxGraphSQL;n=32768 (7689ms)
+    ✓ MaxGraphSQL;n=65536 (23584ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test
new file mode 100644
index 0000000000000000000000000000000000000000..37c8a563a347a2fe302cd2cedbcdbf0b93bab3c8
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2112ms)
+    ✓ MaxGraphSQL;n=32 (1661ms)
+    ✓ MaxGraphSQL;n=64 (1647ms)
+    ✓ MaxGraphSQL;n=128 (1646ms)
+    ✓ MaxGraphSQL;n=256 (1621ms)
+    ✓ MaxGraphSQL;n=512 (1665ms)
+    ✓ MaxGraphSQL;n=1024 (1678ms)
+    ✓ MaxGraphSQL;n=2048 (1741ms)
+    ✓ MaxGraphSQL;n=4096 (1855ms)
+    ✓ MaxGraphSQL;n=8192 (2255ms)
+    ✓ MaxGraphSQL;n=16384 (3537ms)
+    ✓ MaxGraphSQL;n=32768 (7892ms)
+    ✓ MaxGraphSQL;n=65536 (24359ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test
new file mode 100644
index 0000000000000000000000000000000000000000..e44cf26edd484974a66459910cfa268614389fb9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2252ms)
+    ✓ MaxGraphSQL;n=32 (1679ms)
+    ✓ MaxGraphSQL;n=64 (1689ms)
+    ✓ MaxGraphSQL;n=128 (1675ms)
+    ✓ MaxGraphSQL;n=256 (1707ms)
+    ✓ MaxGraphSQL;n=512 (1774ms)
+    ✓ MaxGraphSQL;n=1024 (1709ms)
+    ✓ MaxGraphSQL;n=2048 (1777ms)
+    ✓ MaxGraphSQL;n=4096 (1950ms)
+    ✓ MaxGraphSQL;n=8192 (2400ms)
+    ✓ MaxGraphSQL;n=16384 (3751ms)
+    ✓ MaxGraphSQL;n=32768 (8353ms)
+    ✓ MaxGraphSQL;n=65536 (26054ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test
new file mode 100644
index 0000000000000000000000000000000000000000..3a6d6347cc0b58622b6e76080e60d42a61a34931
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2018ms)
+    ✓ MaxGraphSQL;n=32 (1514ms)
+    ✓ MaxGraphSQL;n=64 (1497ms)
+    ✓ MaxGraphSQL;n=128 (1510ms)
+    ✓ MaxGraphSQL;n=256 (1594ms)
+    ✓ MaxGraphSQL;n=512 (1624ms)
+    ✓ MaxGraphSQL;n=1024 (1628ms)
+    ✓ MaxGraphSQL;n=2048 (1715ms)
+    ✓ MaxGraphSQL;n=4096 (1841ms)
+    ✓ MaxGraphSQL;n=8192 (2279ms)
+    ✓ MaxGraphSQL;n=16384 (3708ms)
+    ✓ MaxGraphSQL;n=32768 (8674ms)
+    ✓ MaxGraphSQL;n=65536 (27478ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..8d80abd48ad88da5e95dd5936ca6a5651121e33c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2285ms)
+    ✓ MaxGraphSQL;n=32 (2303ms)
+    ✓ MaxGraphSQL;n=64 (3536ms)
+    ✓ MaxGraphSQL;n=128 (1977ms)
+    ✓ MaxGraphSQL;n=256 (1685ms)
+    ✓ MaxGraphSQL;n=512 (1666ms)
+    ✓ MaxGraphSQL;n=1024 (1690ms)
+    ✓ MaxGraphSQL;n=2048 (1760ms)
+    ✓ MaxGraphSQL;n=4096 (1919ms)
+    ✓ MaxGraphSQL;n=8192 (2288ms)
+    ✓ MaxGraphSQL;n=16384 (3797ms)
+    ✓ MaxGraphSQL;n=32768 (9350ms)
+    ✓ MaxGraphSQL;n=65536 (25859ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test
new file mode 100644
index 0000000000000000000000000000000000000000..dc8bdfde9f47b2b033601cfb4dc457a6f5f4d40f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2004ms)
+    ✓ MaxGraphSQL;n=32 (1522ms)
+    ✓ MaxGraphSQL;n=64 (1512ms)
+    ✓ MaxGraphSQL;n=128 (1518ms)
+    ✓ MaxGraphSQL;n=256 (1685ms)
+    ✓ MaxGraphSQL;n=512 (1695ms)
+    ✓ MaxGraphSQL;n=1024 (1712ms)
+    ✓ MaxGraphSQL;n=2048 (1794ms)
+    ✓ MaxGraphSQL;n=4096 (1926ms)
+    ✓ MaxGraphSQL;n=8192 (2382ms)
+    ✓ MaxGraphSQL;n=16384 (3896ms)
+    ✓ MaxGraphSQL;n=32768 (9210ms)
+    ✓ MaxGraphSQL;n=65536 (29202ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..a33c985e058e13c6d3ac0a62969900331f7a6e81
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2306ms)
+    ✓ MaxGraphSQL;n=32 (2140ms)
+    ✓ MaxGraphSQL;n=64 (3079ms)
+    ✓ MaxGraphSQL;n=128 (2013ms)
+    ✓ MaxGraphSQL;n=256 (1687ms)
+    ✓ MaxGraphSQL;n=512 (1673ms)
+    ✓ MaxGraphSQL;n=1024 (1636ms)
+    ✓ MaxGraphSQL;n=2048 (1763ms)
+    ✓ MaxGraphSQL;n=4096 (1904ms)
+    ✓ MaxGraphSQL;n=8192 (2296ms)
+    ✓ MaxGraphSQL;n=16384 (3691ms)
+    ✓ MaxGraphSQL;n=32768 (8881ms)
+    ✓ MaxGraphSQL;n=65536 (29052ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..00316c54ab0ab943acc60ef8571b544bd25294bb
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2151ms)
+    ✓ MaxGraphSQL;n=32 (1591ms)
+    ✓ MaxGraphSQL;n=64 (1573ms)
+    ✓ MaxGraphSQL;n=128 (1667ms)
+    ✓ MaxGraphSQL;n=256 (1693ms)
+    ✓ MaxGraphSQL;n=512 (1589ms)
+    ✓ MaxGraphSQL;n=1024 (1603ms)
+    ✓ MaxGraphSQL;n=2048 (2147ms)
+    ✓ MaxGraphSQL;n=4096 (4105ms)
+    ✓ MaxGraphSQL;n=8192 (2368ms)
+    ✓ MaxGraphSQL;n=16384 (3669ms)
+    ✓ MaxGraphSQL;n=32768 (8649ms)
+    ✓ MaxGraphSQL;n=65536 (30572ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..22550ec33252fa410789c7f8f402b29f3715eafd
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2206ms)
+    ✓ MaxGraphSQL;n=32 (2364ms)
+    ✓ MaxGraphSQL;n=64 (3984ms)
+    ✓ MaxGraphSQL;n=128 (1817ms)
+    ✓ MaxGraphSQL;n=256 (1642ms)
+    ✓ MaxGraphSQL;n=512 (1617ms)
+    ✓ MaxGraphSQL;n=1024 (1655ms)
+    ✓ MaxGraphSQL;n=2048 (1652ms)
+    ✓ MaxGraphSQL;n=4096 (1892ms)
+    ✓ MaxGraphSQL;n=8192 (2302ms)
+    ✓ MaxGraphSQL;n=16384 (3744ms)
+    ✓ MaxGraphSQL;n=32768 (9287ms)
+    ✓ MaxGraphSQL;n=65536 (31261ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..df0649ecb30e31e5e97356c0e28805c857ac171e
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2293ms)
+    ✓ MaxGraphSQL;n=32 (2175ms)
+    ✓ MaxGraphSQL;n=64 (3502ms)
+    ✓ MaxGraphSQL;n=128 (1936ms)
+    ✓ MaxGraphSQL;n=256 (1628ms)
+    ✓ MaxGraphSQL;n=512 (1615ms)
+    ✓ MaxGraphSQL;n=1024 (1636ms)
+    ✓ MaxGraphSQL;n=2048 (1723ms)
+    ✓ MaxGraphSQL;n=4096 (1863ms)
+    ✓ MaxGraphSQL;n=8192 (2315ms)
+    ✓ MaxGraphSQL;n=16384 (3832ms)
+    ✓ MaxGraphSQL;n=32768 (9602ms)
+    ✓ MaxGraphSQL;n=65536 (31594ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..6dab338505244bfd5d2c844d49e74e47932455fc
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2062ms)
+    ✓ MaxGraphSQL;n=32 (2011ms)
+    ✓ MaxGraphSQL;n=64 (3065ms)
+    ✓ MaxGraphSQL;n=128 (1815ms)
+    ✓ MaxGraphSQL;n=256 (1579ms)
+    ✓ MaxGraphSQL;n=512 (1614ms)
+    ✓ MaxGraphSQL;n=1024 (1631ms)
+    ✓ MaxGraphSQL;n=2048 (1700ms)
+    ✓ MaxGraphSQL;n=4096 (1866ms)
+    ✓ MaxGraphSQL;n=8192 (2102ms)
+    ✓ MaxGraphSQL;n=16384 (3293ms)
+    ✓ MaxGraphSQL;n=32768 (7068ms)
+    ✓ MaxGraphSQL;n=65536 (24823ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..a9432b4f84500854adde1994c65c1fc5b03e7507
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2151ms)
+    ✓ MaxGraphSQL;n=32 (2065ms)
+    ✓ MaxGraphSQL;n=64 (2988ms)
+    ✓ MaxGraphSQL;n=128 (1863ms)
+    ✓ MaxGraphSQL;n=256 (1579ms)
+    ✓ MaxGraphSQL;n=512 (1565ms)
+    ✓ MaxGraphSQL;n=1024 (1572ms)
+    ✓ MaxGraphSQL;n=2048 (1644ms)
+    ✓ MaxGraphSQL;n=4096 (1771ms)
+    ✓ MaxGraphSQL;n=8192 (2156ms)
+    ✓ MaxGraphSQL;n=16384 (3479ms)
+    ✓ MaxGraphSQL;n=32768 (8470ms)
+    ✓ MaxGraphSQL;n=65536 (26928ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..d9f80db448a0d312b339197a5250e0abfbad3326
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2078ms)
+    ✓ MaxGraphSQL;n=32 (1519ms)
+    ✓ MaxGraphSQL;n=64 (1501ms)
+    ✓ MaxGraphSQL;n=128 (1506ms)
+    ✓ MaxGraphSQL;n=256 (1537ms)
+    ✓ MaxGraphSQL;n=512 (1553ms)
+    ✓ MaxGraphSQL;n=1024 (1683ms)
+    ✓ MaxGraphSQL;n=2048 (2375ms)
+    ✓ MaxGraphSQL;n=4096 (3076ms)
+    ✓ MaxGraphSQL;n=8192 (2267ms)
+    ✓ MaxGraphSQL;n=16384 (3771ms)
+    ✓ MaxGraphSQL;n=32768 (9112ms)
+    ✓ MaxGraphSQL;n=65536 (31459ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test
new file mode 100644
index 0000000000000000000000000000000000000000..bddce31e9aaddd7dc440a2adff7d8c571762d919
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2176ms)
+    ✓ MaxGraphSQL;n=32 (1692ms)
+    ✓ MaxGraphSQL;n=64 (1683ms)
+    ✓ MaxGraphSQL;n=128 (1851ms)
+    ✓ MaxGraphSQL;n=256 (1749ms)
+    ✓ MaxGraphSQL;n=512 (1730ms)
+    ✓ MaxGraphSQL;n=1024 (1755ms)
+    ✓ MaxGraphSQL;n=2048 (1833ms)
+    ✓ MaxGraphSQL;n=4096 (1982ms)
+    ✓ MaxGraphSQL;n=8192 (2397ms)
+    ✓ MaxGraphSQL;n=16384 (7400ms)
+    ✓ MaxGraphSQL;n=32768 (9464ms)
+    ✓ MaxGraphSQL;n=65536 (30932ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test
new file mode 100644
index 0000000000000000000000000000000000000000..cd1ab20aff92a44b9b0012af8e440bceb4fb8fbb
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2068ms)
+    ✓ MaxGraphSQL;n=32 (1524ms)
+    ✓ MaxGraphSQL;n=64 (1509ms)
+    ✓ MaxGraphSQL;n=128 (1516ms)
+    ✓ MaxGraphSQL;n=256 (1545ms)
+    ✓ MaxGraphSQL;n=512 (1783ms)
+    ✓ MaxGraphSQL;n=1024 (2174ms)
+    ✓ MaxGraphSQL;n=2048 (3959ms)
+    ✓ MaxGraphSQL;n=4096 (2038ms)
+    ✓ MaxGraphSQL;n=8192 (2162ms)
+    ✓ MaxGraphSQL;n=16384 (3654ms)
+    ✓ MaxGraphSQL;n=32768 (8246ms)
+    ✓ MaxGraphSQL;n=65536 (29949ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test
new file mode 100644
index 0000000000000000000000000000000000000000..fbfb9a696816f30676ba2b0fcbc7414e056ddd4e
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2145ms)
+    ✓ MaxGraphSQL;n=32 (2114ms)
+    ✓ MaxGraphSQL;n=64 (3181ms)
+    ✓ MaxGraphSQL;n=128 (1707ms)
+    ✓ MaxGraphSQL;n=256 (1592ms)
+    ✓ MaxGraphSQL;n=512 (1536ms)
+    ✓ MaxGraphSQL;n=1024 (1551ms)
+    ✓ MaxGraphSQL;n=2048 (1619ms)
+    ✓ MaxGraphSQL;n=4096 (1764ms)
+    ✓ MaxGraphSQL;n=8192 (2156ms)
+    ✓ MaxGraphSQL;n=16384 (3551ms)
+    ✓ MaxGraphSQL;n=32768 (8830ms)
+    ✓ MaxGraphSQL;n=65536 (26690ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test
new file mode 100644
index 0000000000000000000000000000000000000000..d243d7cac630fab96146ada42f67f9c4d192be7f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2269ms)
+    ✓ MaxGraphSQL;n=32 (2224ms)
+    ✓ MaxGraphSQL;n=64 (3538ms)
+    ✓ MaxGraphSQL;n=128 (1668ms)
+    ✓ MaxGraphSQL;n=256 (1545ms)
+    ✓ MaxGraphSQL;n=512 (1543ms)
+    ✓ MaxGraphSQL;n=1024 (1561ms)
+    ✓ MaxGraphSQL;n=2048 (1623ms)
+    ✓ MaxGraphSQL;n=4096 (1750ms)
+    ✓ MaxGraphSQL;n=8192 (2116ms)
+    ✓ MaxGraphSQL;n=16384 (3250ms)
+    ✓ MaxGraphSQL;n=32768 (7561ms)
+    ✓ MaxGraphSQL;n=65536 (29095ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test
new file mode 100644
index 0000000000000000000000000000000000000000..4886e9f85ee047e78a623c6572747c5b6781d1d7
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2101ms)
+    ✓ MaxGraphSQL;n=32 (1988ms)
+    ✓ MaxGraphSQL;n=64 (2917ms)
+    ✓ MaxGraphSQL;n=128 (1751ms)
+    ✓ MaxGraphSQL;n=256 (1811ms)
+    ✓ MaxGraphSQL;n=512 (1657ms)
+    ✓ MaxGraphSQL;n=1024 (1529ms)
+    ✓ MaxGraphSQL;n=2048 (1599ms)
+    ✓ MaxGraphSQL;n=4096 (1738ms)
+    ✓ MaxGraphSQL;n=8192 (2111ms)
+    ✓ MaxGraphSQL;n=16384 (3764ms)
+    ✓ MaxGraphSQL;n=32768 (9491ms)
+    ✓ MaxGraphSQL;n=65536 (30038ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test
new file mode 100644
index 0000000000000000000000000000000000000000..fcf5966a4389a544575259676741be61a8639410
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2076ms)
+    ✓ MaxGraphSQL;n=32 (1536ms)
+    ✓ MaxGraphSQL;n=64 (1514ms)
+    ✓ MaxGraphSQL;n=128 (1528ms)
+    ✓ MaxGraphSQL;n=256 (1555ms)
+    ✓ MaxGraphSQL;n=512 (1540ms)
+    ✓ MaxGraphSQL;n=1024 (1548ms)
+    ✓ MaxGraphSQL;n=2048 (1641ms)
+    ✓ MaxGraphSQL;n=4096 (1755ms)
+    ✓ MaxGraphSQL;n=8192 (4414ms)
+    ✓ MaxGraphSQL;n=16384 (3556ms)
+    ✓ MaxGraphSQL;n=32768 (8170ms)
+    ✓ MaxGraphSQL;n=65536 (28657ms)
+
+
+  13 passing (60s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test
new file mode 100644
index 0000000000000000000000000000000000000000..407278b4b6125a68a08b9d3f0f400e617414501b
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2083ms)
+    ✓ MaxGraphSQL;n=32 (2039ms)
+    ✓ MaxGraphSQL;n=64 (3120ms)
+    ✓ MaxGraphSQL;n=128 (1805ms)
+    ✓ MaxGraphSQL;n=256 (1498ms)
+    ✓ MaxGraphSQL;n=512 (1477ms)
+    ✓ MaxGraphSQL;n=1024 (1495ms)
+    ✓ MaxGraphSQL;n=2048 (1562ms)
+    ✓ MaxGraphSQL;n=4096 (1693ms)
+    ✓ MaxGraphSQL;n=8192 (2089ms)
+    ✓ MaxGraphSQL;n=16384 (3469ms)
+    ✓ MaxGraphSQL;n=32768 (8780ms)
+    ✓ MaxGraphSQL;n=65536 (30039ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test
new file mode 100644
index 0000000000000000000000000000000000000000..b5246aff2d197612e1a7c28cdaf0ac5b55709f57
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2095ms)
+    ✓ MaxGraphSQL;n=32 (1522ms)
+    ✓ MaxGraphSQL;n=64 (1506ms)
+    ✓ MaxGraphSQL;n=128 (1535ms)
+    ✓ MaxGraphSQL;n=256 (1732ms)
+    ✓ MaxGraphSQL;n=512 (1530ms)
+    ✓ MaxGraphSQL;n=1024 (1901ms)
+    ✓ MaxGraphSQL;n=2048 (3124ms)
+    ✓ MaxGraphSQL;n=4096 (2230ms)
+    ✓ MaxGraphSQL;n=8192 (2170ms)
+    ✓ MaxGraphSQL;n=16384 (3554ms)
+    ✓ MaxGraphSQL;n=32768 (7641ms)
+    ✓ MaxGraphSQL;n=65536 (27210ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test
new file mode 100644
index 0000000000000000000000000000000000000000..2effd9736b669d00a5628e4adc15e9b0507a5786
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2309ms)
+    ✓ MaxGraphSQL;n=32 (2145ms)
+    ✓ MaxGraphSQL;n=64 (3053ms)
+    ✓ MaxGraphSQL;n=128 (1907ms)
+    ✓ MaxGraphSQL;n=256 (1663ms)
+    ✓ MaxGraphSQL;n=512 (1660ms)
+    ✓ MaxGraphSQL;n=1024 (1677ms)
+    ✓ MaxGraphSQL;n=2048 (1757ms)
+    ✓ MaxGraphSQL;n=4096 (1984ms)
+    ✓ MaxGraphSQL;n=8192 (2481ms)
+    ✓ MaxGraphSQL;n=16384 (3700ms)
+    ✓ MaxGraphSQL;n=32768 (9169ms)
+    ✓ MaxGraphSQL;n=65536 (29656ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..aa1f0965667f1fbfa343782b784a02542c814034
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2186ms)
+    ✓ MaxGraphSQL;n=32 (2019ms)
+    ✓ MaxGraphSQL;n=64 (2992ms)
+    ✓ MaxGraphSQL;n=128 (1769ms)
+    ✓ MaxGraphSQL;n=256 (1536ms)
+    ✓ MaxGraphSQL;n=512 (1524ms)
+    ✓ MaxGraphSQL;n=1024 (1546ms)
+    ✓ MaxGraphSQL;n=2048 (1632ms)
+    ✓ MaxGraphSQL;n=4096 (1812ms)
+    ✓ MaxGraphSQL;n=8192 (2175ms)
+    ✓ MaxGraphSQL;n=16384 (3640ms)
+    ✓ MaxGraphSQL;n=32768 (9083ms)
+    ✓ MaxGraphSQL;n=65536 (26993ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test
new file mode 100644
index 0000000000000000000000000000000000000000..09f8cfe781e36e021a6565bb825a5b0ce4ccb596
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2133ms)
+    ✓ MaxGraphSQL;n=32 (1609ms)
+    ✓ MaxGraphSQL;n=64 (1582ms)
+    ✓ MaxGraphSQL;n=128 (1576ms)
+    ✓ MaxGraphSQL;n=256 (1590ms)
+    ✓ MaxGraphSQL;n=512 (1620ms)
+    ✓ MaxGraphSQL;n=1024 (1666ms)
+    ✓ MaxGraphSQL;n=2048 (1684ms)
+    ✓ MaxGraphSQL;n=4096 (1822ms)
+    ✓ MaxGraphSQL;n=8192 (5337ms)
+    ✓ MaxGraphSQL;n=16384 (3592ms)
+    ✓ MaxGraphSQL;n=32768 (9441ms)
+    ✓ MaxGraphSQL;n=65536 (31789ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test
new file mode 100644
index 0000000000000000000000000000000000000000..0998acf13d7dec348539c7f3c3529e42d10a2b87
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2218ms)
+    ✓ MaxGraphSQL;n=32 (2190ms)
+    ✓ MaxGraphSQL;n=64 (3224ms)
+    ✓ MaxGraphSQL;n=128 (1923ms)
+    ✓ MaxGraphSQL;n=256 (1584ms)
+    ✓ MaxGraphSQL;n=512 (1583ms)
+    ✓ MaxGraphSQL;n=1024 (1599ms)
+    ✓ MaxGraphSQL;n=2048 (1673ms)
+    ✓ MaxGraphSQL;n=4096 (1823ms)
+    ✓ MaxGraphSQL;n=8192 (2254ms)
+    ✓ MaxGraphSQL;n=16384 (3735ms)
+    ✓ MaxGraphSQL;n=32768 (9363ms)
+    ✓ MaxGraphSQL;n=65536 (26408ms)
+
+
+  13 passing (60s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test
new file mode 100644
index 0000000000000000000000000000000000000000..8c8c666ea5e43e48f39013a5355e1d565df4b785
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2196ms)
+    ✓ MaxGraphSQL;n=32 (2260ms)
+    ✓ MaxGraphSQL;n=64 (3685ms)
+    ✓ MaxGraphSQL;n=128 (1906ms)
+    ✓ MaxGraphSQL;n=256 (1577ms)
+    ✓ MaxGraphSQL;n=512 (1584ms)
+    ✓ MaxGraphSQL;n=1024 (1609ms)
+    ✓ MaxGraphSQL;n=2048 (1690ms)
+    ✓ MaxGraphSQL;n=4096 (1815ms)
+    ✓ MaxGraphSQL;n=8192 (2218ms)
+    ✓ MaxGraphSQL;n=16384 (3581ms)
+    ✓ MaxGraphSQL;n=32768 (8460ms)
+    ✓ MaxGraphSQL;n=65536 (29570ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test
new file mode 100644
index 0000000000000000000000000000000000000000..6ea9c38ac58aa6235e4208b9262ffe136fec3fe2
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2164ms)
+    ✓ MaxGraphSQL;n=32 (2121ms)
+    ✓ MaxGraphSQL;n=64 (3404ms)
+    ✓ MaxGraphSQL;n=128 (1780ms)
+    ✓ MaxGraphSQL;n=256 (1540ms)
+    ✓ MaxGraphSQL;n=512 (1521ms)
+    ✓ MaxGraphSQL;n=1024 (1561ms)
+    ✓ MaxGraphSQL;n=2048 (1646ms)
+    ✓ MaxGraphSQL;n=4096 (1787ms)
+    ✓ MaxGraphSQL;n=8192 (2234ms)
+    ✓ MaxGraphSQL;n=16384 (3696ms)
+    ✓ MaxGraphSQL;n=32768 (8895ms)
+    ✓ MaxGraphSQL;n=65536 (31566ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test
new file mode 100644
index 0000000000000000000000000000000000000000..46948595c7ec6982598d494e0995fa3b929676f3
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2188ms)
+    ✓ MaxGraphSQL;n=32 (2045ms)
+    ✓ MaxGraphSQL;n=64 (3163ms)
+    ✓ MaxGraphSQL;n=128 (1677ms)
+    ✓ MaxGraphSQL;n=256 (1582ms)
+    ✓ MaxGraphSQL;n=512 (1582ms)
+    ✓ MaxGraphSQL;n=1024 (1598ms)
+    ✓ MaxGraphSQL;n=2048 (1684ms)
+    ✓ MaxGraphSQL;n=4096 (1820ms)
+    ✓ MaxGraphSQL;n=8192 (2230ms)
+    ✓ MaxGraphSQL;n=16384 (3710ms)
+    ✓ MaxGraphSQL;n=32768 (8883ms)
+    ✓ MaxGraphSQL;n=65536 (30540ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test
new file mode 100644
index 0000000000000000000000000000000000000000..fd80e1e6bd6110704c43939d57f198e847ecc7d8
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2009ms)
+    ✓ MaxGraphSQL;n=32 (2042ms)
+    ✓ MaxGraphSQL;n=64 (3081ms)
+    ✓ MaxGraphSQL;n=128 (1703ms)
+    ✓ MaxGraphSQL;n=256 (1525ms)
+    ✓ MaxGraphSQL;n=512 (1474ms)
+    ✓ MaxGraphSQL;n=1024 (1496ms)
+    ✓ MaxGraphSQL;n=2048 (1554ms)
+    ✓ MaxGraphSQL;n=4096 (1676ms)
+    ✓ MaxGraphSQL;n=8192 (2039ms)
+    ✓ MaxGraphSQL;n=16384 (3207ms)
+    ✓ MaxGraphSQL;n=32768 (7335ms)
+    ✓ MaxGraphSQL;n=65536 (25142ms)
+
+
+  13 passing (55s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test
new file mode 100644
index 0000000000000000000000000000000000000000..57d4391cba2e6f075307da765d43fa1813eb40c6
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2344ms)
+    ✓ MaxGraphSQL;n=32 (2447ms)
+    ✓ MaxGraphSQL;n=64 (3797ms)
+    ✓ MaxGraphSQL;n=128 (1687ms)
+    ✓ MaxGraphSQL;n=256 (1616ms)
+    ✓ MaxGraphSQL;n=512 (1631ms)
+    ✓ MaxGraphSQL;n=1024 (1649ms)
+    ✓ MaxGraphSQL;n=2048 (1732ms)
+    ✓ MaxGraphSQL;n=4096 (1877ms)
+    ✓ MaxGraphSQL;n=8192 (2276ms)
+    ✓ MaxGraphSQL;n=16384 (3794ms)
+    ✓ MaxGraphSQL;n=32768 (8778ms)
+    ✓ MaxGraphSQL;n=65536 (27386ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test
new file mode 100644
index 0000000000000000000000000000000000000000..3091650f6b221ab9e9765600e26fc7fdaf78cf9c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2055ms)
+    ✓ MaxGraphSQL;n=32 (1540ms)
+    ✓ MaxGraphSQL;n=64 (1520ms)
+    ✓ MaxGraphSQL;n=128 (1541ms)
+    ✓ MaxGraphSQL;n=256 (1579ms)
+    ✓ MaxGraphSQL;n=512 (1568ms)
+    ✓ MaxGraphSQL;n=1024 (1560ms)
+    ✓ MaxGraphSQL;n=2048 (1628ms)
+    ✓ MaxGraphSQL;n=4096 (1774ms)
+    ✓ MaxGraphSQL;n=8192 (4898ms)
+    ✓ MaxGraphSQL;n=16384 (3819ms)
+    ✓ MaxGraphSQL;n=32768 (9031ms)
+    ✓ MaxGraphSQL;n=65536 (31225ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test
new file mode 100644
index 0000000000000000000000000000000000000000..42ade486cb69b63d9dee765073cdf1c4ae9c8dd1
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2287ms)
+    ✓ MaxGraphSQL;n=32 (2229ms)
+    ✓ MaxGraphSQL;n=64 (3443ms)
+    ✓ MaxGraphSQL;n=128 (1945ms)
+    ✓ MaxGraphSQL;n=256 (1674ms)
+    ✓ MaxGraphSQL;n=512 (1666ms)
+    ✓ MaxGraphSQL;n=1024 (1672ms)
+    ✓ MaxGraphSQL;n=2048 (1867ms)
+    ✓ MaxGraphSQL;n=4096 (1994ms)
+    ✓ MaxGraphSQL;n=8192 (2397ms)
+    ✓ MaxGraphSQL;n=16384 (3948ms)
+    ✓ MaxGraphSQL;n=32768 (9954ms)
+    ✓ MaxGraphSQL;n=65536 (25650ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test
new file mode 100644
index 0000000000000000000000000000000000000000..b7f46824eff97e5f112877700a7d59778c7f6b5b
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2030ms)
+    ✓ MaxGraphSQL;n=32 (1551ms)
+    ✓ MaxGraphSQL;n=64 (1522ms)
+    ✓ MaxGraphSQL;n=128 (1534ms)
+    ✓ MaxGraphSQL;n=256 (1558ms)
+    ✓ MaxGraphSQL;n=512 (1576ms)
+    ✓ MaxGraphSQL;n=1024 (1561ms)
+    ✓ MaxGraphSQL;n=2048 (1634ms)
+    ✓ MaxGraphSQL;n=4096 (1777ms)
+    ✓ MaxGraphSQL;n=8192 (4848ms)
+    ✓ MaxGraphSQL;n=16384 (3536ms)
+    ✓ MaxGraphSQL;n=32768 (8150ms)
+    ✓ MaxGraphSQL;n=65536 (27357ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..cfe920afacc9278738e57be8971e2bd987ff4fd3
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2116ms)
+    ✓ MaxGraphSQL;n=32 (1975ms)
+    ✓ MaxGraphSQL;n=64 (2865ms)
+    ✓ MaxGraphSQL;n=128 (1763ms)
+    ✓ MaxGraphSQL;n=256 (1867ms)
+    ✓ MaxGraphSQL;n=512 (1514ms)
+    ✓ MaxGraphSQL;n=1024 (1547ms)
+    ✓ MaxGraphSQL;n=2048 (1611ms)
+    ✓ MaxGraphSQL;n=4096 (1747ms)
+    ✓ MaxGraphSQL;n=8192 (2154ms)
+    ✓ MaxGraphSQL;n=16384 (3560ms)
+    ✓ MaxGraphSQL;n=32768 (8869ms)
+    ✓ MaxGraphSQL;n=65536 (29640ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test
new file mode 100644
index 0000000000000000000000000000000000000000..7f69ec839e56c95cd25f5db955f40c834d08bf4c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2141ms)
+    ✓ MaxGraphSQL;n=32 (2050ms)
+    ✓ MaxGraphSQL;n=64 (2991ms)
+    ✓ MaxGraphSQL;n=128 (1843ms)
+    ✓ MaxGraphSQL;n=256 (1574ms)
+    ✓ MaxGraphSQL;n=512 (1621ms)
+    ✓ MaxGraphSQL;n=1024 (1643ms)
+    ✓ MaxGraphSQL;n=2048 (1700ms)
+    ✓ MaxGraphSQL;n=4096 (1846ms)
+    ✓ MaxGraphSQL;n=8192 (2245ms)
+    ✓ MaxGraphSQL;n=16384 (3484ms)
+    ✓ MaxGraphSQL;n=32768 (8182ms)
+    ✓ MaxGraphSQL;n=65536 (26598ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test
new file mode 100644
index 0000000000000000000000000000000000000000..496b5129ef945c288349d1fd80510f8fd1f8d817
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2092ms)
+    ✓ MaxGraphSQL;n=32 (1814ms)
+    ✓ MaxGraphSQL;n=64 (1771ms)
+    ✓ MaxGraphSQL;n=128 (1773ms)
+    ✓ MaxGraphSQL;n=256 (1633ms)
+    ✓ MaxGraphSQL;n=512 (1795ms)
+    ✓ MaxGraphSQL;n=1024 (1789ms)
+    ✓ MaxGraphSQL;n=2048 (1885ms)
+    ✓ MaxGraphSQL;n=4096 (2017ms)
+    ✓ MaxGraphSQL;n=8192 (2463ms)
+    ✓ MaxGraphSQL;n=16384 (4002ms)
+    ✓ MaxGraphSQL;n=32768 (9242ms)
+    ✓ MaxGraphSQL;n=65536 (28704ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test
new file mode 100644
index 0000000000000000000000000000000000000000..308b68b5e0f3ce1524d97974cf8146496ed7766f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2219ms)
+    ✓ MaxGraphSQL;n=32 (1706ms)
+    ✓ MaxGraphSQL;n=64 (1678ms)
+    ✓ MaxGraphSQL;n=128 (1674ms)
+    ✓ MaxGraphSQL;n=256 (1693ms)
+    ✓ MaxGraphSQL;n=512 (1798ms)
+    ✓ MaxGraphSQL;n=1024 (1795ms)
+    ✓ MaxGraphSQL;n=2048 (1893ms)
+    ✓ MaxGraphSQL;n=4096 (2013ms)
+    ✓ MaxGraphSQL;n=8192 (2461ms)
+    ✓ MaxGraphSQL;n=16384 (4022ms)
+    ✓ MaxGraphSQL;n=32768 (9267ms)
+    ✓ MaxGraphSQL;n=65536 (28679ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test
new file mode 100644
index 0000000000000000000000000000000000000000..abac223c315ef5edb651e19a54e0ba38eebb6301
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2128ms)
+    ✓ MaxGraphSQL;n=32 (1581ms)
+    ✓ MaxGraphSQL;n=64 (1567ms)
+    ✓ MaxGraphSQL;n=128 (1573ms)
+    ✓ MaxGraphSQL;n=256 (1580ms)
+    ✓ MaxGraphSQL;n=512 (1597ms)
+    ✓ MaxGraphSQL;n=1024 (1605ms)
+    ✓ MaxGraphSQL;n=2048 (1683ms)
+    ✓ MaxGraphSQL;n=4096 (1803ms)
+    ✓ MaxGraphSQL;n=8192 (2203ms)
+    ✓ MaxGraphSQL;n=16384 (3637ms)
+    ✓ MaxGraphSQL;n=32768 (8342ms)
+    ✓ MaxGraphSQL;n=65536 (26697ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test
new file mode 100644
index 0000000000000000000000000000000000000000..4ef661042f75a8b7ee55a9d2d2098b2670cd3523
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2187ms)
+    ✓ MaxGraphSQL;n=32 (1612ms)
+    ✓ MaxGraphSQL;n=64 (1591ms)
+    ✓ MaxGraphSQL;n=128 (1587ms)
+    ✓ MaxGraphSQL;n=256 (1620ms)
+    ✓ MaxGraphSQL;n=512 (1617ms)
+    ✓ MaxGraphSQL;n=1024 (1637ms)
+    ✓ MaxGraphSQL;n=2048 (1713ms)
+    ✓ MaxGraphSQL;n=4096 (1836ms)
+    ✓ MaxGraphSQL;n=8192 (2297ms)
+    ✓ MaxGraphSQL;n=16384 (3626ms)
+    ✓ MaxGraphSQL;n=32768 (8451ms)
+    ✓ MaxGraphSQL;n=65536 (26697ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test
new file mode 100644
index 0000000000000000000000000000000000000000..5216efde829b9e7e2ff2a75e29edaa3a8c5f2cf9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1901ms)
+    ✓ MaxGraphSQL;n=32 (1473ms)
+    ✓ MaxGraphSQL;n=64 (1627ms)
+    ✓ MaxGraphSQL;n=128 (1624ms)
+    ✓ MaxGraphSQL;n=256 (1627ms)
+    ✓ MaxGraphSQL;n=512 (1641ms)
+    ✓ MaxGraphSQL;n=1024 (1654ms)
+    ✓ MaxGraphSQL;n=2048 (1739ms)
+    ✓ MaxGraphSQL;n=4096 (1883ms)
+    ✓ MaxGraphSQL;n=8192 (2322ms)
+    ✓ MaxGraphSQL;n=16384 (3820ms)
+    ✓ MaxGraphSQL;n=32768 (9045ms)
+    ✓ MaxGraphSQL;n=65536 (28882ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test
new file mode 100644
index 0000000000000000000000000000000000000000..6a804200fa5e51e7967b7179a23657e097d641bd
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2089ms)
+    ✓ MaxGraphSQL;n=32 (1582ms)
+    ✓ MaxGraphSQL;n=64 (1595ms)
+    ✓ MaxGraphSQL;n=128 (1611ms)
+    ✓ MaxGraphSQL;n=256 (1631ms)
+    ✓ MaxGraphSQL;n=512 (1633ms)
+    ✓ MaxGraphSQL;n=1024 (1659ms)
+    ✓ MaxGraphSQL;n=2048 (1737ms)
+    ✓ MaxGraphSQL;n=4096 (1879ms)
+    ✓ MaxGraphSQL;n=8192 (2285ms)
+    ✓ MaxGraphSQL;n=16384 (3803ms)
+    ✓ MaxGraphSQL;n=32768 (8741ms)
+    ✓ MaxGraphSQL;n=65536 (27439ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test
new file mode 100644
index 0000000000000000000000000000000000000000..133ec18b124c7c0aaf5a450f12f982343968a4b5
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2071ms)
+    ✓ MaxGraphSQL;n=32 (1539ms)
+    ✓ MaxGraphSQL;n=64 (1506ms)
+    ✓ MaxGraphSQL;n=128 (1539ms)
+    ✓ MaxGraphSQL;n=256 (1576ms)
+    ✓ MaxGraphSQL;n=512 (1614ms)
+    ✓ MaxGraphSQL;n=1024 (1629ms)
+    ✓ MaxGraphSQL;n=2048 (1710ms)
+    ✓ MaxGraphSQL;n=4096 (1854ms)
+    ✓ MaxGraphSQL;n=8192 (2298ms)
+    ✓ MaxGraphSQL;n=16384 (3853ms)
+    ✓ MaxGraphSQL;n=32768 (9038ms)
+    ✓ MaxGraphSQL;n=65536 (28054ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test
new file mode 100644
index 0000000000000000000000000000000000000000..7461f49d106fcd90ae5adb94ccccde9173da172a
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2049ms)
+    ✓ MaxGraphSQL;n=32 (1544ms)
+    ✓ MaxGraphSQL;n=64 (1522ms)
+    ✓ MaxGraphSQL;n=128 (1534ms)
+    ✓ MaxGraphSQL;n=256 (1531ms)
+    ✓ MaxGraphSQL;n=512 (1548ms)
+    ✓ MaxGraphSQL;n=1024 (1574ms)
+    ✓ MaxGraphSQL;n=2048 (1618ms)
+    ✓ MaxGraphSQL;n=4096 (1755ms)
+    ✓ MaxGraphSQL;n=8192 (2137ms)
+    ✓ MaxGraphSQL;n=16384 (3456ms)
+    ✓ MaxGraphSQL;n=32768 (7858ms)
+    ✓ MaxGraphSQL;n=65536 (24391ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test
new file mode 100644
index 0000000000000000000000000000000000000000..0d2c47aeba261f31e5759b5e8bf084dd3c7ab160
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2059ms)
+    ✓ MaxGraphSQL;n=32 (1536ms)
+    ✓ MaxGraphSQL;n=64 (1523ms)
+    ✓ MaxGraphSQL;n=128 (1519ms)
+    ✓ MaxGraphSQL;n=256 (1528ms)
+    ✓ MaxGraphSQL;n=512 (1547ms)
+    ✓ MaxGraphSQL;n=1024 (1566ms)
+    ✓ MaxGraphSQL;n=2048 (1719ms)
+    ✓ MaxGraphSQL;n=4096 (1765ms)
+    ✓ MaxGraphSQL;n=8192 (2155ms)
+    ✓ MaxGraphSQL;n=16384 (3526ms)
+    ✓ MaxGraphSQL;n=32768 (7964ms)
+    ✓ MaxGraphSQL;n=65536 (24741ms)
+
+
+  13 passing (53s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test
new file mode 100644
index 0000000000000000000000000000000000000000..9b7d9d3a357b6be82c1dc5ca58f98b443484e014
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2003ms)
+    ✓ MaxGraphSQL;n=32 (1505ms)
+    ✓ MaxGraphSQL;n=64 (1486ms)
+    ✓ MaxGraphSQL;n=128 (1484ms)
+    ✓ MaxGraphSQL;n=256 (1491ms)
+    ✓ MaxGraphSQL;n=512 (1502ms)
+    ✓ MaxGraphSQL;n=1024 (1519ms)
+    ✓ MaxGraphSQL;n=2048 (1599ms)
+    ✓ MaxGraphSQL;n=4096 (1715ms)
+    ✓ MaxGraphSQL;n=8192 (2078ms)
+    ✓ MaxGraphSQL;n=16384 (3378ms)
+    ✓ MaxGraphSQL;n=32768 (7641ms)
+    ✓ MaxGraphSQL;n=65536 (24226ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test
new file mode 100644
index 0000000000000000000000000000000000000000..ba595df219d3c3b429144d333f66b5675e668610
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2264ms)
+    ✓ MaxGraphSQL;n=32 (1748ms)
+    ✓ MaxGraphSQL;n=64 (1720ms)
+    ✓ MaxGraphSQL;n=128 (1720ms)
+    ✓ MaxGraphSQL;n=256 (1725ms)
+    ✓ MaxGraphSQL;n=512 (1731ms)
+    ✓ MaxGraphSQL;n=1024 (1753ms)
+    ✓ MaxGraphSQL;n=2048 (1828ms)
+    ✓ MaxGraphSQL;n=4096 (1969ms)
+    ✓ MaxGraphSQL;n=8192 (2408ms)
+    ✓ MaxGraphSQL;n=16384 (3754ms)
+    ✓ MaxGraphSQL;n=32768 (8488ms)
+    ✓ MaxGraphSQL;n=65536 (26171ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test
new file mode 100644
index 0000000000000000000000000000000000000000..59eb953098d2921c32457c63cee8e7d7f454c67f
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2074ms)
+    ✓ MaxGraphSQL;n=32 (1532ms)
+    ✓ MaxGraphSQL;n=64 (1520ms)
+    ✓ MaxGraphSQL;n=128 (1540ms)
+    ✓ MaxGraphSQL;n=256 (1612ms)
+    ✓ MaxGraphSQL;n=512 (1580ms)
+    ✓ MaxGraphSQL;n=1024 (1594ms)
+    ✓ MaxGraphSQL;n=2048 (1671ms)
+    ✓ MaxGraphSQL;n=4096 (1781ms)
+    ✓ MaxGraphSQL;n=8192 (2156ms)
+    ✓ MaxGraphSQL;n=16384 (3367ms)
+    ✓ MaxGraphSQL;n=32768 (7378ms)
+    ✓ MaxGraphSQL;n=65536 (22423ms)
+
+
+  13 passing (50s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test
new file mode 100644
index 0000000000000000000000000000000000000000..f8128e436c4170c8ca57cf5f87ef6408cafe28da
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2106ms)
+    ✓ MaxGraphSQL;n=32 (1598ms)
+    ✓ MaxGraphSQL;n=64 (1583ms)
+    ✓ MaxGraphSQL;n=128 (1579ms)
+    ✓ MaxGraphSQL;n=256 (1588ms)
+    ✓ MaxGraphSQL;n=512 (1598ms)
+    ✓ MaxGraphSQL;n=1024 (1611ms)
+    ✓ MaxGraphSQL;n=2048 (1687ms)
+    ✓ MaxGraphSQL;n=4096 (1803ms)
+    ✓ MaxGraphSQL;n=8192 (2186ms)
+    ✓ MaxGraphSQL;n=16384 (3468ms)
+    ✓ MaxGraphSQL;n=32768 (7760ms)
+    ✓ MaxGraphSQL;n=65536 (23820ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test
new file mode 100644
index 0000000000000000000000000000000000000000..81faad6b1a949244ffcb89f57ac3bc886c038648
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2159ms)
+    ✓ MaxGraphSQL;n=32 (1660ms)
+    ✓ MaxGraphSQL;n=64 (1641ms)
+    ✓ MaxGraphSQL;n=128 (1642ms)
+    ✓ MaxGraphSQL;n=256 (1661ms)
+    ✓ MaxGraphSQL;n=512 (1673ms)
+    ✓ MaxGraphSQL;n=1024 (1679ms)
+    ✓ MaxGraphSQL;n=2048 (1774ms)
+    ✓ MaxGraphSQL;n=4096 (1966ms)
+    ✓ MaxGraphSQL;n=8192 (2381ms)
+    ✓ MaxGraphSQL;n=16384 (3867ms)
+    ✓ MaxGraphSQL;n=32768 (8704ms)
+    ✓ MaxGraphSQL;n=65536 (27307ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test
new file mode 100644
index 0000000000000000000000000000000000000000..39211fb6a667e692159e89cc5f8308d0862397a2
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2114ms)
+    ✓ MaxGraphSQL;n=32 (1494ms)
+    ✓ MaxGraphSQL;n=64 (1484ms)
+    ✓ MaxGraphSQL;n=128 (1484ms)
+    ✓ MaxGraphSQL;n=256 (1491ms)
+    ✓ MaxGraphSQL;n=512 (1495ms)
+    ✓ MaxGraphSQL;n=1024 (1508ms)
+    ✓ MaxGraphSQL;n=2048 (1597ms)
+    ✓ MaxGraphSQL;n=4096 (1723ms)
+    ✓ MaxGraphSQL;n=8192 (2162ms)
+    ✓ MaxGraphSQL;n=16384 (3649ms)
+    ✓ MaxGraphSQL;n=32768 (8608ms)
+    ✓ MaxGraphSQL;n=65536 (27980ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test
new file mode 100644
index 0000000000000000000000000000000000000000..e908ce3fd98dfaf802a4ef6681b49770cb32d5b9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2125ms)
+    ✓ MaxGraphSQL;n=32 (1556ms)
+    ✓ MaxGraphSQL;n=64 (1544ms)
+    ✓ MaxGraphSQL;n=128 (1552ms)
+    ✓ MaxGraphSQL;n=256 (1567ms)
+    ✓ MaxGraphSQL;n=512 (1591ms)
+    ✓ MaxGraphSQL;n=1024 (1594ms)
+    ✓ MaxGraphSQL;n=2048 (1659ms)
+    ✓ MaxGraphSQL;n=4096 (1798ms)
+    ✓ MaxGraphSQL;n=8192 (2231ms)
+    ✓ MaxGraphSQL;n=16384 (3642ms)
+    ✓ MaxGraphSQL;n=32768 (8427ms)
+    ✓ MaxGraphSQL;n=65536 (26389ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test
new file mode 100644
index 0000000000000000000000000000000000000000..90e463b4b5c6a46887f439242daacb98628773aa
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2112ms)
+    ✓ MaxGraphSQL;n=32 (1582ms)
+    ✓ MaxGraphSQL;n=64 (1563ms)
+    ✓ MaxGraphSQL;n=128 (1573ms)
+    ✓ MaxGraphSQL;n=256 (1578ms)
+    ✓ MaxGraphSQL;n=512 (1585ms)
+    ✓ MaxGraphSQL;n=1024 (1606ms)
+    ✓ MaxGraphSQL;n=2048 (1668ms)
+    ✓ MaxGraphSQL;n=4096 (1795ms)
+    ✓ MaxGraphSQL;n=8192 (2180ms)
+    ✓ MaxGraphSQL;n=16384 (3526ms)
+    ✓ MaxGraphSQL;n=32768 (8016ms)
+    ✓ MaxGraphSQL;n=65536 (24879ms)
+
+
+  13 passing (54s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test
new file mode 100644
index 0000000000000000000000000000000000000000..eec31e67e7a89bdd49e73dc0f71ac164cd15ee85
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2085ms)
+    ✓ MaxGraphSQL;n=32 (1549ms)
+    ✓ MaxGraphSQL;n=64 (1550ms)
+    ✓ MaxGraphSQL;n=128 (1574ms)
+    ✓ MaxGraphSQL;n=256 (1593ms)
+    ✓ MaxGraphSQL;n=512 (1594ms)
+    ✓ MaxGraphSQL;n=1024 (1614ms)
+    ✓ MaxGraphSQL;n=2048 (1703ms)
+    ✓ MaxGraphSQL;n=4096 (1859ms)
+    ✓ MaxGraphSQL;n=8192 (2270ms)
+    ✓ MaxGraphSQL;n=16384 (3685ms)
+    ✓ MaxGraphSQL;n=32768 (8474ms)
+    ✓ MaxGraphSQL;n=65536 (26850ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test
new file mode 100644
index 0000000000000000000000000000000000000000..9258004e6e12c3028dd306898df779e5d9ca49f6
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2057ms)
+    ✓ MaxGraphSQL;n=32 (1474ms)
+    ✓ MaxGraphSQL;n=64 (1458ms)
+    ✓ MaxGraphSQL;n=128 (1470ms)
+    ✓ MaxGraphSQL;n=256 (1517ms)
+    ✓ MaxGraphSQL;n=512 (1534ms)
+    ✓ MaxGraphSQL;n=1024 (1543ms)
+    ✓ MaxGraphSQL;n=2048 (1612ms)
+    ✓ MaxGraphSQL;n=4096 (1734ms)
+    ✓ MaxGraphSQL;n=8192 (2110ms)
+    ✓ MaxGraphSQL;n=16384 (3380ms)
+    ✓ MaxGraphSQL;n=32768 (7702ms)
+    ✓ MaxGraphSQL;n=65536 (23886ms)
+
+
+  13 passing (52s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test
new file mode 100644
index 0000000000000000000000000000000000000000..d8071a97b934f42906f4317e45df7276fb52d2c0
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2141ms)
+    ✓ MaxGraphSQL;n=32 (1618ms)
+    ✓ MaxGraphSQL;n=64 (1608ms)
+    ✓ MaxGraphSQL;n=128 (1625ms)
+    ✓ MaxGraphSQL;n=256 (1685ms)
+    ✓ MaxGraphSQL;n=512 (1688ms)
+    ✓ MaxGraphSQL;n=1024 (1715ms)
+    ✓ MaxGraphSQL;n=2048 (1778ms)
+    ✓ MaxGraphSQL;n=4096 (1908ms)
+    ✓ MaxGraphSQL;n=8192 (2301ms)
+    ✓ MaxGraphSQL;n=16384 (3672ms)
+    ✓ MaxGraphSQL;n=32768 (8277ms)
+    ✓ MaxGraphSQL;n=65536 (25677ms)
+
+
+  13 passing (56s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..37aca0316460f47772803d740d38a5cbd8a721f6
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2165ms)
+    ✓ MaxGraphSQL;n=32 (2221ms)
+    ✓ MaxGraphSQL;n=64 (3873ms)
+    ✓ MaxGraphSQL;n=128 (2009ms)
+    ✓ MaxGraphSQL;n=256 (1684ms)
+    ✓ MaxGraphSQL;n=512 (1726ms)
+    ✓ MaxGraphSQL;n=1024 (1707ms)
+    ✓ MaxGraphSQL;n=2048 (1805ms)
+    ✓ MaxGraphSQL;n=4096 (1892ms)
+    ✓ MaxGraphSQL;n=8192 (2311ms)
+    ✓ MaxGraphSQL;n=16384 (3764ms)
+    ✓ MaxGraphSQL;n=32768 (9227ms)
+    ✓ MaxGraphSQL;n=65536 (30238ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..a10d20d4faec50dd826ecf4d88e6d9304fb1e568
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2342ms)
+    ✓ MaxGraphSQL;n=32 (2442ms)
+    ✓ MaxGraphSQL;n=64 (3480ms)
+    ✓ MaxGraphSQL;n=128 (1812ms)
+    ✓ MaxGraphSQL;n=256 (1630ms)
+    ✓ MaxGraphSQL;n=512 (1700ms)
+    ✓ MaxGraphSQL;n=1024 (1657ms)
+    ✓ MaxGraphSQL;n=2048 (1735ms)
+    ✓ MaxGraphSQL;n=4096 (1870ms)
+    ✓ MaxGraphSQL;n=8192 (2297ms)
+    ✓ MaxGraphSQL;n=16384 (3832ms)
+    ✓ MaxGraphSQL;n=32768 (8753ms)
+    ✓ MaxGraphSQL;n=65536 (29069ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test
new file mode 100644
index 0000000000000000000000000000000000000000..131d5edb87e5ddc6cf847e8cb43e0f7b391c5fa9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2147ms)
+    ✓ MaxGraphSQL;n=32 (2171ms)
+    ✓ MaxGraphSQL;n=64 (3355ms)
+    ✓ MaxGraphSQL;n=128 (2070ms)
+    ✓ MaxGraphSQL;n=256 (1557ms)
+    ✓ MaxGraphSQL;n=512 (1557ms)
+    ✓ MaxGraphSQL;n=1024 (1593ms)
+    ✓ MaxGraphSQL;n=2048 (1638ms)
+    ✓ MaxGraphSQL;n=4096 (1761ms)
+    ✓ MaxGraphSQL;n=8192 (2157ms)
+    ✓ MaxGraphSQL;n=16384 (3414ms)
+    ✓ MaxGraphSQL;n=32768 (8051ms)
+    ✓ MaxGraphSQL;n=65536 (26219ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test
new file mode 100644
index 0000000000000000000000000000000000000000..22219e11d25b25d3b92e461154270ec28555b77e
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2157ms)
+    ✓ MaxGraphSQL;n=32 (2052ms)
+    ✓ MaxGraphSQL;n=64 (3010ms)
+    ✓ MaxGraphSQL;n=128 (1920ms)
+    ✓ MaxGraphSQL;n=256 (1534ms)
+    ✓ MaxGraphSQL;n=512 (1585ms)
+    ✓ MaxGraphSQL;n=1024 (1612ms)
+    ✓ MaxGraphSQL;n=2048 (1677ms)
+    ✓ MaxGraphSQL;n=4096 (1806ms)
+    ✓ MaxGraphSQL;n=8192 (2221ms)
+    ✓ MaxGraphSQL;n=16384 (3625ms)
+    ✓ MaxGraphSQL;n=32768 (8640ms)
+    ✓ MaxGraphSQL;n=65536 (25993ms)
+
+
+  13 passing (58s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test
new file mode 100644
index 0000000000000000000000000000000000000000..921ef6447aa889f12e7d8608bcfa04486d79addd
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2110ms)
+    ✓ MaxGraphSQL;n=32 (1594ms)
+    ✓ MaxGraphSQL;n=64 (1580ms)
+    ✓ MaxGraphSQL;n=128 (1598ms)
+    ✓ MaxGraphSQL;n=256 (1642ms)
+    ✓ MaxGraphSQL;n=512 (1614ms)
+    ✓ MaxGraphSQL;n=1024 (1651ms)
+    ✓ MaxGraphSQL;n=2048 (1699ms)
+    ✓ MaxGraphSQL;n=4096 (1875ms)
+    ✓ MaxGraphSQL;n=8192 (5649ms)
+    ✓ MaxGraphSQL;n=16384 (3677ms)
+    ✓ MaxGraphSQL;n=32768 (9115ms)
+    ✓ MaxGraphSQL;n=65536 (30315ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test
new file mode 100644
index 0000000000000000000000000000000000000000..88e1ae21171d59cf6aaf433aa7f9b02fed50203b
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2103ms)
+    ✓ MaxGraphSQL;n=32 (2093ms)
+    ✓ MaxGraphSQL;n=64 (3005ms)
+    ✓ MaxGraphSQL;n=128 (2287ms)
+    ✓ MaxGraphSQL;n=256 (1711ms)
+    ✓ MaxGraphSQL;n=512 (1706ms)
+    ✓ MaxGraphSQL;n=1024 (1735ms)
+    ✓ MaxGraphSQL;n=2048 (1790ms)
+    ✓ MaxGraphSQL;n=4096 (1934ms)
+    ✓ MaxGraphSQL;n=8192 (2350ms)
+    ✓ MaxGraphSQL;n=16384 (3791ms)
+    ✓ MaxGraphSQL;n=32768 (9008ms)
+    ✓ MaxGraphSQL;n=65536 (29325ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test
new file mode 100644
index 0000000000000000000000000000000000000000..344d30a01646e24478f039a8650ccb1fc14f4f86
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2149ms)
+    ✓ MaxGraphSQL;n=32 (2010ms)
+    ✓ MaxGraphSQL;n=64 (2938ms)
+    ✓ MaxGraphSQL;n=128 (2270ms)
+    ✓ MaxGraphSQL;n=256 (1628ms)
+    ✓ MaxGraphSQL;n=512 (1593ms)
+    ✓ MaxGraphSQL;n=1024 (1623ms)
+    ✓ MaxGraphSQL;n=2048 (1687ms)
+    ✓ MaxGraphSQL;n=4096 (1814ms)
+    ✓ MaxGraphSQL;n=8192 (2188ms)
+    ✓ MaxGraphSQL;n=16384 (3532ms)
+    ✓ MaxGraphSQL;n=32768 (8225ms)
+    ✓ MaxGraphSQL;n=65536 (31025ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test
new file mode 100644
index 0000000000000000000000000000000000000000..2d4a85b12bf8706e51e3dbed19201f36bd794c64
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2090ms)
+    ✓ MaxGraphSQL;n=32 (1522ms)
+    ✓ MaxGraphSQL;n=64 (1515ms)
+    ✓ MaxGraphSQL;n=128 (1526ms)
+    ✓ MaxGraphSQL;n=256 (1555ms)
+    ✓ MaxGraphSQL;n=512 (1697ms)
+    ✓ MaxGraphSQL;n=1024 (2372ms)
+    ✓ MaxGraphSQL;n=2048 (3630ms)
+    ✓ MaxGraphSQL;n=4096 (1794ms)
+    ✓ MaxGraphSQL;n=8192 (2095ms)
+    ✓ MaxGraphSQL;n=16384 (3586ms)
+    ✓ MaxGraphSQL;n=32768 (8304ms)
+    ✓ MaxGraphSQL;n=65536 (28233ms)
+
+
+  13 passing (60s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test
new file mode 100644
index 0000000000000000000000000000000000000000..ea67808ee3b326ce664a265d03a8d3d41db89dea
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2084ms)
+    ✓ MaxGraphSQL;n=32 (2020ms)
+    ✓ MaxGraphSQL;n=64 (3177ms)
+    ✓ MaxGraphSQL;n=128 (1764ms)
+    ✓ MaxGraphSQL;n=256 (1503ms)
+    ✓ MaxGraphSQL;n=512 (1517ms)
+    ✓ MaxGraphSQL;n=1024 (1630ms)
+    ✓ MaxGraphSQL;n=2048 (1680ms)
+    ✓ MaxGraphSQL;n=4096 (1836ms)
+    ✓ MaxGraphSQL;n=8192 (2224ms)
+    ✓ MaxGraphSQL;n=16384 (3464ms)
+    ✓ MaxGraphSQL;n=32768 (7718ms)
+    ✓ MaxGraphSQL;n=65536 (28778ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test
new file mode 100644
index 0000000000000000000000000000000000000000..d804565f654c4dc0d6dbd5fee3c4dfc704bcb93c
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2239ms)
+    ✓ MaxGraphSQL;n=32 (2241ms)
+    ✓ MaxGraphSQL;n=64 (3374ms)
+    ✓ MaxGraphSQL;n=128 (1862ms)
+    ✓ MaxGraphSQL;n=256 (1680ms)
+    ✓ MaxGraphSQL;n=512 (1703ms)
+    ✓ MaxGraphSQL;n=1024 (1722ms)
+    ✓ MaxGraphSQL;n=2048 (1805ms)
+    ✓ MaxGraphSQL;n=4096 (1930ms)
+    ✓ MaxGraphSQL;n=8192 (2311ms)
+    ✓ MaxGraphSQL;n=16384 (3586ms)
+    ✓ MaxGraphSQL;n=32768 (8622ms)
+    ✓ MaxGraphSQL;n=65536 (26947ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test
new file mode 100644
index 0000000000000000000000000000000000000000..ea08b695f6de59d325fede5f9ee2b20ebe6bd563
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2219ms)
+    ✓ MaxGraphSQL;n=32 (2262ms)
+    ✓ MaxGraphSQL;n=64 (3583ms)
+    ✓ MaxGraphSQL;n=128 (2062ms)
+    ✓ MaxGraphSQL;n=256 (1603ms)
+    ✓ MaxGraphSQL;n=512 (1613ms)
+    ✓ MaxGraphSQL;n=1024 (1631ms)
+    ✓ MaxGraphSQL;n=2048 (1699ms)
+    ✓ MaxGraphSQL;n=4096 (1839ms)
+    ✓ MaxGraphSQL;n=8192 (2244ms)
+    ✓ MaxGraphSQL;n=16384 (3691ms)
+    ✓ MaxGraphSQL;n=32768 (9056ms)
+    ✓ MaxGraphSQL;n=65536 (28912ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..bf230f06a2ab1ebc06811f18c5a62b6938104298
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2161ms)
+    ✓ MaxGraphSQL;n=32 (1596ms)
+    ✓ MaxGraphSQL;n=64 (1585ms)
+    ✓ MaxGraphSQL;n=128 (1611ms)
+    ✓ MaxGraphSQL;n=256 (1670ms)
+    ✓ MaxGraphSQL;n=512 (1752ms)
+    ✓ MaxGraphSQL;n=1024 (2155ms)
+    ✓ MaxGraphSQL;n=2048 (3915ms)
+    ✓ MaxGraphSQL;n=4096 (2245ms)
+    ✓ MaxGraphSQL;n=8192 (2222ms)
+    ✓ MaxGraphSQL;n=16384 (3646ms)
+    ✓ MaxGraphSQL;n=32768 (8480ms)
+    ✓ MaxGraphSQL;n=65536 (30793ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test
new file mode 100644
index 0000000000000000000000000000000000000000..305b9b866aa9a68e9aa8e27aeda6a6b62d29c476
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2065ms)
+    ✓ MaxGraphSQL;n=32 (1710ms)
+    ✓ MaxGraphSQL;n=64 (2230ms)
+    ✓ MaxGraphSQL;n=128 (3031ms)
+    ✓ MaxGraphSQL;n=256 (1595ms)
+    ✓ MaxGraphSQL;n=512 (1587ms)
+    ✓ MaxGraphSQL;n=1024 (1608ms)
+    ✓ MaxGraphSQL;n=2048 (1670ms)
+    ✓ MaxGraphSQL;n=4096 (1803ms)
+    ✓ MaxGraphSQL;n=8192 (2168ms)
+    ✓ MaxGraphSQL;n=16384 (3459ms)
+    ✓ MaxGraphSQL;n=32768 (8401ms)
+    ✓ MaxGraphSQL;n=65536 (31164ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test
new file mode 100644
index 0000000000000000000000000000000000000000..fce32ba034b3b790712e05d8e4dc9507a6c813f5
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2088ms)
+    ✓ MaxGraphSQL;n=32 (1565ms)
+    ✓ MaxGraphSQL;n=64 (1565ms)
+    ✓ MaxGraphSQL;n=128 (1585ms)
+    ✓ MaxGraphSQL;n=256 (1685ms)
+    ✓ MaxGraphSQL;n=512 (1598ms)
+    ✓ MaxGraphSQL;n=1024 (1711ms)
+    ✓ MaxGraphSQL;n=2048 (2636ms)
+    ✓ MaxGraphSQL;n=4096 (3917ms)
+    ✓ MaxGraphSQL;n=8192 (2338ms)
+    ✓ MaxGraphSQL;n=16384 (3620ms)
+    ✓ MaxGraphSQL;n=32768 (8366ms)
+    ✓ MaxGraphSQL;n=65536 (28610ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test
new file mode 100644
index 0000000000000000000000000000000000000000..c1ea4f4efe7ebba628c93ce0ce28e195b61bd5be
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2174ms)
+    ✓ MaxGraphSQL;n=32 (2284ms)
+    ✓ MaxGraphSQL;n=64 (3486ms)
+    ✓ MaxGraphSQL;n=128 (2020ms)
+    ✓ MaxGraphSQL;n=256 (1729ms)
+    ✓ MaxGraphSQL;n=512 (1724ms)
+    ✓ MaxGraphSQL;n=1024 (1749ms)
+    ✓ MaxGraphSQL;n=2048 (1812ms)
+    ✓ MaxGraphSQL;n=4096 (2064ms)
+    ✓ MaxGraphSQL;n=8192 (2405ms)
+    ✓ MaxGraphSQL;n=16384 (3856ms)
+    ✓ MaxGraphSQL;n=32768 (9296ms)
+    ✓ MaxGraphSQL;n=65536 (29721ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test
new file mode 100644
index 0000000000000000000000000000000000000000..70d60da474ed3842333bc2a4799e6a3939d6abc1
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2132ms)
+    ✓ MaxGraphSQL;n=32 (2150ms)
+    ✓ MaxGraphSQL;n=64 (3517ms)
+    ✓ MaxGraphSQL;n=128 (1811ms)
+    ✓ MaxGraphSQL;n=256 (1647ms)
+    ✓ MaxGraphSQL;n=512 (1647ms)
+    ✓ MaxGraphSQL;n=1024 (1676ms)
+    ✓ MaxGraphSQL;n=2048 (1747ms)
+    ✓ MaxGraphSQL;n=4096 (1894ms)
+    ✓ MaxGraphSQL;n=8192 (2316ms)
+    ✓ MaxGraphSQL;n=16384 (3676ms)
+    ✓ MaxGraphSQL;n=32768 (8132ms)
+    ✓ MaxGraphSQL;n=65536 (28033ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test
new file mode 100644
index 0000000000000000000000000000000000000000..15ac0c450587b48c3efe9bb7bc91673c1087d5cc
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2222ms)
+    ✓ MaxGraphSQL;n=32 (2246ms)
+    ✓ MaxGraphSQL;n=64 (3385ms)
+    ✓ MaxGraphSQL;n=128 (2078ms)
+    ✓ MaxGraphSQL;n=256 (1648ms)
+    ✓ MaxGraphSQL;n=512 (1587ms)
+    ✓ MaxGraphSQL;n=1024 (1621ms)
+    ✓ MaxGraphSQL;n=2048 (1692ms)
+    ✓ MaxGraphSQL;n=4096 (1841ms)
+    ✓ MaxGraphSQL;n=8192 (2281ms)
+    ✓ MaxGraphSQL;n=16384 (3529ms)
+    ✓ MaxGraphSQL;n=32768 (8269ms)
+    ✓ MaxGraphSQL;n=65536 (29825ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test
new file mode 100644
index 0000000000000000000000000000000000000000..9262d5a3d7afcc6a69f09adc87fc892dc7ea5fc0
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2119ms)
+    ✓ MaxGraphSQL;n=32 (1959ms)
+    ✓ MaxGraphSQL;n=64 (2903ms)
+    ✓ MaxGraphSQL;n=128 (1917ms)
+    ✓ MaxGraphSQL;n=256 (1530ms)
+    ✓ MaxGraphSQL;n=512 (1526ms)
+    ✓ MaxGraphSQL;n=1024 (1559ms)
+    ✓ MaxGraphSQL;n=2048 (1603ms)
+    ✓ MaxGraphSQL;n=4096 (1760ms)
+    ✓ MaxGraphSQL;n=8192 (2150ms)
+    ✓ MaxGraphSQL;n=16384 (3578ms)
+    ✓ MaxGraphSQL;n=32768 (8704ms)
+    ✓ MaxGraphSQL;n=65536 (25318ms)
+
+
+  13 passing (57s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test
new file mode 100644
index 0000000000000000000000000000000000000000..71045e8cfea9e9b057a56447d12cd03064c438aa
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2100ms)
+    ✓ MaxGraphSQL;n=32 (1541ms)
+    ✓ MaxGraphSQL;n=64 (1531ms)
+    ✓ MaxGraphSQL;n=128 (1544ms)
+    ✓ MaxGraphSQL;n=256 (1584ms)
+    ✓ MaxGraphSQL;n=512 (1617ms)
+    ✓ MaxGraphSQL;n=1024 (1566ms)
+    ✓ MaxGraphSQL;n=2048 (1644ms)
+    ✓ MaxGraphSQL;n=4096 (1776ms)
+    ✓ MaxGraphSQL;n=8192 (5713ms)
+    ✓ MaxGraphSQL;n=16384 (3600ms)
+    ✓ MaxGraphSQL;n=32768 (8353ms)
+    ✓ MaxGraphSQL;n=65536 (32168ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test
new file mode 100644
index 0000000000000000000000000000000000000000..df1b9c17ab2b2549acaff87c1b21da8b449ed934
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2371ms)
+    ✓ MaxGraphSQL;n=32 (2466ms)
+    ✓ MaxGraphSQL;n=64 (3366ms)
+    ✓ MaxGraphSQL;n=128 (1795ms)
+    ✓ MaxGraphSQL;n=256 (1641ms)
+    ✓ MaxGraphSQL;n=512 (1637ms)
+    ✓ MaxGraphSQL;n=1024 (1670ms)
+    ✓ MaxGraphSQL;n=2048 (1734ms)
+    ✓ MaxGraphSQL;n=4096 (1881ms)
+    ✓ MaxGraphSQL;n=8192 (2263ms)
+    ✓ MaxGraphSQL;n=16384 (3756ms)
+    ✓ MaxGraphSQL;n=32768 (8708ms)
+    ✓ MaxGraphSQL;n=65536 (29972ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test
new file mode 100644
index 0000000000000000000000000000000000000000..d211297a0e7eb859b86941fe4f9db0bdd1a83fc0
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2199ms)
+    ✓ MaxGraphSQL;n=32 (1645ms)
+    ✓ MaxGraphSQL;n=64 (1637ms)
+    ✓ MaxGraphSQL;n=128 (1679ms)
+    ✓ MaxGraphSQL;n=256 (1780ms)
+    ✓ MaxGraphSQL;n=512 (1933ms)
+    ✓ MaxGraphSQL;n=1024 (2944ms)
+    ✓ MaxGraphSQL;n=2048 (3138ms)
+    ✓ MaxGraphSQL;n=4096 (1973ms)
+    ✓ MaxGraphSQL;n=8192 (2391ms)
+    ✓ MaxGraphSQL;n=16384 (3962ms)
+    ✓ MaxGraphSQL;n=32768 (9545ms)
+    ✓ MaxGraphSQL;n=65536 (27105ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test
new file mode 100644
index 0000000000000000000000000000000000000000..65797889e362381f7256f1bce2074dfbb6ca827d
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2232ms)
+    ✓ MaxGraphSQL;n=32 (2133ms)
+    ✓ MaxGraphSQL;n=64 (3132ms)
+    ✓ MaxGraphSQL;n=128 (1743ms)
+    ✓ MaxGraphSQL;n=256 (1594ms)
+    ✓ MaxGraphSQL;n=512 (1593ms)
+    ✓ MaxGraphSQL;n=1024 (1617ms)
+    ✓ MaxGraphSQL;n=2048 (1685ms)
+    ✓ MaxGraphSQL;n=4096 (1848ms)
+    ✓ MaxGraphSQL;n=8192 (2280ms)
+    ✓ MaxGraphSQL;n=16384 (3817ms)
+    ✓ MaxGraphSQL;n=32768 (9441ms)
+    ✓ MaxGraphSQL;n=65536 (31133ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..0bff00deac9f16c75e5af61aa446326a1a9dc8e9
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2215ms)
+    ✓ MaxGraphSQL;n=32 (2215ms)
+    ✓ MaxGraphSQL;n=64 (3582ms)
+    ✓ MaxGraphSQL;n=128 (1749ms)
+    ✓ MaxGraphSQL;n=256 (1597ms)
+    ✓ MaxGraphSQL;n=512 (1597ms)
+    ✓ MaxGraphSQL;n=1024 (1617ms)
+    ✓ MaxGraphSQL;n=2048 (1685ms)
+    ✓ MaxGraphSQL;n=4096 (1834ms)
+    ✓ MaxGraphSQL;n=8192 (2215ms)
+    ✓ MaxGraphSQL;n=16384 (3708ms)
+    ✓ MaxGraphSQL;n=32768 (8618ms)
+    ✓ MaxGraphSQL;n=65536 (30212ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test
new file mode 100644
index 0000000000000000000000000000000000000000..8e7e5dbd8a18cc664495381c65c10a96ab8852ea
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2089ms)
+    ✓ MaxGraphSQL;n=32 (1959ms)
+    ✓ MaxGraphSQL;n=64 (2855ms)
+    ✓ MaxGraphSQL;n=128 (1817ms)
+    ✓ MaxGraphSQL;n=256 (1622ms)
+    ✓ MaxGraphSQL;n=512 (1478ms)
+    ✓ MaxGraphSQL;n=1024 (1486ms)
+    ✓ MaxGraphSQL;n=2048 (1559ms)
+    ✓ MaxGraphSQL;n=4096 (1704ms)
+    ✓ MaxGraphSQL;n=8192 (2073ms)
+    ✓ MaxGraphSQL;n=16384 (3485ms)
+    ✓ MaxGraphSQL;n=32768 (8168ms)
+    ✓ MaxGraphSQL;n=65536 (27915ms)
+
+
+  13 passing (59s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..a2277da3e96a7c039e8eda301e098cf491f19bbf
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (2132ms)
+    ✓ MaxGraphSQL;n=32 (2020ms)
+    ✓ MaxGraphSQL;n=64 (2928ms)
+    ✓ MaxGraphSQL;n=128 (2129ms)
+    ✓ MaxGraphSQL;n=256 (1702ms)
+    ✓ MaxGraphSQL;n=512 (1695ms)
+    ✓ MaxGraphSQL;n=1024 (1766ms)
+    ✓ MaxGraphSQL;n=2048 (1779ms)
+    ✓ MaxGraphSQL;n=4096 (1927ms)
+    ✓ MaxGraphSQL;n=8192 (2302ms)
+    ✓ MaxGraphSQL;n=16384 (3867ms)
+    ✓ MaxGraphSQL;n=32768 (9576ms)
+    ✓ MaxGraphSQL;n=65536 (31772ms)
+
+
+  13 passing (1m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res b/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res
new file mode 100644
index 0000000000000000000000000000000000000000..c8c7d957617f66097de4d86c70760d781cec3fdc
--- /dev/null
+++ b/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res
@@ -0,0 +1,13 @@
+16 2143.94
+32 1848.56
+64 2377.15
+128 1741.08
+256 1610.47
+512 1616.2
+1024 1681.08
+2048 1862.39
+4096 1898.59
+8192 2433.85
+16384 3676.32
+32768 8586.03
+65536 28076.81
diff --git a/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2f6b57523d53987a9e8c9e6c456b982993ed4d0d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 125.94
+Mediana        = 128
+Variancia      = 139.85
+Desvio Padrao  = 11.83
+Coef. Variacao = 0.09
+Min            = 100
+Max            = 151
+Esq, Dir.      = 124.166 , 127.7174
diff --git a/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b1e32880ba95df052ee6d46aa2bf8989e90d5954
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+1024 118
+1024 122
+1024 128
+1024 119
+1024 120
+1024 129
+1024 133
+1024 107
+1024 123
+1024 108
+1024 120
+1024 108
+1024 148
+1024 135
+1024 105
+1024 118
+1024 142
+1024 117
+1024 102
+1024 121
+1024 137
+1024 102
+1024 144
+1024 133
+1024 138
+1024 123
+1024 120
+1024 125
+1024 134
+1024 129
+1024 117
+1024 119
+1024 146
+1024 140
+1024 135
+1024 115
+1024 133
+1024 117
+1024 125
+1024 133
+1024 149
+1024 129
+1024 121
+1024 132
+1024 141
+1024 129
+1024 116
+1024 128
+1024 122
+1024 118
+1024 103
+1024 150
+1024 124
+1024 128
+1024 105
+1024 125
+1024 119
+1024 104
+1024 121
+1024 133
+1024 133
+1024 125
+1024 129
+1024 124
+1024 140
+1024 128
+1024 131
+1024 129
+1024 118
+1024 133
+1024 137
+1024 144
+1024 117
+1024 131
+1024 145
+1024 100
+1024 129
+1024 123
+1024 129
+1024 129
+1024 121
+1024 142
+1024 119
+1024 130
+1024 145
+1024 130
+1024 132
+1024 135
+1024 131
+1024 136
+1024 124
+1024 124
+1024 134
+1024 135
+1024 133
+1024 128
+1024 128
+1024 143
+1024 138
+1024 137
+1024 119
+1024 121
+1024 117
+1024 126
+1024 101
+1024 112
+1024 117
+1024 151
+1024 126
+1024 122
+1024 137
+1024 116
+1024 104
+1024 130
+1024 102
+1024 101
+1024 141
+1024 129
+1024 120
+1024 117
diff --git a/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..38cf4bf9a0b9df5f6b671690e0e585c0c30ee415
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 6.69
+Mediana        = 7
+Variancia      = 0.32
+Desvio Padrao  = 0.56
+Coef. Variacao = 0.08
+Min            = 6
+Max            = 9
+Esq, Dir.      = 6.6073 , 6.7761
diff --git a/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bcd9fc2480b2ea8d3e0be4665fd21aeb0961314b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+128 7
+128 7
+128 6
+128 7
+128 7
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 7
+128 7
+128 7
+128 6
+128 8
+128 6
+128 6
+128 7
+128 7
+128 6
+128 7
+128 7
+128 8
+128 7
+128 7
+128 6
+128 7
+128 7
+128 7
+128 8
+128 7
+128 6
+128 7
+128 6
+128 7
+128 6
+128 7
+128 6
+128 7
+128 6
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 7
+128 6
+128 7
+128 7
+128 6
+128 7
+128 6
+128 7
+128 6
+128 6
+128 7
+128 6
+128 7
+128 7
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 6
+128 7
+128 6
+128 7
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 6
+128 7
+128 7
+128 6
+128 7
+128 6
+128 7
+128 7
+128 6
+128 7
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 7
+128 7
+128 6
+128 6
+128 7
+128 6
+128 7
+128 7
+128 7
+128 6
+128 7
+128 6
+128 6
+128 7
+128 7
+128 6
+128 6
+128 7
+128 7
+128 7
+128 7
+128 6
+128 7
+128 7
+128 9
+128 7
+128 7
diff --git a/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ef5156fcb1c36a7f0a11a3991984e2ca95ac177e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 3.19
+Mediana        = 3
+Variancia      = 0.46
+Desvio Padrao  = 0.68
+Coef. Variacao = 0.21
+Min            = 2
+Max            = 7
+Esq, Dir.      = 3.09 , 3.2934
diff --git a/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..55dcb52744a91a3f2f99b741d5578e121b35118c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 4
+16 7
+16 3
+16 3
+16 2
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 4
+16 3
+16 4
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 4
+16 4
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 7
+16 3
+16 2
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 2
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 3
+16 3
+16 3
+16 3
+16 4
+16 3
+16 3
+16 5
+16 4
+16 4
+16 2
+16 3
+16 3
+16 3
+16 3
+16 3
+16 2
+16 3
+16 3
+16 4
+16 3
diff --git a/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..bf2a90bc9b45a4da3db4fa9f5133c5ac8d68f6ed
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2489.75
+Mediana        = 2497
+Variancia      = 25042.83
+Desvio Padrao  = 158.25
+Coef. Variacao = 0.06
+Min            = 2071
+Max            = 2776
+Esq, Dir.      = 2465.9883 , 2513.5117
diff --git a/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5efc7d47e41c767b4d49fe4a9ffb8bf859ac16ee
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+16384 2644
+16384 2411
+16384 2479
+16384 2497
+16384 2394
+16384 2746
+16384 2724
+16384 2305
+16384 2425
+16384 2535
+16384 2401
+16384 2607
+16384 2527
+16384 2127
+16384 2449
+16384 2698
+16384 2717
+16384 2426
+16384 2404
+16384 2377
+16384 2244
+16384 2426
+16384 2704
+16384 2401
+16384 2147
+16384 2723
+16384 2515
+16384 2509
+16384 2195
+16384 2532
+16384 2343
+16384 2352
+16384 2573
+16384 2144
+16384 2605
+16384 2312
+16384 2497
+16384 2355
+16384 2551
+16384 2768
+16384 2739
+16384 2548
+16384 2262
+16384 2606
+16384 2410
+16384 2568
+16384 2746
+16384 2456
+16384 2491
+16384 2365
+16384 2433
+16384 2555
+16384 2541
+16384 2579
+16384 2374
+16384 2481
+16384 2469
+16384 2525
+16384 2534
+16384 2413
+16384 2472
+16384 2630
+16384 2609
+16384 2638
+16384 2526
+16384 2476
+16384 2627
+16384 2482
+16384 2071
+16384 2589
+16384 2552
+16384 2687
+16384 2238
+16384 2598
+16384 2563
+16384 2380
+16384 2540
+16384 2557
+16384 2494
+16384 2637
+16384 2557
+16384 2687
+16384 2644
+16384 2564
+16384 2438
+16384 2398
+16384 2652
+16384 2776
+16384 2437
+16384 2577
+16384 2647
+16384 2589
+16384 2479
+16384 2487
+16384 2645
+16384 2701
+16384 2491
+16384 2448
+16384 2597
+16384 2325
+16384 2241
+16384 2372
+16384 2266
+16384 2701
+16384 2603
+16384 2265
+16384 2338
+16384 2200
+16384 2210
+16384 2488
+16384 2461
+16384 2190
+16384 2601
+16384 2685
+16384 2567
+16384 2373
+16384 2660
+16384 2605
+16384 2101
+16384 2454
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..a134dee025b6113df6f516ed8bd40575d5607c49
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (123ms)
+    ✓ LayoutSQL;n=2048 (162ms)
+    ✓ LayoutSQL;n=4096 (362ms)
+    ✓ LayoutSQL;n=8192 (871ms)
+    ✓ LayoutSQL;n=16384 (2557ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7730ms)
+    ✓ LayoutSQL;n=65536 (27001ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..950c1611b2df7f98392ff5f9d52aae478231b6c2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (145ms)
+    ✓ LayoutSQL;n=4096 (331ms)
+    ✓ LayoutSQL;n=8192 (783ms)
+    ✓ LayoutSQL;n=16384 (2238ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6926ms)
+    ✓ LayoutSQL;n=65536 (24348ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test
new file mode 100644
index 0000000000000000000000000000000000000000..5cc228bd510406c66a8d0749cd2a2fb4d217915a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (154ms)
+    ✓ LayoutSQL;n=4096 (344ms)
+    ✓ LayoutSQL;n=8192 (799ms)
+    ✓ LayoutSQL;n=16384 (2338ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7009ms)
+    ✓ LayoutSQL;n=65536 (24497ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (5ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test
new file mode 100644
index 0000000000000000000000000000000000000000..b59106ecebad9fe11b67ff340206cec338952ea2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (368ms)
+    ✓ LayoutSQL;n=8192 (856ms)
+    ✓ LayoutSQL;n=16384 (2491ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7759ms)
+    ✓ LayoutSQL;n=65536 (27541ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test
new file mode 100644
index 0000000000000000000000000000000000000000..eb1810bc75817115eb7c241d03aaa72a38ed23be
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (126ms)
+    ✓ LayoutSQL;n=2048 (150ms)
+    ✓ LayoutSQL;n=4096 (331ms)
+    ✓ LayoutSQL;n=8192 (766ms)
+    ✓ LayoutSQL;n=16384 (2210ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6662ms)
+    ✓ LayoutSQL;n=65536 (23519ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (34s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test
new file mode 100644
index 0000000000000000000000000000000000000000..e29072290e7a336e374a4b15e65024ac6f46c697
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (121ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (349ms)
+    ✓ LayoutSQL;n=8192 (825ms)
+    ✓ LayoutSQL;n=16384 (2377ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8379ms)
+    ✓ LayoutSQL;n=65536 (30250ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test
new file mode 100644
index 0000000000000000000000000000000000000000..66efce5ffc39213633f58c88c2f2bf270df9d4a5
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (131ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (369ms)
+    ✓ LayoutSQL;n=8192 (891ms)
+    ✓ LayoutSQL;n=16384 (2598ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7906ms)
+    ✓ LayoutSQL;n=65536 (28110ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test
new file mode 100644
index 0000000000000000000000000000000000000000..7972477e16358b2ad67a56f92c354e91d75271b6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (124ms)
+    ✓ LayoutSQL;n=2048 (168ms)
+    ✓ LayoutSQL;n=4096 (387ms)
+    ✓ LayoutSQL;n=8192 (902ms)
+    ✓ LayoutSQL;n=16384 (2638ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8282ms)
+    ✓ LayoutSQL;n=65536 (29349ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test
new file mode 100644
index 0000000000000000000000000000000000000000..02bbaffd35eabd8988362fbd84e214ebdd6ae6b0
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (174ms)
+    ✓ LayoutSQL;n=4096 (399ms)
+    ✓ LayoutSQL;n=8192 (950ms)
+    ✓ LayoutSQL;n=16384 (2746ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8317ms)
+    ✓ LayoutSQL;n=65536 (29540ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test
new file mode 100644
index 0000000000000000000000000000000000000000..05f1788c77bbf0b59e5a2f5b193edefc7f06951a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (140ms)
+    ✓ LayoutSQL;n=2048 (173ms)
+    ✓ LayoutSQL;n=4096 (359ms)
+    ✓ LayoutSQL;n=8192 (747ms)
+    ✓ LayoutSQL;n=16384 (2144ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6483ms)
+    ✓ LayoutSQL;n=65536 (22667ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (33s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test
new file mode 100644
index 0000000000000000000000000000000000000000..e78c20b302dd20b572fd9b94f25ba8fadc35d8af
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (172ms)
+    ✓ LayoutSQL;n=4096 (384ms)
+    ✓ LayoutSQL;n=8192 (929ms)
+    ✓ LayoutSQL;n=16384 (2609ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7722ms)
+    ✓ LayoutSQL;n=65536 (27199ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..b1c6dd0682dbd39b9d698c3aa8fd50207a317fa1
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (120ms)
+    ✓ LayoutSQL;n=2048 (147ms)
+    ✓ LayoutSQL;n=4096 (331ms)
+    ✓ LayoutSQL;n=8192 (744ms)
+    ✓ LayoutSQL;n=16384 (2101ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7155ms)
+    ✓ LayoutSQL;n=65536 (25593ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test
new file mode 100644
index 0000000000000000000000000000000000000000..b1be3e24ba384105709140f9468fdab7d92bdd06
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (353ms)
+    ✓ LayoutSQL;n=8192 (857ms)
+    ✓ LayoutSQL;n=16384 (2413ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7424ms)
+    ✓ LayoutSQL;n=65536 (26025ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test
new file mode 100644
index 0000000000000000000000000000000000000000..af09d4413626168e998bae62b5c32ad055b899b6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (119ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (364ms)
+    ✓ LayoutSQL;n=8192 (855ms)
+    ✓ LayoutSQL;n=16384 (2497ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7813ms)
+    ✓ LayoutSQL;n=65536 (27931ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test
new file mode 100644
index 0000000000000000000000000000000000000000..27cd4ced0766ca560187e9b43d03193e87d620a9
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (135ms)
+    ✓ LayoutSQL;n=2048 (158ms)
+    ✓ LayoutSQL;n=4096 (313ms)
+    ✓ LayoutSQL;n=8192 (748ms)
+    ✓ LayoutSQL;n=16384 (2127ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6459ms)
+    ✓ LayoutSQL;n=65536 (22472ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (32s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test
new file mode 100644
index 0000000000000000000000000000000000000000..e57c1b2f3471398a1fdfdaa49100f0abbde24022
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (145ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (373ms)
+    ✓ LayoutSQL;n=8192 (881ms)
+    ✓ LayoutSQL;n=16384 (2563ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7733ms)
+    ✓ LayoutSQL;n=65536 (27372ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (23ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test
new file mode 100644
index 0000000000000000000000000000000000000000..5d305e543ca0c4764378715b68e1fdd9ae4fd2a1
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (149ms)
+    ✓ LayoutSQL;n=2048 (175ms)
+    ✓ LayoutSQL;n=4096 (392ms)
+    ✓ LayoutSQL;n=8192 (923ms)
+    ✓ LayoutSQL;n=16384 (2739ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8263ms)
+    ✓ LayoutSQL;n=65536 (28896ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (28ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test
new file mode 100644
index 0000000000000000000000000000000000000000..5640198e2090a73347f5ce17fc6ddca30cd3940b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (151ms)
+    ✓ LayoutSQL;n=4096 (337ms)
+    ✓ LayoutSQL;n=8192 (780ms)
+    ✓ LayoutSQL;n=16384 (2355ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7515ms)
+    ✓ LayoutSQL;n=65536 (26365ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (28ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test
new file mode 100644
index 0000000000000000000000000000000000000000..3a42f0331aa9337e8371bf6653afa467a9d71e1c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (130ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (408ms)
+    ✓ LayoutSQL;n=8192 (863ms)
+    ✓ LayoutSQL;n=16384 (2564ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7900ms)
+    ✓ LayoutSQL;n=65536 (27901ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test
new file mode 100644
index 0000000000000000000000000000000000000000..57050821d87fa0df5d8d70ef46cb49a81138a2b4
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (135ms)
+    ✓ LayoutSQL;n=2048 (189ms)
+    ✓ LayoutSQL;n=4096 (362ms)
+    ✓ LayoutSQL;n=8192 (878ms)
+    ✓ LayoutSQL;n=16384 (2605ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8201ms)
+    ✓ LayoutSQL;n=65536 (29274ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (2ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test
new file mode 100644
index 0000000000000000000000000000000000000000..3a6e2dbbf755ec735ed7537b382dbb603025598c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (121ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (358ms)
+    ✓ LayoutSQL;n=8192 (880ms)
+    ✓ LayoutSQL;n=16384 (2534ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7723ms)
+    ✓ LayoutSQL;n=65536 (27450ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test
new file mode 100644
index 0000000000000000000000000000000000000000..1c0daa811068153e0301f0cc222c78c217902ca6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (168ms)
+    ✓ LayoutSQL;n=4096 (371ms)
+    ✓ LayoutSQL;n=8192 (891ms)
+    ✓ LayoutSQL;n=16384 (2645ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8266ms)
+    ✓ LayoutSQL;n=65536 (29262ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..56e4c2d908c03c031dd13e651c4dec48089f7c03
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (119ms)
+    ✓ LayoutSQL;n=2048 (156ms)
+    ✓ LayoutSQL;n=4096 (355ms)
+    ✓ LayoutSQL;n=8192 (837ms)
+    ✓ LayoutSQL;n=16384 (2469ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7414ms)
+    ✓ LayoutSQL;n=65536 (25870ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test
new file mode 100644
index 0000000000000000000000000000000000000000..dbe539b0da9a723cb21beafa886be580e5bc3521
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (131ms)
+    ✓ LayoutSQL;n=2048 (182ms)
+    ✓ LayoutSQL;n=4096 (371ms)
+    ✓ LayoutSQL;n=8192 (893ms)
+    ✓ LayoutSQL;n=16384 (2627ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8247ms)
+    ✓ LayoutSQL;n=65536 (28986ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test
new file mode 100644
index 0000000000000000000000000000000000000000..2ed92429bbdc35cc69610f62726be5fee2d84215
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (378ms)
+    ✓ LayoutSQL;n=8192 (911ms)
+    ✓ LayoutSQL;n=16384 (2637ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8252ms)
+    ✓ LayoutSQL;n=65536 (29204ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test
new file mode 100644
index 0000000000000000000000000000000000000000..1415752dc9341555842bfe337d82284e765f89d0
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (141ms)
+    ✓ LayoutSQL;n=2048 (170ms)
+    ✓ LayoutSQL;n=4096 (387ms)
+    ✓ LayoutSQL;n=8192 (911ms)
+    ✓ LayoutSQL;n=16384 (2660ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8226ms)
+    ✓ LayoutSQL;n=65536 (29432ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test
new file mode 100644
index 0000000000000000000000000000000000000000..e78e5f0d19df50b61ef11639ab354f034d4296e9
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (361ms)
+    ✓ LayoutSQL;n=8192 (862ms)
+    ✓ LayoutSQL;n=16384 (2494ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7736ms)
+    ✓ LayoutSQL;n=65536 (27256ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test
new file mode 100644
index 0000000000000000000000000000000000000000..0eb6ebb8113d1b24c70107d52408b8ea30ba7be6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (104ms)
+    ✓ LayoutSQL;n=2048 (171ms)
+    ✓ LayoutSQL;n=4096 (391ms)
+    ✓ LayoutSQL;n=8192 (862ms)
+    ✓ LayoutSQL;n=16384 (2525ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7767ms)
+    ✓ LayoutSQL;n=65536 (27386ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test
new file mode 100644
index 0000000000000000000000000000000000000000..24c5b900fb1893745d8d1b30bdb01846c428f617
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (169ms)
+    ✓ LayoutSQL;n=4096 (380ms)
+    ✓ LayoutSQL;n=8192 (908ms)
+    ✓ LayoutSQL;n=16384 (2724ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8742ms)
+    ✓ LayoutSQL;n=65536 (30671ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test
new file mode 100644
index 0000000000000000000000000000000000000000..4f3f09ea776d2aa88ab1567c0135abb95f0eb3db
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (364ms)
+    ✓ LayoutSQL;n=8192 (879ms)
+    ✓ LayoutSQL;n=16384 (2532ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7843ms)
+    ✓ LayoutSQL;n=65536 (27447ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test
new file mode 100644
index 0000000000000000000000000000000000000000..0d35958ade22db0b7f5666d125e3216c3e54d980
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (105ms)
+    ✓ LayoutSQL;n=2048 (194ms)
+    ✓ LayoutSQL;n=4096 (365ms)
+    ✓ LayoutSQL;n=8192 (843ms)
+    ✓ LayoutSQL;n=16384 (2449ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7613ms)
+    ✓ LayoutSQL;n=65536 (27230ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test
new file mode 100644
index 0000000000000000000000000000000000000000..092a2d03b4ab67ed613280e9a4153f0c7b5d38aa
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (141ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (354ms)
+    ✓ LayoutSQL;n=8192 (831ms)
+    ✓ LayoutSQL;n=16384 (2410ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7686ms)
+    ✓ LayoutSQL;n=65536 (26808ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test
new file mode 100644
index 0000000000000000000000000000000000000000..22f68b56e3e95c9fb198691a1d52929fa790aaa2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (107ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (367ms)
+    ✓ LayoutSQL;n=8192 (793ms)
+    ✓ LayoutSQL;n=16384 (2305ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7058ms)
+    ✓ LayoutSQL;n=65536 (25391ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..e94b37f3d75a5e16d4bfd042bc7c402b86c4b5b8
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (138ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (381ms)
+    ✓ LayoutSQL;n=8192 (876ms)
+    ✓ LayoutSQL;n=16384 (2597ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8192ms)
+    ✓ LayoutSQL;n=65536 (30643ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test
new file mode 100644
index 0000000000000000000000000000000000000000..f719fbc4761401708723eabac48e5c7b52e521b2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (118ms)
+    ✓ LayoutSQL;n=2048 (175ms)
+    ✓ LayoutSQL;n=4096 (413ms)
+    ✓ LayoutSQL;n=8192 (925ms)
+    ✓ LayoutSQL;n=16384 (2698ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8589ms)
+    ✓ LayoutSQL;n=65536 (30358ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (8ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test
new file mode 100644
index 0000000000000000000000000000000000000000..06b46f5c3ff7b819d068c202785f81ef78a30d5b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (108ms)
+    ✓ LayoutSQL;n=2048 (175ms)
+    ✓ LayoutSQL;n=4096 (393ms)
+    ✓ LayoutSQL;n=8192 (872ms)
+    ✓ LayoutSQL;n=16384 (2535ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7845ms)
+    ✓ LayoutSQL;n=65536 (27618ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test
new file mode 100644
index 0000000000000000000000000000000000000000..de89cefc9b87d8aa3ce42db2e039b8910a8645c7
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (157ms)
+    ✓ LayoutSQL;n=4096 (357ms)
+    ✓ LayoutSQL;n=8192 (863ms)
+    ✓ LayoutSQL;n=16384 (2454ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7559ms)
+    ✓ LayoutSQL;n=65536 (27111ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test
new file mode 100644
index 0000000000000000000000000000000000000000..b4ac6426d2c0adaa97fe7d0e9115b6b525bb79f5
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (102ms)
+    ✓ LayoutSQL;n=2048 (192ms)
+    ✓ LayoutSQL;n=4096 (367ms)
+    ✓ LayoutSQL;n=8192 (893ms)
+    ✓ LayoutSQL;n=16384 (2567ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8074ms)
+    ✓ LayoutSQL;n=65536 (28610ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test
new file mode 100644
index 0000000000000000000000000000000000000000..2dca97da7ee14f5dd979b70ef9b3070bbe5f68a6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (116ms)
+    ✓ LayoutSQL;n=2048 (206ms)
+    ✓ LayoutSQL;n=4096 (386ms)
+    ✓ LayoutSQL;n=8192 (911ms)
+    ✓ LayoutSQL;n=16384 (2746ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8229ms)
+    ✓ LayoutSQL;n=65536 (29301ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test
new file mode 100644
index 0000000000000000000000000000000000000000..e723c9990b8759669b850d3def5559e06ce3dbcc
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (105ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (372ms)
+    ✓ LayoutSQL;n=8192 (829ms)
+    ✓ LayoutSQL;n=16384 (2374ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7235ms)
+    ✓ LayoutSQL;n=65536 (25558ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test
new file mode 100644
index 0000000000000000000000000000000000000000..f5cfbf5c2618352032963d4437638d4f74d55bbc
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (124ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (363ms)
+    ✓ LayoutSQL;n=8192 (867ms)
+    ✓ LayoutSQL;n=16384 (2541ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7908ms)
+    ✓ LayoutSQL;n=65536 (27782ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test
new file mode 100644
index 0000000000000000000000000000000000000000..9372403e79c35c3a7d6140090630a9e5e180aa89
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (102ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (369ms)
+    ✓ LayoutSQL;n=8192 (802ms)
+    ✓ LayoutSQL;n=16384 (2404ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7380ms)
+    ✓ LayoutSQL;n=65536 (26499ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test
new file mode 100644
index 0000000000000000000000000000000000000000..2c879b7ed186d0fe13e34ccc92b66f4e4dd2cb9b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (120ms)
+    ✓ LayoutSQL;n=2048 (196ms)
+    ✓ LayoutSQL;n=4096 (366ms)
+    ✓ LayoutSQL;n=8192 (854ms)
+    ✓ LayoutSQL;n=16384 (2515ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7644ms)
+    ✓ LayoutSQL;n=65536 (27119ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test
new file mode 100644
index 0000000000000000000000000000000000000000..0768e04f688bae2be7a977f333641e34131bcc88
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (135ms)
+    ✓ LayoutSQL;n=2048 (172ms)
+    ✓ LayoutSQL;n=4096 (388ms)
+    ✓ LayoutSQL;n=8192 (956ms)
+    ✓ LayoutSQL;n=16384 (2776ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8760ms)
+    ✓ LayoutSQL;n=65536 (30707ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..d7fc263d68de97dcd0215fb1771fe1f603aed683
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (123ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (371ms)
+    ✓ LayoutSQL;n=8192 (906ms)
+    ✓ LayoutSQL;n=16384 (2723ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8255ms)
+    ✓ LayoutSQL;n=65536 (28605ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test
new file mode 100644
index 0000000000000000000000000000000000000000..c026bf5ad1881b74d729ffc4630e900449e7d861
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (124ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (396ms)
+    ✓ LayoutSQL;n=8192 (914ms)
+    ✓ LayoutSQL;n=16384 (2647ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8194ms)
+    ✓ LayoutSQL;n=65536 (29014ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..d967deb7358e22d13fd64e5b86ac29a8f27fc385
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (118ms)
+    ✓ LayoutSQL;n=2048 (158ms)
+    ✓ LayoutSQL;n=4096 (352ms)
+    ✓ LayoutSQL;n=8192 (810ms)
+    ✓ LayoutSQL;n=16384 (2365ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7748ms)
+    ✓ LayoutSQL;n=65536 (27443ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..c47355177e620de77eeeeccc0a8fb95722b96f18
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (137ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (372ms)
+    ✓ LayoutSQL;n=8192 (860ms)
+    ✓ LayoutSQL;n=16384 (2461ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7516ms)
+    ✓ LayoutSQL;n=65536 (25959ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (28ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..3f1a8803b83ec4dc321d1e562d81a7f314b7ca8e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (119ms)
+    ✓ LayoutSQL;n=2048 (152ms)
+    ✓ LayoutSQL;n=4096 (365ms)
+    ✓ LayoutSQL;n=8192 (861ms)
+    ✓ LayoutSQL;n=16384 (2644ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8312ms)
+    ✓ LayoutSQL;n=65536 (29406ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..25f0d5107e18efaf9904ea4d29cf315d4b9d2be9
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (154ms)
+    ✓ LayoutSQL;n=4096 (343ms)
+    ✓ LayoutSQL;n=8192 (802ms)
+    ✓ LayoutSQL;n=16384 (2266ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6641ms)
+    ✓ LayoutSQL;n=65536 (22914ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (33s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test
new file mode 100644
index 0000000000000000000000000000000000000000..6c8c996b8d94e6d37b3688b222fceef1fcdfecd3
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (108ms)
+    ✓ LayoutSQL;n=2048 (172ms)
+    ✓ LayoutSQL;n=4096 (401ms)
+    ✓ LayoutSQL;n=8192 (899ms)
+    ✓ LayoutSQL;n=16384 (2607ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8101ms)
+    ✓ LayoutSQL;n=65536 (28733ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test
new file mode 100644
index 0000000000000000000000000000000000000000..cff809ca9180b28dfdfdc8025147edac81c8a793
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (131ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (356ms)
+    ✓ LayoutSQL;n=8192 (845ms)
+    ✓ LayoutSQL;n=16384 (2437ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7277ms)
+    ✓ LayoutSQL;n=65536 (25402ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test
new file mode 100644
index 0000000000000000000000000000000000000000..d785331abb5ef0245f72b6105a3b3c0f3fd4595d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (121ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (350ms)
+    ✓ LayoutSQL;n=8192 (814ms)
+    ✓ LayoutSQL;n=16384 (2372ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7178ms)
+    ✓ LayoutSQL;n=65536 (24964ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test
new file mode 100644
index 0000000000000000000000000000000000000000..200ffb9492132267a55b6734ea0c560964bbb38a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (125ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (376ms)
+    ✓ LayoutSQL;n=8192 (880ms)
+    ✓ LayoutSQL;n=16384 (2551ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7734ms)
+    ✓ LayoutSQL;n=65536 (27400ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test
new file mode 100644
index 0000000000000000000000000000000000000000..42e9c08d594e94e92a8cd74edfc615e5777a50fc
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (104ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (390ms)
+    ✓ LayoutSQL;n=8192 (899ms)
+    ✓ LayoutSQL;n=16384 (2601ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8178ms)
+    ✓ LayoutSQL;n=65536 (28457ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test
new file mode 100644
index 0000000000000000000000000000000000000000..1500ba6cef7148d8dbfd6c6dd8afdd5d3fac7efb
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (142ms)
+    ✓ LayoutSQL;n=2048 (186ms)
+    ✓ LayoutSQL;n=4096 (399ms)
+    ✓ LayoutSQL;n=8192 (892ms)
+    ✓ LayoutSQL;n=16384 (2717ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8158ms)
+    ✓ LayoutSQL;n=65536 (28082ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test
new file mode 100644
index 0000000000000000000000000000000000000000..96b3b160b205caf84d9e3a2b6e4cc94ed8415c13
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (102ms)
+    ✓ LayoutSQL;n=2048 (178ms)
+    ✓ LayoutSQL;n=4096 (356ms)
+    ✓ LayoutSQL;n=8192 (835ms)
+    ✓ LayoutSQL;n=16384 (2426ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7385ms)
+    ✓ LayoutSQL;n=65536 (25677ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test
new file mode 100644
index 0000000000000000000000000000000000000000..c503fdc2873840155f0529e492c5afe77fc80700
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (125ms)
+    ✓ LayoutSQL;n=2048 (163ms)
+    ✓ LayoutSQL;n=4096 (360ms)
+    ✓ LayoutSQL;n=8192 (845ms)
+    ✓ LayoutSQL;n=16384 (2481ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7603ms)
+    ✓ LayoutSQL;n=65536 (26874ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test
new file mode 100644
index 0000000000000000000000000000000000000000..1e98e39efd62cefbfdb6e86cdbd8d8df34694348
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (142ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (378ms)
+    ✓ LayoutSQL;n=8192 (913ms)
+    ✓ LayoutSQL;n=16384 (2687ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8303ms)
+    ✓ LayoutSQL;n=65536 (26107ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (34ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..d2a1e0fcf6280370f3160ad4bf946eb37d0bdbda
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (360ms)
+    ✓ LayoutSQL;n=8192 (851ms)
+    ✓ LayoutSQL;n=16384 (2479ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7442ms)
+    ✓ LayoutSQL;n=65536 (26113ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test
new file mode 100644
index 0000000000000000000000000000000000000000..da9ae72d25c9f56464cb7d2e1e96f3b532bd4c04
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (132ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (370ms)
+    ✓ LayoutSQL;n=8192 (886ms)
+    ✓ LayoutSQL;n=16384 (2606ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7981ms)
+    ✓ LayoutSQL;n=65536 (28083ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test
new file mode 100644
index 0000000000000000000000000000000000000000..352953190bc355cdf2bc36b4242b2c483ec733be
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (101ms)
+    ✓ LayoutSQL;n=2048 (158ms)
+    ✓ LayoutSQL;n=4096 (369ms)
+    ✓ LayoutSQL;n=8192 (821ms)
+    ✓ LayoutSQL;n=16384 (2373ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7195ms)
+    ✓ LayoutSQL;n=65536 (25170ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (2ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test
new file mode 100644
index 0000000000000000000000000000000000000000..6f2ee3b01488c0a2741cbc5be5a14bb9be430165
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (173ms)
+    ✓ LayoutSQL;n=4096 (392ms)
+    ✓ LayoutSQL;n=8192 (934ms)
+    ✓ LayoutSQL;n=16384 (2401ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7175ms)
+    ✓ LayoutSQL;n=65536 (25015ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (8ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test
new file mode 100644
index 0000000000000000000000000000000000000000..d8f6a2ced1feff026270fadf250d1820622cadc1
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (100ms)
+    ✓ LayoutSQL;n=2048 (158ms)
+    ✓ LayoutSQL;n=4096 (368ms)
+    ✓ LayoutSQL;n=8192 (817ms)
+    ✓ LayoutSQL;n=16384 (2380ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7318ms)
+    ✓ LayoutSQL;n=65536 (26145ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test
new file mode 100644
index 0000000000000000000000000000000000000000..1eb4e0f7136b8e6253106b910b2831f8c60b5732
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (140ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (363ms)
+    ✓ LayoutSQL;n=8192 (880ms)
+    ✓ LayoutSQL;n=16384 (2526ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7604ms)
+    ✓ LayoutSQL;n=65536 (26573ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test
new file mode 100644
index 0000000000000000000000000000000000000000..b9f7ae061d61c2713c08eb8b03459ceb3aea660e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (101ms)
+    ✓ LayoutSQL;n=2048 (169ms)
+    ✓ LayoutSQL;n=4096 (388ms)
+    ✓ LayoutSQL;n=8192 (876ms)
+    ✓ LayoutSQL;n=16384 (2603ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7905ms)
+    ✓ LayoutSQL;n=65536 (28271ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test
new file mode 100644
index 0000000000000000000000000000000000000000..5e7376287ffc7199c12d75da73cb2fb177c86976
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (103ms)
+    ✓ LayoutSQL;n=2048 (184ms)
+    ✓ LayoutSQL;n=4096 (355ms)
+    ✓ LayoutSQL;n=8192 (848ms)
+    ✓ LayoutSQL;n=16384 (2433ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7704ms)
+    ✓ LayoutSQL;n=65536 (27172ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test
new file mode 100644
index 0000000000000000000000000000000000000000..729c0c5d6e6ae7784e101b46acb53b6ae1895731
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (123ms)
+    ✓ LayoutSQL;n=2048 (154ms)
+    ✓ LayoutSQL;n=4096 (354ms)
+    ✓ LayoutSQL;n=8192 (833ms)
+    ✓ LayoutSQL;n=16384 (2425ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7549ms)
+    ✓ LayoutSQL;n=65536 (26128ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test
new file mode 100644
index 0000000000000000000000000000000000000000..7989be4c5131d337b00a7b95f27d91762d28ea51
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (370ms)
+    ✓ LayoutSQL;n=8192 (861ms)
+    ✓ LayoutSQL;n=16384 (2568ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7644ms)
+    ✓ LayoutSQL;n=65536 (26393ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test
new file mode 100644
index 0000000000000000000000000000000000000000..28795e2052cdb391921e9d998a0ce2d67e155dd1
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (355ms)
+    ✓ LayoutSQL;n=8192 (860ms)
+    ✓ LayoutSQL;n=16384 (2482ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7788ms)
+    ✓ LayoutSQL;n=65536 (28086ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (2ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..c56a9f3e7243908d3718858e1792b80ffdc0d170
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (137ms)
+    ✓ LayoutSQL;n=2048 (152ms)
+    ✓ LayoutSQL;n=4096 (340ms)
+    ✓ LayoutSQL;n=8192 (782ms)
+    ✓ LayoutSQL;n=16384 (2244ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6769ms)
+    ✓ LayoutSQL;n=65536 (23958ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (34s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..1cdfe90c423e47e5cba724fac094b5a1af552d45
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (120ms)
+    ✓ LayoutSQL;n=2048 (157ms)
+    ✓ LayoutSQL;n=4096 (350ms)
+    ✓ LayoutSQL;n=8192 (826ms)
+    ✓ LayoutSQL;n=16384 (2401ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7321ms)
+    ✓ LayoutSQL;n=65536 (26085ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test
new file mode 100644
index 0000000000000000000000000000000000000000..a25ed6a8edce5c65ff65748a862cc3cdbe234365
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (118ms)
+    ✓ LayoutSQL;n=2048 (200ms)
+    ✓ LayoutSQL;n=4096 (373ms)
+    ✓ LayoutSQL;n=8192 (886ms)
+    ✓ LayoutSQL;n=16384 (2644ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8400ms)
+    ✓ LayoutSQL;n=65536 (30538ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (23ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test
new file mode 100644
index 0000000000000000000000000000000000000000..ad0a15c028d3c096a167f0cb22e452100625c5f6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (118ms)
+    ✓ LayoutSQL;n=2048 (148ms)
+    ✓ LayoutSQL;n=4096 (349ms)
+    ✓ LayoutSQL;n=8192 (734ms)
+    ✓ LayoutSQL;n=16384 (2071ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6929ms)
+    ✓ LayoutSQL;n=65536 (25575ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test
new file mode 100644
index 0000000000000000000000000000000000000000..056b5a4335621c75fc5ad2de59d16724578dda8d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (134ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (358ms)
+    ✓ LayoutSQL;n=8192 (848ms)
+    ✓ LayoutSQL;n=16384 (2479ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7366ms)
+    ✓ LayoutSQL;n=65536 (25840ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (2ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test
new file mode 100644
index 0000000000000000000000000000000000000000..1cfd06398b53b393289869066547b86f8c9d1dbb
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (134ms)
+    ✓ LayoutSQL;n=2048 (153ms)
+    ✓ LayoutSQL;n=4096 (340ms)
+    ✓ LayoutSQL;n=8192 (780ms)
+    ✓ LayoutSQL;n=16384 (2195ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6553ms)
+    ✓ LayoutSQL;n=65536 (22954ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (33s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test
new file mode 100644
index 0000000000000000000000000000000000000000..923f051830d3dfa289d2d4f50bd5bd35c0c221d3
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (138ms)
+    ✓ LayoutSQL;n=2048 (154ms)
+    ✓ LayoutSQL;n=4096 (346ms)
+    ✓ LayoutSQL;n=8192 (745ms)
+    ✓ LayoutSQL;n=16384 (2147ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6601ms)
+    ✓ LayoutSQL;n=65536 (22898ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (33s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test
new file mode 100644
index 0000000000000000000000000000000000000000..f36d1444e3d4407dfc545c5bfc6cb951ae2e0489
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (116ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (336ms)
+    ✓ LayoutSQL;n=8192 (781ms)
+    ✓ LayoutSQL;n=16384 (2190ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6686ms)
+    ✓ LayoutSQL;n=65536 (23356ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (34s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test
new file mode 100644
index 0000000000000000000000000000000000000000..fdd3cbf88d1a0d84d5d3c2d606710d93149966a2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (481ms)
+    ✓ LayoutSQL;n=8192 (964ms)
+    ✓ LayoutSQL;n=16384 (2426ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7238ms)
+    ✓ LayoutSQL;n=65536 (25499ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test
new file mode 100644
index 0000000000000000000000000000000000000000..89263f6faf50f80d65ffad3ed994d48d7515745c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (122ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (354ms)
+    ✓ LayoutSQL;n=8192 (849ms)
+    ✓ LayoutSQL;n=16384 (2488ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7605ms)
+    ✓ LayoutSQL;n=65536 (26178ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (2ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test
new file mode 100644
index 0000000000000000000000000000000000000000..694d2737eae1e2e03c6aa3c435798dd4e3903dd2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (373ms)
+    ✓ LayoutSQL;n=8192 (880ms)
+    ✓ LayoutSQL;n=16384 (2540ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7711ms)
+    ✓ LayoutSQL;n=65536 (25719ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test
new file mode 100644
index 0000000000000000000000000000000000000000..57a19a2afbaf55e761ca986defb727bd62116bbe
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (121ms)
+    ✓ LayoutSQL;n=2048 (152ms)
+    ✓ LayoutSQL;n=4096 (343ms)
+    ✓ LayoutSQL;n=8192 (784ms)
+    ✓ LayoutSQL;n=16384 (2262ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6833ms)
+    ✓ LayoutSQL;n=65536 (24160ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..7062fcf7a37372f6b6fb9bae7af38c6175090df0
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (137ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (355ms)
+    ✓ LayoutSQL;n=8192 (818ms)
+    ✓ LayoutSQL;n=16384 (2325ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6926ms)
+    ✓ LayoutSQL;n=65536 (24402ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test
new file mode 100644
index 0000000000000000000000000000000000000000..0d2513056aadcc581e714a1df62ca8c29751105e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (364ms)
+    ✓ LayoutSQL;n=8192 (864ms)
+    ✓ LayoutSQL;n=16384 (2472ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7357ms)
+    ✓ LayoutSQL;n=65536 (26255ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test
new file mode 100644
index 0000000000000000000000000000000000000000..0856f301fa2998d830a8c2c88027c023d5841854
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (137ms)
+    ✓ LayoutSQL;n=2048 (163ms)
+    ✓ LayoutSQL;n=4096 (375ms)
+    ✓ LayoutSQL;n=8192 (876ms)
+    ✓ LayoutSQL;n=16384 (2552ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7832ms)
+    ✓ LayoutSQL;n=65536 (27665ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (35ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test
new file mode 100644
index 0000000000000000000000000000000000000000..a204b37c58ced9d5bf38536d51f1e5039d8494c1
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (146ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (363ms)
+    ✓ LayoutSQL;n=8192 (876ms)
+    ✓ LayoutSQL;n=16384 (2573ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7805ms)
+    ✓ LayoutSQL;n=65536 (27834ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test
new file mode 100644
index 0000000000000000000000000000000000000000..991763b9aadae8cf1d0063c485034a9c743e71f8
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (130ms)
+    ✓ LayoutSQL;n=2048 (154ms)
+    ✓ LayoutSQL;n=4096 (346ms)
+    ✓ LayoutSQL;n=8192 (822ms)
+    ✓ LayoutSQL;n=16384 (2398ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7253ms)
+    ✓ LayoutSQL;n=65536 (25316ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test
new file mode 100644
index 0000000000000000000000000000000000000000..626e40752cf9aff9b20b3a75af20598866ca7f90
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (119ms)
+    ✓ LayoutSQL;n=2048 (153ms)
+    ✓ LayoutSQL;n=4096 (347ms)
+    ✓ LayoutSQL;n=8192 (795ms)
+    ✓ LayoutSQL;n=16384 (2241ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7222ms)
+    ✓ LayoutSQL;n=65536 (23552ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test
new file mode 100644
index 0000000000000000000000000000000000000000..b5298e50d15f8d6710a8ce541ac8df1d535e6b0d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (151ms)
+    ✓ LayoutSQL;n=2048 (173ms)
+    ✓ LayoutSQL;n=4096 (395ms)
+    ✓ LayoutSQL;n=8192 (952ms)
+    ✓ LayoutSQL;n=16384 (2200ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6619ms)
+    ✓ LayoutSQL;n=65536 (22923ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (34s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test
new file mode 100644
index 0000000000000000000000000000000000000000..90869039ff5c5de659e1f180e471ee21d057f288
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (143ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (399ms)
+    ✓ LayoutSQL;n=8192 (856ms)
+    ✓ LayoutSQL;n=16384 (2448ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7346ms)
+    ✓ LayoutSQL;n=65536 (25491ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (31ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test
new file mode 100644
index 0000000000000000000000000000000000000000..b835a087e6bfcb5b9b50be9517752a1831c1da0b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (119ms)
+    ✓ LayoutSQL;n=2048 (157ms)
+    ✓ LayoutSQL;n=4096 (351ms)
+    ✓ LayoutSQL;n=8192 (815ms)
+    ✓ LayoutSQL;n=16384 (2352ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7083ms)
+    ✓ LayoutSQL;n=65536 (24944ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (7ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (36s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test
new file mode 100644
index 0000000000000000000000000000000000000000..2be0c53e4385a1afabf9a997078574ed0b0cbbad
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (150ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (374ms)
+    ✓ LayoutSQL;n=8192 (883ms)
+    ✓ LayoutSQL;n=16384 (2555ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7904ms)
+    ✓ LayoutSQL;n=65536 (27487ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test
new file mode 100644
index 0000000000000000000000000000000000000000..c1eed14c0f98e83a797597d1abe4e86cac9feb43
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (144ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (388ms)
+    ✓ LayoutSQL;n=8192 (930ms)
+    ✓ LayoutSQL;n=16384 (2704ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8400ms)
+    ✓ LayoutSQL;n=65536 (29085ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..b619485878944a5a670aae2a6831f0b640fe0b78
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (135ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (349ms)
+    ✓ LayoutSQL;n=8192 (864ms)
+    ✓ LayoutSQL;n=16384 (2487ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7721ms)
+    ✓ LayoutSQL;n=65536 (27442ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test
new file mode 100644
index 0000000000000000000000000000000000000000..19fad78563087065138142690938a43e396eea63
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (362ms)
+    ✓ LayoutSQL;n=8192 (849ms)
+    ✓ LayoutSQL;n=16384 (2497ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7779ms)
+    ✓ LayoutSQL;n=65536 (26981ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..3d03d2d29f5c41a7a65d9111ff8757ebe922ed56
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (117ms)
+    ✓ LayoutSQL;n=2048 (149ms)
+    ✓ LayoutSQL;n=4096 (342ms)
+    ✓ LayoutSQL;n=8192 (806ms)
+    ✓ LayoutSQL;n=16384 (2343ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7212ms)
+    ✓ LayoutSQL;n=65536 (25741ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (8ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (27ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..e05c7c604d8dd4454c08e70f30098b68a52bce5c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (368ms)
+    ✓ LayoutSQL;n=8192 (872ms)
+    ✓ LayoutSQL;n=16384 (2548ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7818ms)
+    ✓ LayoutSQL;n=65536 (27074ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test
new file mode 100644
index 0000000000000000000000000000000000000000..d6d57620cd4d6164ebc6ce6137cab9703bc8d2a0
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (126ms)
+    ✓ LayoutSQL;n=2048 (175ms)
+    ✓ LayoutSQL;n=4096 (393ms)
+    ✓ LayoutSQL;n=8192 (920ms)
+    ✓ LayoutSQL;n=16384 (2701ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8254ms)
+    ✓ LayoutSQL;n=65536 (28964ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test
new file mode 100644
index 0000000000000000000000000000000000000000..377206d6b47d190e081bc61b72a9c3cd73bdf0a0
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (132ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (384ms)
+    ✓ LayoutSQL;n=8192 (900ms)
+    ✓ LayoutSQL;n=16384 (2652ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7954ms)
+    ✓ LayoutSQL;n=65536 (28219ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test
new file mode 100644
index 0000000000000000000000000000000000000000..5bddecaee15c22ccce9e08e8ac5d49d2fe40d11c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (122ms)
+    ✓ LayoutSQL;n=2048 (162ms)
+    ✓ LayoutSQL;n=4096 (356ms)
+    ✓ LayoutSQL;n=8192 (846ms)
+    ✓ LayoutSQL;n=16384 (2411ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7346ms)
+    ✓ LayoutSQL;n=65536 (25809ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test
new file mode 100644
index 0000000000000000000000000000000000000000..53d3a63434881622c5a20a335aa503236da269f2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (372ms)
+    ✓ LayoutSQL;n=8192 (891ms)
+    ✓ LayoutSQL;n=16384 (2579ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7934ms)
+    ✓ LayoutSQL;n=65536 (27866ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test
new file mode 100644
index 0000000000000000000000000000000000000000..ca7901ba6d0f79f40350c20fec83417011604ad8
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (174ms)
+    ✓ LayoutSQL;n=4096 (391ms)
+    ✓ LayoutSQL;n=8192 (936ms)
+    ✓ LayoutSQL;n=16384 (2768ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8482ms)
+    ✓ LayoutSQL;n=65536 (29877ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test
new file mode 100644
index 0000000000000000000000000000000000000000..8d00c81824810f2c7efba44a15fdb2530aca397b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (148ms)
+    ✓ LayoutSQL;n=2048 (173ms)
+    ✓ LayoutSQL;n=4096 (387ms)
+    ✓ LayoutSQL;n=8192 (891ms)
+    ✓ LayoutSQL;n=16384 (2527ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7740ms)
+    ✓ LayoutSQL;n=65536 (27179ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (33ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test
new file mode 100644
index 0000000000000000000000000000000000000000..806bcede9efe49a513b1c36fa2c9d76c842c422a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (162ms)
+    ✓ LayoutSQL;n=4096 (359ms)
+    ✓ LayoutSQL;n=8192 (849ms)
+    ✓ LayoutSQL;n=16384 (2476ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7487ms)
+    ✓ LayoutSQL;n=65536 (26019ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (7ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test
new file mode 100644
index 0000000000000000000000000000000000000000..006f2bef8722568b54bf63912b46b5d641f7fa17
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (129ms)
+    ✓ LayoutSQL;n=2048 (162ms)
+    ✓ LayoutSQL;n=4096 (372ms)
+    ✓ LayoutSQL;n=8192 (890ms)
+    ✓ LayoutSQL;n=16384 (2605ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8063ms)
+    ✓ LayoutSQL;n=65536 (28522ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (9ms)
+    ✓ LayoutSQL;n=256 (20ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test
new file mode 100644
index 0000000000000000000000000000000000000000..56655a3f2687a2c40593a004cfaaf14951d02b77
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (125ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (373ms)
+    ✓ LayoutSQL;n=8192 (882ms)
+    ✓ LayoutSQL;n=16384 (2509ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7754ms)
+    ✓ LayoutSQL;n=65536 (26956ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (28ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..31361a8b8e44e568c07a5144d6a43266595f9dc7
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (145ms)
+    ✓ LayoutSQL;n=2048 (157ms)
+    ✓ LayoutSQL;n=4096 (349ms)
+    ✓ LayoutSQL;n=8192 (843ms)
+    ✓ LayoutSQL;n=16384 (2438ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7364ms)
+    ✓ LayoutSQL;n=65536 (25839ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (4ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test
new file mode 100644
index 0000000000000000000000000000000000000000..0f9cd099d12fee7f95ab44ca22cda442d316e59f
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (115ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (348ms)
+    ✓ LayoutSQL;n=8192 (812ms)
+    ✓ LayoutSQL;n=16384 (2312ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6939ms)
+    ✓ LayoutSQL;n=65536 (24319ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (35s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test
new file mode 100644
index 0000000000000000000000000000000000000000..1d2604e8d712fb106158f14a9800fb69b711fb72
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (125ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (365ms)
+    ✓ LayoutSQL;n=8192 (889ms)
+    ✓ LayoutSQL;n=16384 (2630ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8074ms)
+    ✓ LayoutSQL;n=65536 (28639ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test
new file mode 100644
index 0000000000000000000000000000000000000000..8e19e349dadc532e443fbde4fe4f2d9c8122421a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (144ms)
+    ✓ LayoutSQL;n=2048 (174ms)
+    ✓ LayoutSQL;n=4096 (391ms)
+    ✓ LayoutSQL;n=8192 (915ms)
+    ✓ LayoutSQL;n=16384 (2687ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8275ms)
+    ✓ LayoutSQL;n=65536 (29371ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test
new file mode 100644
index 0000000000000000000000000000000000000000..5329d3f92cef8ab423b7a3fe3c4a863a32034b0c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (120ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (348ms)
+    ✓ LayoutSQL;n=8192 (838ms)
+    ✓ LayoutSQL;n=16384 (2394ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7298ms)
+    ✓ LayoutSQL;n=65536 (25342ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (37s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test
new file mode 100644
index 0000000000000000000000000000000000000000..657efa536b9bf6a211130e24782fe987b50a1b1d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (130ms)
+    ✓ LayoutSQL;n=2048 (164ms)
+    ✓ LayoutSQL;n=4096 (376ms)
+    ✓ LayoutSQL;n=8192 (909ms)
+    ✓ LayoutSQL;n=16384 (2685ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8391ms)
+    ✓ LayoutSQL;n=65536 (29332ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (26ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test
new file mode 100644
index 0000000000000000000000000000000000000000..124ca4392369b02638c1f9d0f0720adba45497ef
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (169ms)
+    ✓ LayoutSQL;n=4096 (377ms)
+    ✓ LayoutSQL;n=8192 (921ms)
+    ✓ LayoutSQL;n=16384 (2456ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7490ms)
+    ✓ LayoutSQL;n=65536 (26552ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (14ms)
+    ✓ LayoutSQL;n=512 (35ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test
new file mode 100644
index 0000000000000000000000000000000000000000..bcb1c8a808ec9d0a2ce6fba106ef105a0265d762
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (124ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (377ms)
+    ✓ LayoutSQL;n=8192 (881ms)
+    ✓ LayoutSQL;n=16384 (2589ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7996ms)
+    ✓ LayoutSQL;n=65536 (27983ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test
new file mode 100644
index 0000000000000000000000000000000000000000..09c8fa320f65fcc3f2bc972ae6cabafa0f6debfe
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (122ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (364ms)
+    ✓ LayoutSQL;n=8192 (869ms)
+    ✓ LayoutSQL;n=16384 (2491ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7571ms)
+    ✓ LayoutSQL;n=65536 (26416ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test
new file mode 100644
index 0000000000000000000000000000000000000000..36b9521f3a42381c63db1b190a649237c44393cd
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (112ms)
+    ✓ LayoutSQL;n=2048 (150ms)
+    ✓ LayoutSQL;n=4096 (333ms)
+    ✓ LayoutSQL;n=8192 (789ms)
+    ✓ LayoutSQL;n=16384 (2265ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (6686ms)
+    ✓ LayoutSQL;n=65536 (23342ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (34s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test
new file mode 100644
index 0000000000000000000000000000000000000000..05541ccc9e744cf02d7be21e3fe854b8c7727b71
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (121ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (362ms)
+    ✓ LayoutSQL;n=8192 (864ms)
+    ✓ LayoutSQL;n=16384 (2557ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7849ms)
+    ✓ LayoutSQL;n=65536 (27554ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (25ms)
+
+
+  13 passing (40s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..147d0596170120de473fdbd86590cd2ccee81070
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (133ms)
+    ✓ LayoutSQL;n=2048 (168ms)
+    ✓ LayoutSQL;n=4096 (388ms)
+    ✓ LayoutSQL;n=8192 (914ms)
+    ✓ LayoutSQL;n=16384 (2589ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8081ms)
+    ✓ LayoutSQL;n=65536 (28761ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (32ms)
+
+
+  13 passing (41s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test
new file mode 100644
index 0000000000000000000000000000000000000000..c27219b7fd9e6e3cdedcc0b1086793718107f77a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (128ms)
+    ✓ LayoutSQL;n=2048 (171ms)
+    ✓ LayoutSQL;n=4096 (387ms)
+    ✓ LayoutSQL;n=8192 (938ms)
+    ✓ LayoutSQL;n=16384 (2701ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (8463ms)
+    ✓ LayoutSQL;n=65536 (29708ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (4ms)
+    ✓ LayoutSQL;n=128 (6ms)
+    ✓ LayoutSQL;n=256 (13ms)
+    ✓ LayoutSQL;n=512 (24ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..df2d06cea6f91a90028ef2fe116847ac046b3f14
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test
@@ -0,0 +1,35 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=1024 (136ms)
+    ✓ LayoutSQL;n=2048 (159ms)
+    ✓ LayoutSQL;n=4096 (363ms)
+    ✓ LayoutSQL;n=8192 (882ms)
+    ✓ LayoutSQL;n=16384 (2577ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=32768 (7793ms)
+    ✓ LayoutSQL;n=65536 (27440ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (3ms)
+    ✓ LayoutSQL;n=32 (2ms)
+    ✓ LayoutSQL;n=64 (3ms)
+    ✓ LayoutSQL;n=128 (7ms)
+    ✓ LayoutSQL;n=256 (12ms)
+    ✓ LayoutSQL;n=512 (30ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 58.32% ( 596/1022 )
+Branches     : 33.49% ( 143/427 )
+Functions    : 55.05% ( 109/198 )
+Lines        : 58.74% ( 568/967 )
+================================================================================
diff --git a/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..587107223863b0b1962b52d806f429f72f46873e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 164.64
+Mediana        = 164
+Variancia      = 112.72
+Desvio Padrao  = 10.62
+Coef. Variacao = 0.06
+Min            = 145
+Max            = 206
+Esq, Dir.      = 163.0475 , 166.2358
diff --git a/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9304a76da5df794c5c67e7bedf93e50c10dc358d
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+2048 200
+2048 162
+2048 160
+2048 160
+2048 155
+2048 174
+2048 169
+2048 159
+2048 154
+2048 175
+2048 157
+2048 172
+2048 173
+2048 158
+2048 194
+2048 175
+2048 186
+2048 165
+2048 165
+2048 159
+2048 152
+2048 178
+2048 167
+2048 173
+2048 154
+2048 160
+2048 196
+2048 166
+2048 153
+2048 161
+2048 149
+2048 157
+2048 164
+2048 173
+2048 189
+2048 164
+2048 164
+2048 151
+2048 165
+2048 174
+2048 175
+2048 161
+2048 152
+2048 164
+2048 155
+2048 159
+2048 206
+2048 169
+2048 161
+2048 158
+2048 184
+2048 165
+2048 165
+2048 164
+2048 159
+2048 163
+2048 156
+2048 171
+2048 160
+2048 159
+2048 166
+2048 160
+2048 172
+2048 168
+2048 164
+2048 162
+2048 182
+2048 155
+2048 148
+2048 168
+2048 163
+2048 174
+2048 145
+2048 167
+2048 164
+2048 158
+2048 166
+2048 162
+2048 165
+2048 165
+2048 160
+2048 166
+2048 152
+2048 167
+2048 157
+2048 154
+2048 167
+2048 172
+2048 165
+2048 159
+2048 165
+2048 166
+2048 161
+2048 155
+2048 168
+2048 171
+2048 164
+2048 167
+2048 167
+2048 159
+2048 153
+2048 160
+2048 154
+2048 175
+2048 169
+2048 150
+2048 154
+2048 173
+2048 150
+2048 161
+2048 164
+2048 155
+2048 165
+2048 164
+2048 192
+2048 158
+2048 170
+2048 162
+2048 147
+2048 157
diff --git a/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..86be1d1e470889486e92f26032ece4f258a878be
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 13.18
+Mediana        = 13
+Variancia      = 0.85
+Desvio Padrao  = 0.92
+Coef. Variacao = 0.07
+Min            = 12
+Max            = 20
+Esq, Dir.      = 13.0364 , 13.3136
diff --git a/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..58b5dfac61491da69246bc92c3c05a5beb2a389b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+256 12
+256 13
+256 13
+256 13
+256 13
+256 13
+256 13
+256 13
+256 14
+256 13
+256 13
+256 13
+256 13
+256 14
+256 13
+256 14
+256 13
+256 14
+256 13
+256 14
+256 14
+256 13
+256 12
+256 14
+256 13
+256 12
+256 12
+256 14
+256 14
+256 14
+256 14
+256 13
+256 13
+256 14
+256 12
+256 13
+256 12
+256 14
+256 13
+256 13
+256 12
+256 13
+256 13
+256 13
+256 14
+256 12
+256 12
+256 14
+256 12
+256 14
+256 13
+256 13
+256 14
+256 13
+256 14
+256 14
+256 14
+256 14
+256 13
+256 13
+256 13
+256 12
+256 14
+256 13
+256 13
+256 13
+256 12
+256 13
+256 13
+256 13
+256 14
+256 12
+256 13
+256 13
+256 12
+256 14
+256 13
+256 12
+256 14
+256 12
+256 12
+256 14
+256 13
+256 13
+256 13
+256 13
+256 13
+256 13
+256 13
+256 12
+256 13
+256 13
+256 12
+256 13
+256 14
+256 13
+256 13
+256 13
+256 13
+256 13
+256 13
+256 14
+256 13
+256 13
+256 12
+256 13
+256 13
+256 14
+256 14
+256 12
+256 14
+256 13
+256 13
+256 14
+256 13
+256 14
+256 14
+256 20
+256 14
+256 13
diff --git a/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c686375648b807838b573729c11aac7dbf626a32
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2.56
+Mediana        = 3
+Variancia      = 0.35
+Desvio Padrao  = 0.59
+Coef. Variacao = 0.23
+Min            = 2
+Max            = 5
+Esq, Dir.      = 2.4696 , 2.6471
diff --git a/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b93867f25a6dba0ea4e537e669bc9986ddf1736b
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+32 3
+32 3
+32 2
+32 2
+32 3
+32 3
+32 3
+32 2
+32 3
+32 3
+32 3
+32 3
+32 3
+32 2
+32 3
+32 3
+32 3
+32 3
+32 3
+32 3
+32 2
+32 3
+32 2
+32 3
+32 2
+32 2
+32 3
+32 3
+32 2
+32 2
+32 3
+32 3
+32 3
+32 2
+32 3
+32 2
+32 3
+32 2
+32 2
+32 3
+32 3
+32 3
+32 3
+32 2
+32 2
+32 2
+32 2
+32 3
+32 3
+32 3
+32 2
+32 3
+32 3
+32 2
+32 3
+32 2
+32 2
+32 3
+32 2
+32 3
+32 2
+32 2
+32 2
+32 3
+32 2
+32 5
+32 3
+32 3
+32 2
+32 3
+32 2
+32 2
+32 3
+32 2
+32 2
+32 3
+32 3
+32 3
+32 3
+32 2
+32 2
+32 2
+32 2
+32 3
+32 2
+32 3
+32 2
+32 3
+32 3
+32 2
+32 2
+32 2
+32 2
+32 2
+32 3
+32 2
+32 2
+32 3
+32 3
+32 2
+32 2
+32 3
+32 2
+32 2
+32 3
+32 2
+32 5
+32 3
+32 2
+32 2
+32 3
+32 3
+32 2
+32 3
+32 2
+32 2
+32 2
+32 2
+32 3
+32 3
diff --git a/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..be5d4fbb0cab42c6c9a096e2b3269a5e045961e6
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7659.06
+Mediana        = 7726.5
+Variancia      = 277266.46
+Desvio Padrao  = 526.56
+Coef. Variacao = 0.07
+Min            = 6459
+Max            = 8760
+Esq, Dir.      = 7579.9931 , 7738.1235
diff --git a/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ce9f9cd48c0f587d0230f811d7198d3f9ddb3212
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+32768 8400
+32768 7346
+32768 7442
+32768 7813
+32768 7298
+32768 8317
+32768 8742
+32768 7058
+32768 7549
+32768 7845
+32768 7321
+32768 8101
+32768 7740
+32768 6459
+32768 7613
+32768 8589
+32768 8158
+32768 7238
+32768 7380
+32768 8379
+32768 6769
+32768 7385
+32768 8400
+32768 7175
+32768 6601
+32768 8255
+32768 7644
+32768 7754
+32768 6553
+32768 7843
+32768 7212
+32768 7083
+32768 7805
+32768 6483
+32768 8201
+32768 6939
+32768 7779
+32768 7515
+32768 7734
+32768 8482
+32768 8263
+32768 7818
+32768 6833
+32768 7981
+32768 7686
+32768 7644
+32768 8229
+32768 7490
+32768 7571
+32768 7748
+32768 7704
+32768 7904
+32768 7908
+32768 7934
+32768 7235
+32768 7603
+32768 7414
+32768 7767
+32768 7723
+32768 7424
+32768 7357
+32768 8074
+32768 7722
+32768 8282
+32768 7604
+32768 7487
+32768 8247
+32768 7788
+32768 6929
+32768 8081
+32768 7832
+32768 8275
+32768 6926
+32768 7906
+32768 7733
+32768 7318
+32768 7711
+32768 7730
+32768 7736
+32768 8252
+32768 7849
+32768 8303
+32768 8312
+32768 7900
+32768 7364
+32768 7253
+32768 7954
+32768 8760
+32768 7277
+32768 7793
+32768 8194
+32768 7996
+32768 7366
+32768 7721
+32768 8266
+32768 8463
+32768 7759
+32768 7346
+32768 8192
+32768 6926
+32768 7222
+32768 7178
+32768 6641
+32768 8254
+32768 7905
+32768 6686
+32768 7009
+32768 6619
+32768 6662
+32768 7605
+32768 7516
+32768 6686
+32768 8178
+32768 8391
+32768 8074
+32768 7195
+32768 8226
+32768 8063
+32768 7155
+32768 7559
diff --git a/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cb310897ae25da9eec54b1ef81345a4997de6f34
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 367.65
+Mediana        = 365.5
+Variancia      = 449.47
+Desvio Padrao  = 21.2
+Coef. Variacao = 0.06
+Min            = 313
+Max            = 481
+Esq, Dir.      = 364.4666 , 370.8334
diff --git a/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9d6ab1edb7ac4667ff31cb1ed5e7d9cd62eb7ffa
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+4096 373
+4096 356
+4096 360
+4096 364
+4096 348
+4096 399
+4096 380
+4096 367
+4096 354
+4096 393
+4096 350
+4096 401
+4096 387
+4096 313
+4096 365
+4096 413
+4096 399
+4096 481
+4096 369
+4096 349
+4096 340
+4096 356
+4096 388
+4096 392
+4096 346
+4096 371
+4096 366
+4096 373
+4096 340
+4096 364
+4096 342
+4096 351
+4096 363
+4096 359
+4096 362
+4096 348
+4096 362
+4096 337
+4096 376
+4096 391
+4096 392
+4096 368
+4096 343
+4096 370
+4096 354
+4096 370
+4096 386
+4096 377
+4096 364
+4096 352
+4096 355
+4096 374
+4096 363
+4096 372
+4096 372
+4096 360
+4096 355
+4096 391
+4096 358
+4096 353
+4096 364
+4096 365
+4096 384
+4096 387
+4096 363
+4096 359
+4096 371
+4096 355
+4096 349
+4096 388
+4096 375
+4096 391
+4096 331
+4096 369
+4096 373
+4096 368
+4096 373
+4096 362
+4096 361
+4096 378
+4096 362
+4096 378
+4096 365
+4096 408
+4096 349
+4096 346
+4096 384
+4096 388
+4096 356
+4096 363
+4096 396
+4096 377
+4096 358
+4096 349
+4096 371
+4096 387
+4096 368
+4096 399
+4096 381
+4096 355
+4096 347
+4096 350
+4096 343
+4096 393
+4096 388
+4096 333
+4096 344
+4096 395
+4096 331
+4096 354
+4096 372
+4096 336
+4096 390
+4096 376
+4096 367
+4096 369
+4096 387
+4096 372
+4096 331
+4096 357
diff --git a/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b8fd2096e3555c9ffc2005034606668d8f10149e
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 27.39
+Mediana        = 26
+Variancia      = 10.78
+Desvio Padrao  = 3.28
+Coef. Variacao = 0.12
+Min            = 23
+Max            = 35
+Esq, Dir.      = 26.8987 , 27.8846
diff --git a/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e98f9362c06efdd1a3150da2a8e414070a75057a
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+512 23
+512 25
+512 26
+512 31
+512 25
+512 24
+512 26
+512 25
+512 32
+512 25
+512 25
+512 26
+512 33
+512 31
+512 31
+512 27
+512 31
+512 33
+512 25
+512 33
+512 25
+512 33
+512 24
+512 32
+512 31
+512 24
+512 24
+512 28
+512 26
+512 25
+512 27
+512 26
+512 25
+512 26
+512 30
+512 26
+512 30
+512 28
+512 26
+512 32
+512 28
+512 24
+512 25
+512 31
+512 25
+512 30
+512 30
+512 35
+512 30
+512 27
+512 32
+512 24
+512 26
+512 33
+512 26
+512 32
+512 25
+512 26
+512 25
+512 31
+512 32
+512 24
+512 27
+512 26
+512 32
+512 26
+512 25
+512 24
+512 27
+512 32
+512 35
+512 25
+512 25
+512 32
+512 23
+512 25
+512 26
+512 25
+512 25
+512 24
+512 25
+512 34
+512 30
+512 25
+512 25
+512 32
+512 24
+512 25
+512 25
+512 30
+512 25
+512 25
+512 24
+512 33
+512 32
+512 24
+512 26
+512 31
+512 24
+512 26
+512 31
+512 26
+512 25
+512 32
+512 24
+512 25
+512 25
+512 27
+512 25
+512 24
+512 28
+512 24
+512 25
+512 26
+512 32
+512 26
+512 25
+512 24
+512 25
+512 33
diff --git a/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7425cb5d73f1513e7c331612fafdba88e69837ee
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 3.67
+Mediana        = 4
+Variancia      = 0.22
+Desvio Padrao  = 0.47
+Coef. Variacao = 0.13
+Min            = 3
+Max            = 4
+Esq, Dir.      = 3.5956 , 3.7377
diff --git a/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..71de064ae61c0a83c8d23e44f5d6dbf621d53ff2
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+64 3
+64 4
+64 3
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 4
+64 3
+64 3
+64 3
+64 4
+64 3
+64 3
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 3
+64 3
+64 4
+64 3
+64 3
+64 4
+64 4
+64 3
+64 4
+64 3
+64 4
+64 4
+64 4
+64 3
+64 3
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 3
+64 3
+64 3
+64 4
+64 4
+64 3
+64 4
+64 3
+64 4
+64 4
+64 3
+64 3
+64 3
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 3
+64 4
+64 4
+64 4
+64 3
+64 3
+64 4
+64 3
+64 4
+64 4
+64 4
+64 4
+64 4
+64 4
+64 3
+64 4
+64 3
+64 3
+64 3
+64 4
+64 4
+64 4
diff --git a/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2deb65858bfc4fee53e5c14723c6ac6d18cb6bcb
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 26939.13
+Mediana        = 27145.5
+Variancia      = 3845511.73
+Desvio Padrao  = 1961
+Coef. Variacao = 0.07
+Min            = 22472
+Max            = 30707
+Esq, Dir.      = 26644.6819 , 27233.5848
diff --git a/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..33239e386141e19cdb99f779421f3ddec82b2b70
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+65536 30538
+65536 25809
+65536 26113
+65536 27931
+65536 25342
+65536 29540
+65536 30671
+65536 25391
+65536 26128
+65536 27618
+65536 26085
+65536 28733
+65536 27179
+65536 22472
+65536 27230
+65536 30358
+65536 28082
+65536 25499
+65536 26499
+65536 30250
+65536 23958
+65536 25677
+65536 29085
+65536 25015
+65536 22898
+65536 28605
+65536 27119
+65536 26956
+65536 22954
+65536 27447
+65536 25741
+65536 24944
+65536 27834
+65536 22667
+65536 29274
+65536 24319
+65536 26981
+65536 26365
+65536 27400
+65536 29877
+65536 28896
+65536 27074
+65536 24160
+65536 28083
+65536 26808
+65536 26393
+65536 29301
+65536 26552
+65536 26416
+65536 27443
+65536 27172
+65536 27487
+65536 27782
+65536 27866
+65536 25558
+65536 26874
+65536 25870
+65536 27386
+65536 27450
+65536 26025
+65536 26255
+65536 28639
+65536 27199
+65536 29349
+65536 26573
+65536 26019
+65536 28986
+65536 28086
+65536 25575
+65536 28761
+65536 27665
+65536 29371
+65536 24348
+65536 28110
+65536 27372
+65536 26145
+65536 25719
+65536 27001
+65536 27256
+65536 29204
+65536 27554
+65536 26107
+65536 29406
+65536 27901
+65536 25839
+65536 25316
+65536 28219
+65536 30707
+65536 25402
+65536 27440
+65536 29014
+65536 27983
+65536 25840
+65536 27442
+65536 29262
+65536 29708
+65536 27541
+65536 25491
+65536 30643
+65536 24402
+65536 23552
+65536 24964
+65536 22914
+65536 28964
+65536 28271
+65536 23342
+65536 24497
+65536 22923
+65536 23519
+65536 26178
+65536 25959
+65536 23356
+65536 28457
+65536 29332
+65536 28610
+65536 25170
+65536 29432
+65536 28522
+65536 25593
+65536 27111
diff --git a/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a6b0a4158688304f2080357df501133d8300734f
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 860.38
+Mediana        = 864
+Variancia      = 2462.32
+Desvio Padrao  = 49.62
+Coef. Variacao = 0.06
+Min            = 734
+Max            = 964
+Esq, Dir.      = 852.9241 , 867.8259
diff --git a/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..93aa9979ba1cbe7401dc00fe430ea8c1d59d160c
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res
@@ -0,0 +1,120 @@
+8192 886
+8192 846
+8192 851
+8192 855
+8192 838
+8192 950
+8192 908
+8192 793
+8192 833
+8192 872
+8192 826
+8192 899
+8192 891
+8192 748
+8192 843
+8192 925
+8192 892
+8192 964
+8192 802
+8192 825
+8192 782
+8192 835
+8192 930
+8192 934
+8192 745
+8192 906
+8192 854
+8192 882
+8192 780
+8192 879
+8192 806
+8192 815
+8192 876
+8192 747
+8192 878
+8192 812
+8192 849
+8192 780
+8192 880
+8192 936
+8192 923
+8192 872
+8192 784
+8192 886
+8192 831
+8192 861
+8192 911
+8192 921
+8192 869
+8192 810
+8192 848
+8192 883
+8192 867
+8192 891
+8192 829
+8192 845
+8192 837
+8192 862
+8192 880
+8192 857
+8192 864
+8192 889
+8192 929
+8192 902
+8192 880
+8192 849
+8192 893
+8192 860
+8192 734
+8192 914
+8192 876
+8192 915
+8192 783
+8192 891
+8192 881
+8192 817
+8192 880
+8192 871
+8192 862
+8192 911
+8192 864
+8192 913
+8192 861
+8192 863
+8192 843
+8192 822
+8192 900
+8192 956
+8192 845
+8192 882
+8192 914
+8192 881
+8192 848
+8192 864
+8192 891
+8192 938
+8192 856
+8192 856
+8192 876
+8192 818
+8192 795
+8192 814
+8192 802
+8192 920
+8192 876
+8192 789
+8192 799
+8192 952
+8192 766
+8192 849
+8192 860
+8192 781
+8192 899
+8192 909
+8192 893
+8192 821
+8192 911
+8192 890
+8192 744
+8192 863
diff --git a/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res b/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res
new file mode 100644
index 0000000000000000000000000000000000000000..0f1cfbc6785bbd644d4daa01dd88b02967616425
--- /dev/null
+++ b/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res
@@ -0,0 +1,13 @@
+16 3.19
+32 2.56
+64 3.67
+128 6.69
+256 13.18
+512 27.39
+1024 125.94
+2048 164.64
+4096 367.65
+8192 860.38
+16384 2489.75
+32768 7659.06
+65536 26939.13
diff --git a/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f1635693ebb97f032c0d5ed3b0579853ddd86d7a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 606.98
+Mediana        = 339.5
+Variancia      = 594581.55
+Desvio Padrao  = 771.09
+Coef. Variacao = 1.27
+Min            = 309
+Max            = 4332
+Esq, Dir.      = 491.201 , 722.7657
diff --git a/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..65475f89187b9e3b84f1a4d75818ce53d4551245
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+1024 344
+1024 370
+1024 346
+1024 327
+1024 328
+1024 353
+1024 353
+1024 333
+1024 333
+1024 344
+1024 343
+1024 322
+1024 340
+1024 311
+1024 335
+1024 328
+1024 352
+1024 336
+1024 339
+1024 338
+1024 2646
+1024 708
+1024 3141
+1024 405
+1024 815
+1024 821
+1024 1529
+1024 1201
+1024 835
+1024 4332
+1024 2289
+1024 3288
+1024 3047
+1024 353
+1024 2245
+1024 2186
+1024 2676
+1024 3596
+1024 342
+1024 2402
+1024 353
+1024 328
+1024 311
+1024 358
+1024 355
+1024 311
+1024 361
+1024 318
+1024 331
+1024 368
+1024 312
+1024 353
+1024 366
+1024 325
+1024 334
+1024 418
+1024 336
+1024 369
+1024 311
+1024 337
+1024 321
+1024 378
+1024 389
+1024 325
+1024 356
+1024 359
+1024 335
+1024 337
+1024 365
+1024 324
+1024 328
+1024 342
+1024 315
+1024 312
+1024 326
+1024 324
+1024 323
+1024 343
+1024 389
+1024 337
+1024 317
+1024 339
+1024 320
+1024 311
+1024 347
+1024 374
+1024 315
+1024 312
+1024 321
+1024 347
+1024 327
+1024 331
+1024 346
+1024 323
+1024 319
+1024 329
+1024 331
+1024 329
+1024 424
+1024 323
+1024 324
+1024 353
+1024 357
+1024 339
+1024 333
+1024 366
+1024 336
+1024 339
+1024 395
+1024 321
+1024 328
+1024 327
+1024 332
+1024 362
+1024 342
+1024 309
+1024 342
+1024 334
+1024 340
+1024 359
diff --git a/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2190bf88f6f4ed9493e7e87781b2b46cf3b6492f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 264.82
+Mediana        = 243
+Variancia      = 5738.72
+Desvio Padrao  = 75.75
+Coef. Variacao = 0.29
+Min            = 191
+Max            = 560
+Esq, Dir.      = 253.4419 , 276.1915
diff --git a/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b01328289b487b15157a967a10b650165b4d59bf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+1024 249
+1024 232
+1024 252
+1024 230
+1024 265
+1024 274
+1024 240
+1024 284
+1024 268
+1024 237
+1024 267
+1024 215
+1024 273
+1024 273
+1024 257
+1024 216
+1024 219
+1024 246
+1024 251
+1024 247
+1024 425
+1024 471
+1024 308
+1024 503
+1024 418
+1024 200
+1024 206
+1024 486
+1024 495
+1024 238
+1024 207
+1024 343
+1024 560
+1024 226
+1024 310
+1024 438
+1024 549
+1024 462
+1024 461
+1024 439
+1024 235
+1024 228
+1024 251
+1024 252
+1024 232
+1024 238
+1024 286
+1024 242
+1024 227
+1024 243
+1024 251
+1024 200
+1024 241
+1024 243
+1024 205
+1024 236
+1024 200
+1024 223
+1024 241
+1024 219
+1024 217
+1024 211
+1024 265
+1024 220
+1024 268
+1024 213
+1024 218
+1024 245
+1024 254
+1024 260
+1024 213
+1024 217
+1024 251
+1024 258
+1024 242
+1024 227
+1024 245
+1024 220
+1024 240
+1024 253
+1024 240
+1024 276
+1024 224
+1024 243
+1024 222
+1024 228
+1024 250
+1024 242
+1024 213
+1024 218
+1024 214
+1024 245
+1024 241
+1024 206
+1024 253
+1024 226
+1024 243
+1024 250
+1024 257
+1024 210
+1024 239
+1024 267
+1024 213
+1024 282
+1024 249
+1024 253
+1024 232
+1024 289
+1024 208
+1024 265
+1024 248
+1024 263
+1024 236
+1024 250
+1024 252
+1024 242
+1024 253
+1024 191
+1024 252
+1024 223
diff --git a/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f024c9d2489e7ad9938340ceb2f8a911f97e3f91
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 70.1
+Mediana        = 63
+Variancia      = 161.04
+Desvio Padrao  = 12.69
+Coef. Variacao = 0.18
+Min            = 58
+Max            = 93
+Esq, Dir.      = 65.4325 , 74.7675
diff --git a/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f8105406df2590c71b322e8078dd1087e567e286
--- /dev/null
+++ b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 58
+1024 73
+1024 60
+1024 64
+1024 62
+1024 93
+1024 62
+1024 87
+1024 67
+1024 60
+1024 62
+1024 66
+1024 92
+1024 61
+1024 61
+1024 89
+1024 62
+1024 61
+1024 92
+1024 70
diff --git a/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..900df98639d92fc45a5d374a4c087295719a1469
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 29.82
+Mediana        = 23
+Variancia      = 384.23
+Desvio Padrao  = 19.6
+Coef. Variacao = 0.66
+Min            = 20
+Max            = 156
+Esq, Dir.      = 26.8817 , 32.7683
diff --git a/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..cdc22812feb8f8ca816f9ce851788fc4e4b475bf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+128 22
+128 26
+128 22
+128 23
+128 24
+128 22
+128 24
+128 23
+128 24
+128 31
+128 25
+128 30
+128 23
+128 23
+128 23
+128 25
+128 25
+128 24
+128 25
+128 21
+128 97
+128 52
+128 112
+128 28
+128 58
+128 48
+128 43
+128 34
+128 27
+128 84
+128 84
+128 156
+128 80
+128 24
+128 41
+128 42
+128 37
+128 79
+128 58
+128 43
+128 32
+128 22
+128 23
+128 21
+128 22
+128 21
+128 25
+128 21
+128 21
+128 23
+128 22
+128 23
+128 23
+128 30
+128 22
+128 23
+128 22
+128 23
+128 20
+128 24
+128 22
+128 24
+128 22
+128 20
+128 24
+128 26
+128 23
+128 23
+128 22
+128 22
+128 23
+128 23
+128 23
+128 23
+128 24
+128 22
+128 22
+128 32
+128 24
+128 22
+128 22
+128 23
+128 23
+128 21
+128 23
+128 25
+128 21
+128 22
+128 22
+128 29
+128 24
+128 23
+128 23
+128 22
+128 23
+128 23
+128 24
+128 23
+128 25
+128 26
+128 22
+128 22
+128 24
+128 23
+128 24
+128 21
+128 21
+128 23
+128 31
+128 23
+128 22
+128 22
+128 23
+128 24
+128 23
+128 21
+128 21
+128 24
+128 29
+128 28
diff --git a/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..433067bb1c98239355e9295f08d8a44929278498
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 23
+Mediana        = 19
+Variancia      = 96
+Desvio Padrao  = 9.8
+Coef. Variacao = 0.43
+Min            = 15
+Max            = 70
+Esq, Dir.      = 21.5288 , 24.4712
diff --git a/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c3c0d20080318395c404a959f3eb23311a0b429a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+128 18
+128 19
+128 23
+128 27
+128 17
+128 18
+128 23
+128 19
+128 23
+128 17
+128 25
+128 17
+128 29
+128 18
+128 16
+128 17
+128 18
+128 23
+128 18
+128 19
+128 41
+128 37
+128 36
+128 38
+128 34
+128 29
+128 33
+128 43
+128 35
+128 37
+128 53
+128 28
+128 70
+128 45
+128 19
+128 40
+128 22
+128 56
+128 41
+128 65
+128 19
+128 24
+128 18
+128 18
+128 18
+128 28
+128 19
+128 23
+128 18
+128 15
+128 17
+128 17
+128 22
+128 16
+128 25
+128 21
+128 17
+128 17
+128 24
+128 17
+128 18
+128 17
+128 18
+128 16
+128 15
+128 23
+128 18
+128 21
+128 18
+128 18
+128 17
+128 18
+128 17
+128 17
+128 23
+128 17
+128 17
+128 18
+128 17
+128 18
+128 17
+128 17
+128 19
+128 27
+128 23
+128 17
+128 16
+128 17
+128 17
+128 27
+128 23
+128 21
+128 21
+128 18
+128 16
+128 19
+128 27
+128 22
+128 17
+128 16
+128 31
+128 18
+128 17
+128 18
+128 18
+128 17
+128 25
+128 18
+128 21
+128 23
+128 19
+128 18
+128 17
+128 20
+128 24
+128 27
+128 23
+128 15
+128 17
+128 17
diff --git a/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..354f42f5f4b4f432db9c38201914b529b9c5e1ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18.75
+Mediana        = 13.5
+Variancia      = 160.09
+Desvio Padrao  = 12.65
+Coef. Variacao = 0.67
+Min            = 11
+Max            = 51
+Esq, Dir.      = 14.0963 , 23.4037
diff --git a/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b60814845933607ce27287559e159189264b44d3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 12
+128 11
+128 15
+128 50
+128 13
+128 13
+128 13
+128 13
+128 51
+128 12
+128 13
+128 14
+128 11
+128 15
+128 13
+128 14
+128 15
+128 41
+128 22
+128 14
diff --git a/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7663e5738c2c188d11d409114caa946ca00476d3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 13.91
+Mediana        = 11
+Variancia      = 77.78
+Desvio Padrao  = 8.82
+Coef. Variacao = 0.63
+Min            = 10
+Max            = 64
+Esq, Dir.      = 12.5841 , 15.2326
diff --git a/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..53741c634a9c237a962567c1f46c85d4164de8bc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+16 12
+16 12
+16 10
+16 10
+16 11
+16 11
+16 11
+16 10
+16 11
+16 10
+16 12
+16 11
+16 11
+16 10
+16 11
+16 12
+16 11
+16 11
+16 11
+16 11
+16 39
+16 24
+16 48
+16 27
+16 25
+16 24
+16 14
+16 12
+16 12
+16 35
+16 33
+16 64
+16 37
+16 11
+16 35
+16 32
+16 12
+16 48
+16 29
+16 14
+16 11
+16 11
+16 10
+16 11
+16 10
+16 10
+16 11
+16 11
+16 10
+16 10
+16 10
+16 11
+16 10
+16 11
+16 11
+16 13
+16 10
+16 11
+16 11
+16 11
+16 11
+16 10
+16 11
+16 11
+16 11
+16 12
+16 11
+16 13
+16 11
+16 10
+16 12
+16 12
+16 10
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
+16 10
+16 12
+16 12
+16 10
+16 11
+16 11
+16 11
+16 11
+16 10
+16 10
+16 11
+16 10
+16 12
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
+16 13
+16 11
+16 10
+16 13
+16 11
+16 11
+16 11
+16 11
+16 11
+16 12
+16 11
+16 10
+16 11
+16 11
+16 10
+16 11
+16 11
+16 11
+16 11
+16 11
+16 10
diff --git a/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..217607ba7f961dc87734d37da5515183080f85db
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.74
+Mediana        = 10
+Variancia      = 12.24
+Desvio Padrao  = 3.5
+Coef. Variacao = 0.33
+Min            = 8
+Max            = 24
+Esq, Dir.      = 10.2163 , 11.2671
diff --git a/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..416ba2d4c990ff4601f40a9cc159913f5a80ffd4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+16 10
+16 10
+16 10
+16 15
+16 17
+16 10
+16 10
+16 9
+16 10
+16 9
+16 10
+16 9
+16 8
+16 10
+16 9
+16 9
+16 10
+16 10
+16 9
+16 11
+16 9
+16 18
+16 16
+16 21
+16 17
+16 18
+16 17
+16 17
+16 16
+16 23
+16 18
+16 9
+16 24
+16 9
+16 8
+16 13
+16 10
+16 24
+16 23
+16 18
+16 10
+16 8
+16 9
+16 10
+16 9
+16 10
+16 10
+16 10
+16 9
+16 8
+16 9
+16 9
+16 9
+16 9
+16 10
+16 12
+16 8
+16 9
+16 9
+16 9
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
+16 10
+16 10
+16 10
+16 10
+16 9
+16 10
+16 9
+16 9
+16 10
+16 9
+16 8
+16 10
+16 9
+16 9
+16 9
+16 10
+16 10
+16 9
+16 10
+16 10
+16 9
+16 10
+16 8
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
+16 11
+16 10
+16 9
+16 10
+16 9
+16 10
+16 10
+16 10
+16 15
+16 9
+16 10
+16 10
+16 9
+16 9
+16 9
+16 10
+16 9
+16 8
+16 9
+16 11
diff --git a/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..67f89f6e72e98472c314f1206ac35bc27b341a92
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 28.1
+Mediana        = 27.5
+Variancia      = 38.94
+Desvio Padrao  = 6.24
+Coef. Variacao = 0.22
+Min            = 20
+Max            = 49
+Esq, Dir.      = 25.8049 , 30.3951
diff --git a/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2495e2991b40cb46fb40b3acc406e3fb3b77a1cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 28
+16 26
+16 28
+16 32
+16 32
+16 22
+16 27
+16 21
+16 30
+16 24
+16 26
+16 31
+16 22
+16 31
+16 31
+16 20
+16 31
+16 24
+16 49
+16 27
diff --git a/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1b51c77c59f62d07ce1aa1f8167fdf648aac36f0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 92785.34
+Mediana        = 80498.5
+Variancia      = 1001944827.22
+Desvio Padrao  = 31653.51
+Coef. Variacao = 0.34
+Min            = 67944
+Max            = 217680
+Esq, Dir.      = 88032.4432 , 97538.2401
diff --git a/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3737bc5e2bcd9554c75bfb9910376b1c8b99ccfa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+16384 83176
+16384 86881
+16384 81558
+16384 83554
+16384 74577
+16384 78634
+16384 86756
+16384 77625
+16384 77458
+16384 89854
+16384 74001
+16384 85630
+16384 71626
+16384 74380
+16384 83490
+16384 74152
+16384 78894
+16384 80517
+16384 84967
+16384 79748
+16384 146841
+16384 132206
+16384 142472
+16384 217680
+16384 183429
+16384 149168
+16384 149480
+16384 140013
+16384 172668
+16384 163681
+16384 157235
+16384 155542
+16384 165785
+16384 163649
+16384 128780
+16384 175272
+16384 142405
+16384 181750
+16384 182979
+16384 143576
+16384 77890
+16384 75484
+16384 87635
+16384 81725
+16384 84410
+16384 73208
+16384 81260
+16384 77277
+16384 78783
+16384 83777
+16384 72227
+16384 79598
+16384 83539
+16384 75211
+16384 79337
+16384 80381
+16384 82006
+16384 87735
+16384 77646
+16384 79704
+16384 80024
+16384 85416
+16384 92936
+16384 79495
+16384 81905
+16384 78527
+16384 73043
+16384 79755
+16384 85103
+16384 76324
+16384 79786
+16384 78163
+16384 70802
+16384 76744
+16384 73091
+16384 84119
+16384 82630
+16384 81725
+16384 87723
+16384 73628
+16384 82278
+16384 68422
+16384 77158
+16384 84585
+16384 80917
+16384 89623
+16384 70646
+16384 76797
+16384 79216
+16384 76996
+16384 79130
+16384 83239
+16384 80873
+16384 78380
+16384 74701
+16384 70248
+16384 78185
+16384 68840
+16384 77492
+16384 67944
+16384 69347
+16384 84424
+16384 87198
+16384 84464
+16384 79739
+16384 89740
+16384 79588
+16384 80480
+16384 87967
+16384 70867
+16384 76621
+16384 77505
+16384 76809
+16384 84578
+16384 81276
+16384 68395
+16384 73001
+16384 77110
+16384 82696
+16384 74905
diff --git a/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d64dd930009ee22ac094f5efb8bd31952b78d0b3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7819.13
+Mediana        = 7110.5
+Variancia      = 3065808.69
+Desvio Padrao  = 1750.95
+Coef. Variacao = 0.22
+Min            = 6603
+Max            = 13358
+Esq, Dir.      = 7556.2221 , 8082.0446
diff --git a/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..256aa5b2d24b559003b124e25246eab486995c4c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+16384 6813
+16384 6900
+16384 7206
+16384 6830
+16384 7031
+16384 6920
+16384 7023
+16384 6983
+16384 7234
+16384 6925
+16384 7348
+16384 6762
+16384 6926
+16384 7703
+16384 7219
+16384 6759
+16384 6603
+16384 6898
+16384 6910
+16384 7039
+16384 10938
+16384 12280
+16384 11534
+16384 11882
+16384 11870
+16384 10100
+16384 12405
+16384 12658
+16384 11271
+16384 11064
+16384 12503
+16384 11958
+16384 13358
+16384 12902
+16384 10100
+16384 10855
+16384 10891
+16384 11512
+16384 11818
+16384 10139
+16384 7643
+16384 6837
+16384 7716
+16384 7127
+16384 7254
+16384 7131
+16384 6966
+16384 7343
+16384 7311
+16384 7231
+16384 6883
+16384 7289
+16384 7109
+16384 7227
+16384 7167
+16384 7215
+16384 6833
+16384 6919
+16384 7019
+16384 7006
+16384 7397
+16384 7076
+16384 7010
+16384 7146
+16384 6830
+16384 7342
+16384 6825
+16384 6946
+16384 6918
+16384 7095
+16384 7124
+16384 7291
+16384 7112
+16384 7069
+16384 6801
+16384 6773
+16384 7186
+16384 7053
+16384 7091
+16384 7115
+16384 6880
+16384 6920
+16384 7115
+16384 6932
+16384 6744
+16384 7178
+16384 7407
+16384 6957
+16384 7184
+16384 6980
+16384 7396
+16384 6980
+16384 6864
+16384 6903
+16384 6805
+16384 7007
+16384 7061
+16384 7077
+16384 7122
+16384 6687
+16384 7137
+16384 6935
+16384 7117
+16384 6822
+16384 7321
+16384 6984
+16384 7062
+16384 6853
+16384 6913
+16384 6868
+16384 7287
+16384 7458
+16384 7142
+16384 7396
+16384 7020
+16384 7475
+16384 6802
+16384 6846
+16384 7228
+16384 6935
diff --git a/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..957fe8a71d11e5a3bc204eabcf2824880e40a0fc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2399.15
+Mediana        = 2239
+Variancia      = 475613.4
+Desvio Padrao  = 689.65
+Coef. Variacao = 0.29
+Min            = 2129
+Max            = 5301
+Esq, Dir.      = 2145.4974 , 2652.8026
diff --git a/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5e44beaf43bc774daa752690c33223db7508866c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 2183
+16384 2193
+16384 2246
+16384 2517
+16384 2301
+16384 2260
+16384 2158
+16384 2184
+16384 2434
+16384 2136
+16384 2186
+16384 2256
+16384 2287
+16384 2216
+16384 2129
+16384 2234
+16384 2189
+16384 2329
+16384 5301
+16384 2244
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a33d842b7fcd626c89d6f099ca4a5d0aa3a12ea3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1942.85
+Mediana        = 2215.5
+Variancia      = 1467251.82
+Desvio Padrao  = 1211.3
+Coef. Variacao = 0.62
+Min            = 342
+Max            = 4332
+Esq, Dir.      = 1497.3327 , 2388.3673
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..87b33add5923ed0bfbb68c6aea2171b2f7916ea2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 2646
+1024 708
+1024 3141
+1024 405
+1024 815
+1024 821
+1024 1529
+1024 1201
+1024 835
+1024 4332
+1024 2289
+1024 3288
+1024 3047
+1024 353
+1024 2245
+1024 2186
+1024 2676
+1024 3596
+1024 342
+1024 2402
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6588794e0d15067256ffff3b76cbc817a1474ab9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1331.15
+Mediana        = 867
+Variancia      = 1499210.56
+Desvio Padrao  = 1224.42
+Coef. Variacao = 0.92
+Min            = 695
+Max            = 4856
+Esq, Dir.      = 880.8068 , 1781.4932
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..b8c807b22843f3630cadc9d2f4807b2503d97ce5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 876
+1024 4856
+1024 839
+1024 799
+1024 981
+1024 695
+1024 804
+1024 877
+1024 3490
+1024 724
+1024 858
+1024 939
+1024 699
+1024 941
+1024 743
+1024 898
+1024 4007
+1024 822
+1024 962
+1024 813
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..869f5a48c0cabe11825b3d1daf12edd66b1bca7b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 61.35
+Mediana        = 50
+Variancia      = 1118.87
+Desvio Padrao  = 33.45
+Coef. Variacao = 0.55
+Min            = 24
+Max            = 156
+Esq, Dir.      = 49.0472 , 73.6528
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0e16abe230e8d31feada300981d1f22b33ad48ea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 97
+128 52
+128 112
+128 28
+128 58
+128 48
+128 43
+128 34
+128 27
+128 84
+128 84
+128 156
+128 80
+128 24
+128 41
+128 42
+128 37
+128 79
+128 58
+128 43
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0c14f306441981f0e92b026536e2e3f0cb868c93
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 81.8
+Mediana        = 69.5
+Variancia      = 1797.54
+Desvio Padrao  = 42.4
+Coef. Variacao = 0.52
+Min            = 27
+Max            = 205
+Esq, Dir.      = 66.2062 , 97.3938
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..9f3bcd9d3a59971d581b6c93ee77a81c2b145f87
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 71
+128 91
+128 68
+128 105
+128 89
+128 59
+128 40
+128 73
+128 97
+128 68
+128 80
+128 64
+128 54
+128 205
+128 49
+128 53
+128 27
+128 169
+128 115
+128 59
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..89ffeaa74f8cb92e0af7f233f0df24971e62793c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 28.75
+Mediana        = 28
+Variancia      = 206.2
+Desvio Padrao  = 14.36
+Coef. Variacao = 0.5
+Min            = 11
+Max            = 64
+Esq, Dir.      = 23.4685 , 34.0315
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bbfa8aae7729bc89d638d9d4d09a5c8f6a6bd603
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 39
+16 24
+16 48
+16 27
+16 25
+16 24
+16 14
+16 12
+16 12
+16 35
+16 33
+16 64
+16 37
+16 11
+16 35
+16 32
+16 12
+16 48
+16 29
+16 14
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0c48c2a2fa051ca984b77f0e5ca8077661b74071
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 67.7
+Mediana        = 73
+Variancia      = 442.43
+Desvio Padrao  = 21.03
+Coef. Variacao = 0.31
+Min            = 18
+Max            = 110
+Esq, Dir.      = 59.9637 , 75.4363
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..65a323bc6c7380d4a4a6ba3276cc4c02a5ea7d11
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 57
+16 110
+16 74
+16 55
+16 84
+16 55
+16 34
+16 72
+16 75
+16 59
+16 81
+16 83
+16 64
+16 89
+16 76
+16 42
+16 18
+16 88
+16 76
+16 62
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9871fbd65733227f954045cdcea91f9477653005
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 159730.55
+Mediana        = 156388.5
+Variancia      = 462710905
+Desvio Padrao  = 21510.72
+Coef. Variacao = 0.13
+Min            = 128780
+Max            = 217680
+Esq, Dir.      = 151818.8989 , 167642.2011
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4702a8559aea51a3c31f1efa2b4240ae7ff98b3f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 146841
+16384 132206
+16384 142472
+16384 217680
+16384 183429
+16384 149168
+16384 149480
+16384 140013
+16384 172668
+16384 163681
+16384 157235
+16384 155542
+16384 165785
+16384 163649
+16384 128780
+16384 175272
+16384 142405
+16384 181750
+16384 182979
+16384 143576
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..371e20e71a79f20ac20c6957a9a94d9165b28500
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 206292.4
+Mediana        = 206361
+Variancia      = 552168955.73
+Desvio Padrao  = 23498.28
+Coef. Variacao = 0.11
+Min            = 172837
+Max            = 249204
+Esq, Dir.      = 197649.7236 , 214935.0764
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..96c33493a2a4a26bcb7736095d6c16ea23d366d7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 215786
+16384 205633
+16384 244365
+16384 174656
+16384 198099
+16384 173229
+16384 209030
+16384 233759
+16384 172837
+16384 225548
+16384 228775
+16384 176410
+16384 211552
+16384 207089
+16384 203064
+16384 249204
+16384 198695
+16384 223244
+16384 177355
+16384 197518
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..785c8d26890a81bfd2e5dd7e9963916b9532d16a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2240.7
+Mediana        = 2148.5
+Variancia      = 655051.48
+Desvio Padrao  = 809.35
+Coef. Variacao = 0.36
+Min            = 1134
+Max            = 3590
+Esq, Dir.      = 1943.0198 , 2538.3802
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..aff7538e7fe63d1ed3c66a5f9dab66388c67c376
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 2133
+2048 2581
+2048 2478
+2048 1445
+2048 3409
+2048 3172
+2048 1441
+2048 1134
+2048 3590
+2048 3163
+2048 1412
+2048 3066
+2048 2350
+2048 1791
+2048 2050
+2048 3249
+2048 2164
+2048 1620
+2048 1302
+2048 1264
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..12e9849dea21893c43102d6bf7b7f846ef518721
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3797.75
+Mediana        = 3367.5
+Variancia      = 1600916.51
+Desvio Padrao  = 1265.27
+Coef. Variacao = 0.33
+Min            = 2703
+Max            = 8444
+Esq, Dir.      = 3332.3819 , 4263.1181
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..f23650fcc1ec912fb0ae097347cb1381390fe53f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 3169
+2048 5327
+2048 3420
+2048 3528
+2048 3924
+2048 2703
+2048 3055
+2048 3126
+2048 4718
+2048 2866
+2048 3265
+2048 3802
+2048 3284
+2048 4173
+2048 3077
+2048 4061
+2048 8444
+2048 3217
+2048 3481
+2048 3315
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5313d734bf208300c988aaa50af4b49db35049c7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 110.75
+Mediana        = 83
+Variancia      = 3502.41
+Desvio Padrao  = 59.18
+Coef. Variacao = 0.53
+Min            = 35
+Max            = 237
+Esq, Dir.      = 88.9831 , 132.5169
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b725a66de589b6d1b69f38c54aaa8a8c3666a653
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 168
+256 74
+256 163
+256 43
+256 77
+256 74
+256 85
+256 68
+256 36
+256 186
+256 184
+256 237
+256 160
+256 35
+256 81
+256 80
+256 118
+256 183
+256 75
+256 88
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..a6de0fbb55f62edfd8e7eb8678f5b314f29d722d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 122.8
+Mediana        = 104
+Variancia      = 3706.59
+Desvio Padrao  = 60.88
+Coef. Variacao = 0.5
+Min            = 59
+Max            = 288
+Esq, Dir.      = 100.4077 , 145.1923
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..21671b2fc28a176d8fb755555f6ffeb230882502
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 128
+256 288
+256 173
+256 59
+256 97
+256 69
+256 142
+256 71
+256 128
+256 77
+256 206
+256 220
+256 70
+256 84
+256 154
+256 111
+256 81
+256 79
+256 78
+256 141
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0c83f51864468510ac2cf90e30c5f3910fa88b13
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 15.9
+Mediana        = 11.5
+Variancia      = 96.73
+Desvio Padrao  = 9.83
+Coef. Variacao = 0.62
+Min            = 6
+Max            = 37
+Esq, Dir.      = 12.2827 , 19.5173
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b8b59278011f210e16a3dd84f66a6d45278dbba6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 34
+32 12
+32 37
+32 7
+32 11
+32 14
+32 9
+32 7
+32 6
+32 22
+32 22
+32 33
+32 20
+32 6
+32 9
+32 18
+32 8
+32 23
+32 11
+32 9
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5eb3cdb4bbeb143a672e1fa575aa73bf6b0a8cfd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 17.85
+Mediana        = 18.5
+Variancia      = 37.19
+Desvio Padrao  = 6.1
+Coef. Variacao = 0.34
+Min            = 7
+Max            = 32
+Esq, Dir.      = 15.6071 , 20.0929
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..63fb24c205ab97417c88e9de8209076b3542f09a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 15
+32 32
+32 22
+32 12
+32 21
+32 12
+32 9
+32 21
+32 21
+32 16
+32 18
+32 16
+32 21
+32 27
+32 21
+32 21
+32 7
+32 19
+32 16
+32 10
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..340f18076da2eeefe499bd5bca86fac2e88b8991
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 623854.8
+Mediana        = 613836.5
+Variancia      = 1824574611.64
+Desvio Padrao  = 42715.04
+Coef. Variacao = 0.07
+Min            = 545852
+Max            = 723872
+Esq, Dir.      = 608144.1891 , 639565.4109
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2e33c9b44e5bd155184186fac07563a6839afa4d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 635689
+32768 601664
+32768 593219
+32768 643746
+32768 723872
+32768 587302
+32768 601944
+32768 596924
+32768 608508
+32768 545852
+32768 687097
+32768 648829
+32768 577259
+32768 663640
+32768 631900
+32768 665900
+32768 585672
+32768 597186
+32768 661728
+32768 619165
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1cf1f223f878b7fca2cb8cf81b0145d4f3f6ec20
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 844521.85
+Mediana        = 837634.5
+Variancia      = 3718220446.87
+Desvio Padrao  = 60977.21
+Coef. Variacao = 0.07
+Min            = 727642
+Max            = 982006
+Esq, Dir.      = 822094.4037 , 866949.2963
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..013d7168479ed3033b2ff48c284a9d9eb29c321a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 836277
+32768 813715
+32768 982006
+32768 816997
+32768 828673
+32768 813571
+32768 799716
+32768 874650
+32768 727642
+32768 912353
+32768 923952
+32768 910362
+32768 838992
+32768 871646
+32768 830691
+32768 866971
+32768 851589
+32768 774716
+32768 870733
+32768 745185
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5076cda9fc2441a5a13110fb90fd0fa06b7388da
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9207.45
+Mediana        = 9338
+Variancia      = 9050421.63
+Desvio Padrao  = 3008.39
+Coef. Variacao = 0.33
+Min            = 4903
+Max            = 14304
+Esq, Dir.      = 8100.9621 , 10313.9379
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8ea0981e41e63fe86e5ad30de9e8becfc993ec83
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 9877
+4096 10333
+4096 10024
+4096 6452
+4096 14304
+4096 12796
+4096 4962
+4096 8799
+4096 13062
+4096 12152
+4096 7766
+4096 8782
+4096 10435
+4096 5135
+4096 4903
+4096 12923
+4096 8308
+4096 11403
+4096 6489
+4096 5244
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6fd03978f2deeb943a22a510e475b373a2c975ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 11905.55
+Mediana        = 11648.5
+Variancia      = 1475099.73
+Desvio Padrao  = 1214.54
+Coef. Variacao = 0.1
+Min            = 10155
+Max            = 14159
+Esq, Dir.      = 11458.8428 , 12352.2572
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..78648370f7abf0736c6c95855dcda7220c9f329b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 11589
+4096 11769
+4096 12005
+4096 11017
+4096 13750
+4096 11151
+4096 10488
+4096 10568
+4096 11865
+4096 10155
+4096 12010
+4096 11330
+4096 10720
+4096 13779
+4096 11528
+4096 14159
+4096 14096
+4096 12835
+4096 11665
+4096 11632
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..05f06effa4078d0b65fc1812661e68c8f62e22b5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 605.15
+Mediana        = 494
+Variancia      = 153656.98
+Desvio Padrao  = 391.99
+Coef. Variacao = 0.65
+Min            = 104
+Max            = 1332
+Esq, Dir.      = 460.9755 , 749.3245
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..009134d0d511b4b08da9e1779826810b66ed19fe
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 1013
+512 215
+512 1085
+512 120
+512 241
+512 248
+512 532
+512 484
+512 317
+512 1089
+512 1332
+512 1158
+512 937
+512 104
+512 501
+512 458
+512 950
+512 646
+512 186
+512 487
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..d787c35cdbc00529ebf9b760848ee1d8bb60c939
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 360.4
+Mediana        = 315
+Variancia      = 17409.31
+Desvio Padrao  = 131.94
+Coef. Variacao = 0.37
+Min            = 257
+Max            = 700
+Esq, Dir.      = 311.8708 , 408.9292
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c52f628a972b9985308a8998f362ea956406e75d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 275
+512 596
+512 295
+512 280
+512 330
+512 261
+512 339
+512 336
+512 653
+512 282
+512 344
+512 302
+512 326
+512 304
+512 258
+512 432
+512 700
+512 303
+512 335
+512 257
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b0231d9ca8d9e8e23ef1ef68018b9e9100400200
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 22.85
+Mediana        = 16
+Variancia      = 201.82
+Desvio Padrao  = 14.21
+Coef. Variacao = 0.62
+Min            = 8
+Max            = 62
+Esq, Dir.      = 17.6249 , 28.0751
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9cc173d24b7a9d6fbc8cca70f6f502c957bfe8bd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 43
+64 16
+64 41
+64 9
+64 18
+64 16
+64 14
+64 12
+64 9
+64 27
+64 35
+64 62
+64 27
+64 8
+64 14
+64 29
+64 12
+64 34
+64 16
+64 15
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5ed20ff09aac9be001b82bafe736c885ffd12bf1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 29.85
+Mediana        = 23
+Variancia      = 779.82
+Desvio Padrao  = 27.93
+Coef. Variacao = 0.94
+Min            = 8
+Max            = 142
+Esq, Dir.      = 19.5791 , 40.1209
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..e4857eb961e5181649ab4208232143ce51d9ef39
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 23
+64 37
+64 16
+64 19
+64 142
+64 20
+64 14
+64 26
+64 40
+64 28
+64 21
+64 31
+64 15
+64 36
+64 15
+64 16
+64 8
+64 28
+64 23
+64 39
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..526746c2f55581ca5424bde2f5c01eacca8c7356
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 3583772.3
+Mediana        = 3556886.5
+Variancia      = 10025243651.8
+Desvio Padrao  = 100126.14
+Coef. Variacao = 0.03
+Min            = 3469782
+Max            = 3783762
+Esq, Dir.      = 3546945.8609 , 3620598.7391
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..da8c859120a2ee4edb9378452f869073aa1da553
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 3487022
+65536 3497059
+65536 3557820
+65536 3753961
+65536 3783762
+65536 3543227
+65536 3470671
+65536 3507657
+65536 3526868
+65536 3511704
+65536 3506762
+65536 3569747
+65536 3611263
+65536 3758999
+65536 3648128
+65536 3555953
+65536 3584701
+65536 3722420
+65536 3469782
+65536 3607940
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..4d20ebaeb634c2bf6c31f47a8bf69457ebd76c5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3048935.55
+Mediana        = 3043174.5
+Variancia      = 16580066322.26
+Desvio Padrao  = 128763.61
+Coef. Variacao = 0.04
+Min            = 2816560
+Max            = 3249125
+Esq, Dir.      = 3001576.2373 , 3096294.8627
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..dec5c09208392cc7f0b7075f0e70947a9fd3435c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 3171156
+65536 3249125
+65536 3145722
+65536 2990087
+65536 2996893
+65536 3151742
+65536 3052244
+65536 3162971
+65536 3027508
+65536 3034105
+65536 3155269
+65536 2919261
+65536 3213297
+65536 2870575
+65536 3141673
+65536 3000920
+65536 3120318
+65536 2816560
+65536 2825164
+65536 2934121
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..463faa20a2c6fb67deaf63f14c3a3b6f82f4ebf9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 36930.5
+Mediana        = 39048
+Variancia      = 103130597.84
+Desvio Padrao  = 10155.32
+Coef. Variacao = 0.27
+Min            = 20984
+Max            = 55103
+Esq, Dir.      = 33195.3674 , 40665.6326
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9ab4dfb0b9fb3f664eaf3eeabc0a4cf6a880cb0b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 40256
+8192 42143
+8192 39163
+8192 36760
+8192 48673
+8192 33568
+8192 21836
+8192 35939
+8192 55103
+8192 45790
+8192 38933
+8192 20984
+8192 39484
+8192 23440
+8192 29300
+8192 48544
+8192 40214
+8192 49622
+8192 26033
+8192 22825
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b9834280896be8b9727c5e7ff80d71d44c7e3f1b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 47431.9
+Mediana        = 46483
+Variancia      = 36229964.94
+Desvio Padrao  = 6019.13
+Coef. Variacao = 0.13
+Min            = 40300
+Max            = 58148
+Esq, Dir.      = 45218.0601 , 49645.7399
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..cae9c04196c1a48a0bf4dafe488b4ce68c6198ea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 40705
+8192 51114
+8192 55435
+8192 41310
+8192 54230
+8192 45546
+8192 41883
+8192 46616
+8192 40723
+8192 42004
+8192 46350
+8192 53202
+8192 42684
+8192 55269
+8192 50272
+8192 58148
+8192 47508
+8192 53995
+8192 41344
+8192 40300
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..bde3322f50229607411e172b5331d949f887c88e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (81ms)
+    ✓ LayoutView;n=32 (18ms)
+    ✓ LayoutView;n=64 (21ms)
+    ✓ LayoutView;n=128 (80ms)
+    ✓ LayoutView;n=256 (206ms)
+    ✓ LayoutView;n=512 (344ms)
+    ✓ LayoutView;n=1024 (858ms)
+    ✓ LayoutView;n=2048 (3265ms)
+    ✓ LayoutView;n=4096 (12010ms)
+    ✓ LayoutView;n=8192 (46350ms)
+    ✓ LayoutView;n=16384 (228775ms)
+    ✓ LayoutView;n=32768 (923952ms)
+    ✓ LayoutView;n=65536 (3155269ms)
+    ✓ LayoutSQL;n=16 (33ms)
+    ✓ LayoutSQL;n=32 (22ms)
+    ✓ LayoutSQL;n=64 (35ms)
+    ✓ LayoutSQL;n=128 (84ms)
+    ✓ LayoutSQL;n=256 (184ms)
+    ✓ LayoutSQL;n=512 (1332ms)
+    ✓ LayoutSQL;n=1024 (2289ms)
+    ✓ LayoutSQL;n=2048 (1412ms)
+    ✓ LayoutSQL;n=4096 (7766ms)
+    ✓ LayoutSQL;n=8192 (38933ms)
+    ✓ LayoutSQL;n=16384 (157235ms)
+    ✓ LayoutSQL;n=32768 (687097ms)
+    ✓ LayoutSQL;n=65536 (3506762ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..02b9dff1ac33d2d2e70842c5a770a2bb2e12c7ea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (59ms)
+    ✓ LayoutView;n=32 (16ms)
+    ✓ LayoutView;n=64 (28ms)
+    ✓ LayoutView;n=128 (68ms)
+    ✓ LayoutView;n=256 (77ms)
+    ✓ LayoutView;n=512 (282ms)
+    ✓ LayoutView;n=1024 (724ms)
+    ✓ LayoutView;n=2048 (2866ms)
+    ✓ LayoutView;n=4096 (10155ms)
+    ✓ LayoutView;n=8192 (42004ms)
+    ✓ LayoutView;n=16384 (225548ms)
+    ✓ LayoutView;n=32768 (912353ms)
+    ✓ LayoutView;n=65536 (3034105ms)
+    ✓ LayoutSQL;n=16 (35ms)
+    ✓ LayoutSQL;n=32 (22ms)
+    ✓ LayoutSQL;n=64 (27ms)
+    ✓ LayoutSQL;n=128 (84ms)
+    ✓ LayoutSQL;n=256 (186ms)
+    ✓ LayoutSQL;n=512 (1089ms)
+    ✓ LayoutSQL;n=1024 (4332ms)
+    ✓ LayoutSQL;n=2048 (3163ms)
+    ✓ LayoutSQL;n=4096 (12152ms)
+    ✓ LayoutSQL;n=8192 (45790ms)
+    ✓ LayoutSQL;n=16384 (163681ms)
+    ✓ LayoutSQL;n=32768 (545852ms)
+    ✓ LayoutSQL;n=65536 (3511704ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..2fc5d0707a370f8d8dc22276c64dc0655be06881
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (62ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (39ms)
+    ✓ LayoutView;n=128 (59ms)
+    ✓ LayoutView;n=256 (141ms)
+    ✓ LayoutView;n=512 (257ms)
+    ✓ LayoutView;n=1024 (813ms)
+    ✓ LayoutView;n=2048 (3315ms)
+    ✓ LayoutView;n=4096 (11632ms)
+    ✓ LayoutView;n=8192 (40300ms)
+    ✓ LayoutView;n=16384 (197518ms)
+    ✓ LayoutView;n=32768 (745185ms)
+    ✓ LayoutView;n=65536 (2934121ms)
+    ✓ LayoutSQL;n=16 (14ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (15ms)
+    ✓ LayoutSQL;n=128 (43ms)
+    ✓ LayoutSQL;n=256 (88ms)
+    ✓ LayoutSQL;n=512 (487ms)
+    ✓ LayoutSQL;n=1024 (2402ms)
+    ✓ LayoutSQL;n=2048 (1264ms)
+    ✓ LayoutSQL;n=4096 (5244ms)
+    ✓ LayoutSQL;n=8192 (22825ms)
+    ✓ LayoutSQL;n=16384 (143576ms)
+    ✓ LayoutSQL;n=32768 (619165ms)
+    ✓ LayoutSQL;n=65536 (3607940ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..f35dd5d92bdb3e0eb09590907f88fa9e85ebddb7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (72ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (26ms)
+    ✓ LayoutView;n=128 (73ms)
+    ✓ LayoutView;n=256 (71ms)
+    ✓ LayoutView;n=512 (336ms)
+    ✓ LayoutView;n=1024 (877ms)
+    ✓ LayoutView;n=2048 (3126ms)
+    ✓ LayoutView;n=4096 (10568ms)
+    ✓ LayoutView;n=8192 (46616ms)
+    ✓ LayoutView;n=16384 (233759ms)
+    ✓ LayoutView;n=32768 (874650ms)
+    ✓ LayoutView;n=65536 (3162971ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (12ms)
+    ✓ LayoutSQL;n=128 (34ms)
+    ✓ LayoutSQL;n=256 (68ms)
+    ✓ LayoutSQL;n=512 (484ms)
+    ✓ LayoutSQL;n=1024 (1201ms)
+    ✓ LayoutSQL;n=2048 (1134ms)
+    ✓ LayoutSQL;n=4096 (8799ms)
+    ✓ LayoutSQL;n=8192 (35939ms)
+    ✓ LayoutSQL;n=16384 (140013ms)
+    ✓ LayoutSQL;n=32768 (596924ms)
+    ✓ LayoutSQL;n=65536 (3507657ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..ff0c1ab2a18a94f5ee8b428cdb27e3a42820384c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (42ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (16ms)
+    ✓ LayoutView;n=128 (53ms)
+    ✓ LayoutView;n=256 (111ms)
+    ✓ LayoutView;n=512 (432ms)
+    ✓ LayoutView;n=1024 (898ms)
+    ✓ LayoutView;n=2048 (4061ms)
+    ✓ LayoutView;n=4096 (14159ms)
+    ✓ LayoutView;n=8192 (58148ms)
+    ✓ LayoutView;n=16384 (249204ms)
+    ✓ LayoutView;n=32768 (866971ms)
+    ✓ LayoutView;n=65536 (3000920ms)
+    ✓ LayoutSQL;n=16 (32ms)
+    ✓ LayoutSQL;n=32 (18ms)
+    ✓ LayoutSQL;n=64 (29ms)
+    ✓ LayoutSQL;n=128 (42ms)
+    ✓ LayoutSQL;n=256 (80ms)
+    ✓ LayoutSQL;n=512 (458ms)
+    ✓ LayoutSQL;n=1024 (2186ms)
+    ✓ LayoutSQL;n=2048 (3249ms)
+    ✓ LayoutSQL;n=4096 (12923ms)
+    ✓ LayoutSQL;n=8192 (48544ms)
+    ✓ LayoutSQL;n=16384 (175272ms)
+    ✓ LayoutSQL;n=32768 (665900ms)
+    ✓ LayoutSQL;n=65536 (3555953ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..d500b0938819553e4f2fb2f3c47e3963659c2490
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (55ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (19ms)
+    ✓ LayoutView;n=128 (105ms)
+    ✓ LayoutView;n=256 (59ms)
+    ✓ LayoutView;n=512 (280ms)
+    ✓ LayoutView;n=1024 (799ms)
+    ✓ LayoutView;n=2048 (3528ms)
+    ✓ LayoutView;n=4096 (11017ms)
+    ✓ LayoutView;n=8192 (41310ms)
+    ✓ LayoutView;n=16384 (174656ms)
+    ✓ LayoutView;n=32768 (816997ms)
+    ✓ LayoutView;n=65536 (2990087ms)
+    ✓ LayoutSQL;n=16 (27ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (28ms)
+    ✓ LayoutSQL;n=256 (43ms)
+    ✓ LayoutSQL;n=512 (120ms)
+    ✓ LayoutSQL;n=1024 (405ms)
+    ✓ LayoutSQL;n=2048 (1445ms)
+    ✓ LayoutSQL;n=4096 (6452ms)
+    ✓ LayoutSQL;n=8192 (36760ms)
+    ✓ LayoutSQL;n=16384 (217680ms)
+    ✓ LayoutSQL;n=32768 (643746ms)
+    ✓ LayoutSQL;n=65536 (3753961ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..22a9bdaecee0fe555afda9b92217f75ee110819a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (34ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (14ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (142ms)
+    ✓ LayoutView;n=512 (339ms)
+    ✓ LayoutView;n=1024 (804ms)
+    ✓ LayoutView;n=2048 (3055ms)
+    ✓ LayoutView;n=4096 (10488ms)
+    ✓ LayoutView;n=8192 (41883ms)
+    ✓ LayoutView;n=16384 (209030ms)
+    ✓ LayoutView;n=32768 (799716ms)
+    ✓ LayoutView;n=65536 (3052244ms)
+    ✓ LayoutSQL;n=16 (14ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (14ms)
+    ✓ LayoutSQL;n=128 (43ms)
+    ✓ LayoutSQL;n=256 (85ms)
+    ✓ LayoutSQL;n=512 (532ms)
+    ✓ LayoutSQL;n=1024 (1529ms)
+    ✓ LayoutSQL;n=2048 (1441ms)
+    ✓ LayoutSQL;n=4096 (4962ms)
+    ✓ LayoutSQL;n=8192 (21836ms)
+    ✓ LayoutSQL;n=16384 (149480ms)
+    ✓ LayoutSQL;n=32768 (601944ms)
+    ✓ LayoutSQL;n=65536 (3470671ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..03dd77126f44cef18d94c63d2e0010f54a6df1e7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (76ms)
+    ✓ LayoutView;n=32 (16ms)
+    ✓ LayoutView;n=64 (23ms)
+    ✓ LayoutView;n=128 (115ms)
+    ✓ LayoutView;n=256 (78ms)
+    ✓ LayoutView;n=512 (335ms)
+    ✓ LayoutView;n=1024 (962ms)
+    ✓ LayoutView;n=2048 (3481ms)
+    ✓ LayoutView;n=4096 (11665ms)
+    ✓ LayoutView;n=8192 (41344ms)
+    ✓ LayoutView;n=16384 (177355ms)
+    ✓ LayoutView;n=32768 (870733ms)
+    ✓ LayoutView;n=65536 (2825164ms)
+    ✓ LayoutSQL;n=16 (29ms)
+    ✓ LayoutSQL;n=32 (11ms)
+    ✓ LayoutSQL;n=64 (16ms)
+    ✓ LayoutSQL;n=128 (58ms)
+    ✓ LayoutSQL;n=256 (75ms)
+    ✓ LayoutSQL;n=512 (186ms)
+    ✓ LayoutSQL;n=1024 (342ms)
+    ✓ LayoutSQL;n=2048 (1302ms)
+    ✓ LayoutSQL;n=4096 (6489ms)
+    ✓ LayoutSQL;n=8192 (26033ms)
+    ✓ LayoutSQL;n=16384 (182979ms)
+    ✓ LayoutSQL;n=32768 (661728ms)
+    ✓ LayoutSQL;n=65536 (3469782ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..ebc3586778bfd61a88a3f03609f63a5e9b128b1f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (83ms)
+    ✓ LayoutView;n=32 (16ms)
+    ✓ LayoutView;n=64 (31ms)
+    ✓ LayoutView;n=128 (64ms)
+    ✓ LayoutView;n=256 (220ms)
+    ✓ LayoutView;n=512 (302ms)
+    ✓ LayoutView;n=1024 (939ms)
+    ✓ LayoutView;n=2048 (3802ms)
+    ✓ LayoutView;n=4096 (11330ms)
+    ✓ LayoutView;n=8192 (53202ms)
+    ✓ LayoutView;n=16384 (176410ms)
+    ✓ LayoutView;n=32768 (910362ms)
+    ✓ LayoutView;n=65536 (2919261ms)
+    ✓ LayoutSQL;n=16 (64ms)
+    ✓ LayoutSQL;n=32 (33ms)
+    ✓ LayoutSQL;n=64 (62ms)
+    ✓ LayoutSQL;n=128 (156ms)
+    ✓ LayoutSQL;n=256 (237ms)
+    ✓ LayoutSQL;n=512 (1158ms)
+    ✓ LayoutSQL;n=1024 (3288ms)
+    ✓ LayoutSQL;n=2048 (3066ms)
+    ✓ LayoutSQL;n=4096 (8782ms)
+    ✓ LayoutSQL;n=8192 (20984ms)
+    ✓ LayoutSQL;n=16384 (155542ms)
+    ✓ LayoutSQL;n=32768 (648829ms)
+    ✓ LayoutSQL;n=65536 (3569747ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..00e9a80e3c7ffaac515182192bb0da6545dbbf6c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (88ms)
+    ✓ LayoutView;n=32 (19ms)
+    ✓ LayoutView;n=64 (28ms)
+    ✓ LayoutView;n=128 (169ms)
+    ✓ LayoutView;n=256 (79ms)
+    ✓ LayoutView;n=512 (303ms)
+    ✓ LayoutView;n=1024 (822ms)
+    ✓ LayoutView;n=2048 (3217ms)
+    ✓ LayoutView;n=4096 (12835ms)
+    ✓ LayoutView;n=8192 (53995ms)
+    ✓ LayoutView;n=16384 (223244ms)
+    ✓ LayoutView;n=32768 (774716ms)
+    ✓ LayoutView;n=65536 (2816560ms)
+    ✓ LayoutSQL;n=16 (48ms)
+    ✓ LayoutSQL;n=32 (23ms)
+    ✓ LayoutSQL;n=64 (34ms)
+    ✓ LayoutSQL;n=128 (79ms)
+    ✓ LayoutSQL;n=256 (183ms)
+    ✓ LayoutSQL;n=512 (646ms)
+    ✓ LayoutSQL;n=1024 (3596ms)
+    ✓ LayoutSQL;n=2048 (1620ms)
+    ✓ LayoutSQL;n=4096 (11403ms)
+    ✓ LayoutSQL;n=8192 (49622ms)
+    ✓ LayoutSQL;n=16384 (181750ms)
+    ✓ LayoutSQL;n=32768 (597186ms)
+    ✓ LayoutSQL;n=65536 (3722420ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..442d17dd175d8af910e4f72ea14e477f04c4d4fa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (57ms)
+    ✓ LayoutView;n=32 (15ms)
+    ✓ LayoutView;n=64 (23ms)
+    ✓ LayoutView;n=128 (71ms)
+    ✓ LayoutView;n=256 (128ms)
+    ✓ LayoutView;n=512 (275ms)
+    ✓ LayoutView;n=1024 (876ms)
+    ✓ LayoutView;n=2048 (3169ms)
+    ✓ LayoutView;n=4096 (11589ms)
+    ✓ LayoutView;n=8192 (40705ms)
+    ✓ LayoutView;n=16384 (215786ms)
+    ✓ LayoutView;n=32768 (836277ms)
+    ✓ LayoutView;n=65536 (3171156ms)
+    ✓ LayoutSQL;n=16 (39ms)
+    ✓ LayoutSQL;n=32 (34ms)
+    ✓ LayoutSQL;n=64 (43ms)
+    ✓ LayoutSQL;n=128 (97ms)
+    ✓ LayoutSQL;n=256 (168ms)
+    ✓ LayoutSQL;n=512 (1013ms)
+    ✓ LayoutSQL;n=1024 (2646ms)
+    ✓ LayoutSQL;n=2048 (2133ms)
+    ✓ LayoutSQL;n=4096 (9877ms)
+    ✓ LayoutSQL;n=8192 (40256ms)
+    ✓ LayoutSQL;n=16384 (146841ms)
+    ✓ LayoutSQL;n=32768 (635689ms)
+    ✓ LayoutSQL;n=65536 (3487022ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..dc07a654d63a88daae1bf493c0de4fbba26ef597
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (74ms)
+    ✓ LayoutView;n=32 (22ms)
+    ✓ LayoutView;n=64 (16ms)
+    ✓ LayoutView;n=128 (68ms)
+    ✓ LayoutView;n=256 (173ms)
+    ✓ LayoutView;n=512 (295ms)
+    ✓ LayoutView;n=1024 (839ms)
+    ✓ LayoutView;n=2048 (3420ms)
+    ✓ LayoutView;n=4096 (12005ms)
+    ✓ LayoutView;n=8192 (55435ms)
+    ✓ LayoutView;n=16384 (244365ms)
+    ✓ LayoutView;n=32768 (982006ms)
+    ✓ LayoutView;n=65536 (3145722ms)
+    ✓ LayoutSQL;n=16 (48ms)
+    ✓ LayoutSQL;n=32 (37ms)
+    ✓ LayoutSQL;n=64 (41ms)
+    ✓ LayoutSQL;n=128 (112ms)
+    ✓ LayoutSQL;n=256 (163ms)
+    ✓ LayoutSQL;n=512 (1085ms)
+    ✓ LayoutSQL;n=1024 (3141ms)
+    ✓ LayoutSQL;n=2048 (2478ms)
+    ✓ LayoutSQL;n=4096 (10024ms)
+    ✓ LayoutSQL;n=8192 (39163ms)
+    ✓ LayoutSQL;n=16384 (142472ms)
+    ✓ LayoutSQL;n=32768 (593219ms)
+    ✓ LayoutSQL;n=65536 (3557820ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..bccb6c2f85b3f71e1540087fa131daaa9b46f4ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (110ms)
+    ✓ LayoutView;n=32 (32ms)
+    ✓ LayoutView;n=64 (37ms)
+    ✓ LayoutView;n=128 (91ms)
+    ✓ LayoutView;n=256 (288ms)
+    ✓ LayoutView;n=512 (596ms)
+    ✓ LayoutView;n=1024 (4856ms)
+    ✓ LayoutView;n=2048 (5327ms)
+    ✓ LayoutView;n=4096 (11769ms)
+    ✓ LayoutView;n=8192 (51114ms)
+    ✓ LayoutView;n=16384 (205633ms)
+    ✓ LayoutView;n=32768 (813715ms)
+    ✓ LayoutView;n=65536 (3249125ms)
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (16ms)
+    ✓ LayoutSQL;n=128 (52ms)
+    ✓ LayoutSQL;n=256 (74ms)
+    ✓ LayoutSQL;n=512 (215ms)
+    ✓ LayoutSQL;n=1024 (708ms)
+    ✓ LayoutSQL;n=2048 (2581ms)
+    ✓ LayoutSQL;n=4096 (10333ms)
+    ✓ LayoutSQL;n=8192 (42143ms)
+    ✓ LayoutSQL;n=16384 (132206ms)
+    ✓ LayoutSQL;n=32768 (601664ms)
+    ✓ LayoutSQL;n=65536 (3497059ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..79f25510564a9b584b69f71e63c22d796fb44f88
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (7ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (27ms)
+    ✓ LayoutView;n=256 (81ms)
+    ✓ LayoutView;n=512 (700ms)
+    ✓ LayoutView;n=1024 (4007ms)
+    ✓ LayoutView;n=2048 (8444ms)
+    ✓ LayoutView;n=4096 (14096ms)
+    ✓ LayoutView;n=8192 (47508ms)
+    ✓ LayoutView;n=16384 (198695ms)
+    ✓ LayoutView;n=32768 (851589ms)
+    ✓ LayoutView;n=65536 (3120318ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (8ms)
+    ✓ LayoutSQL;n=64 (12ms)
+    ✓ LayoutSQL;n=128 (37ms)
+    ✓ LayoutSQL;n=256 (118ms)
+    ✓ LayoutSQL;n=512 (950ms)
+    ✓ LayoutSQL;n=1024 (2676ms)
+    ✓ LayoutSQL;n=2048 (2164ms)
+    ✓ LayoutSQL;n=4096 (8308ms)
+    ✓ LayoutSQL;n=8192 (40214ms)
+    ✓ LayoutSQL;n=16384 (142405ms)
+    ✓ LayoutSQL;n=32768 (585672ms)
+    ✓ LayoutSQL;n=65536 (3584701ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..f1d05e61ac9ba32a8663b4d500e425c471dfdca0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (76ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (15ms)
+    ✓ LayoutView;n=128 (49ms)
+    ✓ LayoutView;n=256 (154ms)
+    ✓ LayoutView;n=512 (258ms)
+    ✓ LayoutView;n=1024 (743ms)
+    ✓ LayoutView;n=2048 (3077ms)
+    ✓ LayoutView;n=4096 (11528ms)
+    ✓ LayoutView;n=8192 (50272ms)
+    ✓ LayoutView;n=16384 (203064ms)
+    ✓ LayoutView;n=32768 (830691ms)
+    ✓ LayoutView;n=65536 (3141673ms)
+    ✓ LayoutSQL;n=16 (35ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (14ms)
+    ✓ LayoutSQL;n=128 (41ms)
+    ✓ LayoutSQL;n=256 (81ms)
+    ✓ LayoutSQL;n=512 (501ms)
+    ✓ LayoutSQL;n=1024 (2245ms)
+    ✓ LayoutSQL;n=2048 (2050ms)
+    ✓ LayoutSQL;n=4096 (4903ms)
+    ✓ LayoutSQL;n=8192 (29300ms)
+    ✓ LayoutSQL;n=16384 (128780ms)
+    ✓ LayoutSQL;n=32768 (631900ms)
+    ✓ LayoutSQL;n=65536 (3648128ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..d5ddbf78a2e0f5d59125cdc4d6455509e381a19d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (84ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (142ms)
+    ✓ LayoutView;n=128 (89ms)
+    ✓ LayoutView;n=256 (97ms)
+    ✓ LayoutView;n=512 (330ms)
+    ✓ LayoutView;n=1024 (981ms)
+    ✓ LayoutView;n=2048 (3924ms)
+    ✓ LayoutView;n=4096 (13750ms)
+    ✓ LayoutView;n=8192 (54230ms)
+    ✓ LayoutView;n=16384 (198099ms)
+    ✓ LayoutView;n=32768 (828673ms)
+    ✓ LayoutView;n=65536 (2996893ms)
+    ✓ LayoutSQL;n=16 (25ms)
+    ✓ LayoutSQL;n=32 (11ms)
+    ✓ LayoutSQL;n=64 (18ms)
+    ✓ LayoutSQL;n=128 (58ms)
+    ✓ LayoutSQL;n=256 (77ms)
+    ✓ LayoutSQL;n=512 (241ms)
+    ✓ LayoutSQL;n=1024 (815ms)
+    ✓ LayoutSQL;n=2048 (3409ms)
+    ✓ LayoutSQL;n=4096 (14304ms)
+    ✓ LayoutSQL;n=8192 (48673ms)
+    ✓ LayoutSQL;n=16384 (183429ms)
+    ✓ LayoutSQL;n=32768 (723872ms)
+    ✓ LayoutSQL;n=65536 (3783762ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..fa3ce2e043cafd1f5fba6af55e7583b117d80d3d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (55ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (20ms)
+    ✓ LayoutView;n=128 (59ms)
+    ✓ LayoutView;n=256 (69ms)
+    ✓ LayoutView;n=512 (261ms)
+    ✓ LayoutView;n=1024 (695ms)
+    ✓ LayoutView;n=2048 (2703ms)
+    ✓ LayoutView;n=4096 (11151ms)
+    ✓ LayoutView;n=8192 (45546ms)
+    ✓ LayoutView;n=16384 (173229ms)
+    ✓ LayoutView;n=32768 (813571ms)
+    ✓ LayoutView;n=65536 (3151742ms)
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (14ms)
+    ✓ LayoutSQL;n=64 (16ms)
+    ✓ LayoutSQL;n=128 (48ms)
+    ✓ LayoutSQL;n=256 (74ms)
+    ✓ LayoutSQL;n=512 (248ms)
+    ✓ LayoutSQL;n=1024 (821ms)
+    ✓ LayoutSQL;n=2048 (3172ms)
+    ✓ LayoutSQL;n=4096 (12796ms)
+    ✓ LayoutSQL;n=8192 (33568ms)
+    ✓ LayoutSQL;n=16384 (149168ms)
+    ✓ LayoutSQL;n=32768 (587302ms)
+    ✓ LayoutSQL;n=65536 (3543227ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..0a2d3f44bc4ef2b75145d1f59ee596194436fd58
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (64ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (15ms)
+    ✓ LayoutView;n=128 (54ms)
+    ✓ LayoutView;n=256 (70ms)
+    ✓ LayoutView;n=512 (326ms)
+    ✓ LayoutView;n=1024 (699ms)
+    ✓ LayoutView;n=2048 (3284ms)
+    ✓ LayoutView;n=4096 (10720ms)
+    ✓ LayoutView;n=8192 (42684ms)
+    ✓ LayoutView;n=16384 (211552ms)
+    ✓ LayoutView;n=32768 (838992ms)
+    ✓ LayoutView;n=65536 (3213297ms)
+    ✓ LayoutSQL;n=16 (37ms)
+    ✓ LayoutSQL;n=32 (20ms)
+    ✓ LayoutSQL;n=64 (27ms)
+    ✓ LayoutSQL;n=128 (80ms)
+    ✓ LayoutSQL;n=256 (160ms)
+    ✓ LayoutSQL;n=512 (937ms)
+    ✓ LayoutSQL;n=1024 (3047ms)
+    ✓ LayoutSQL;n=2048 (2350ms)
+    ✓ LayoutSQL;n=4096 (10435ms)
+    ✓ LayoutSQL;n=8192 (39484ms)
+    ✓ LayoutSQL;n=16384 (165785ms)
+    ✓ LayoutSQL;n=32768 (577259ms)
+    ✓ LayoutSQL;n=65536 (3611263ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..4650ceae667e73610390893f3a8972e213a92484
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (75ms)
+    ✓ LayoutView;n=32 (21ms)
+    ✓ LayoutView;n=64 (40ms)
+    ✓ LayoutView;n=128 (97ms)
+    ✓ LayoutView;n=256 (128ms)
+    ✓ LayoutView;n=512 (653ms)
+    ✓ LayoutView;n=1024 (3490ms)
+    ✓ LayoutView;n=2048 (4718ms)
+    ✓ LayoutView;n=4096 (11865ms)
+    ✓ LayoutView;n=8192 (40723ms)
+    ✓ LayoutView;n=16384 (172837ms)
+    ✓ LayoutView;n=32768 (727642ms)
+    ✓ LayoutView;n=65536 (3027508ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (317ms)
+    ✓ LayoutSQL;n=1024 (835ms)
+    ✓ LayoutSQL;n=2048 (3590ms)
+    ✓ LayoutSQL;n=4096 (13062ms)
+    ✓ LayoutSQL;n=8192 (55103ms)
+    ✓ LayoutSQL;n=16384 (172668ms)
+    ✓ LayoutSQL;n=32768 (608508ms)
+    ✓ LayoutSQL;n=65536 (3526868ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..571abefc485707b637ef837345e7294989858d57
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (89ms)
+    ✓ LayoutView;n=32 (27ms)
+    ✓ LayoutView;n=64 (36ms)
+    ✓ LayoutView;n=128 (205ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (304ms)
+    ✓ LayoutView;n=1024 (941ms)
+    ✓ LayoutView;n=2048 (4173ms)
+    ✓ LayoutView;n=4096 (13779ms)
+    ✓ LayoutView;n=8192 (55269ms)
+    ✓ LayoutView;n=16384 (207089ms)
+    ✓ LayoutView;n=32768 (871646ms)
+    ✓ LayoutView;n=65536 (2870575ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1791ms)
+    ✓ LayoutSQL;n=4096 (5135ms)
+    ✓ LayoutSQL;n=8192 (23440ms)
+    ✓ LayoutSQL;n=16384 (163649ms)
+    ✓ LayoutSQL;n=32768 (663640ms)
+    ✓ LayoutSQL;n=65536 (3758999ms)
+
+
+  26 passing (2h)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a58a56a5cd6690bf3625bf78d0d19f784d610f38
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 387.25
+Mediana        = 431.5
+Variancia      = 14700.93
+Desvio Padrao  = 121.25
+Coef. Variacao = 0.31
+Min            = 200
+Max            = 560
+Esq, Dir.      = 342.6551 , 431.8449
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5faa7dd91c1e0c0452fb1fa3331d3840c3517279
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 425
+1024 471
+1024 308
+1024 503
+1024 418
+1024 200
+1024 206
+1024 486
+1024 495
+1024 238
+1024 207
+1024 343
+1024 560
+1024 226
+1024 310
+1024 438
+1024 549
+1024 462
+1024 461
+1024 439
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..dfaa3b1d4c0c4fd6c1c4f4b62a4442ebcd2b1a5f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 959
+Mediana        = 975.5
+Variancia      = 46965.26
+Desvio Padrao  = 216.71
+Coef. Variacao = 0.23
+Min            = 259
+Max            = 1244
+Esq, Dir.      = 879.2922 , 1038.7078
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..415d442699c8a9cfdd123aaf143038805f15f0ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 965
+1024 1089
+1024 991
+1024 1057
+1024 940
+1024 658
+1024 990
+1024 1244
+1024 1182
+1024 906
+1024 869
+1024 985
+1024 891
+1024 909
+1024 875
+1024 259
+1024 1203
+1024 977
+1024 1216
+1024 974
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5c9c5101b4aeb01c676990bd6fb7ef0206f046d7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 40.1
+Mediana        = 37.5
+Variancia      = 166.52
+Desvio Padrao  = 12.9
+Coef. Variacao = 0.32
+Min            = 19
+Max            = 70
+Esq, Dir.      = 35.3539 , 44.8461
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ef0708598a578be98299bb4b3dbcca17e1951b06
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 41
+128 37
+128 36
+128 38
+128 34
+128 29
+128 33
+128 43
+128 35
+128 37
+128 53
+128 28
+128 70
+128 45
+128 19
+128 40
+128 22
+128 56
+128 41
+128 65
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..e313154213711b87607768bb29bc8ee0b9d10433
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 51.55
+Mediana        = 50
+Variancia      = 466.68
+Desvio Padrao  = 21.6
+Coef. Variacao = 0.42
+Min            = 17
+Max            = 91
+Esq, Dir.      = 43.6045 , 59.4955
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..897abf8765b2d3a2245d4a090468a56fee5c3693
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 65
+128 91
+128 30
+128 31
+128 59
+128 32
+128 39
+128 80
+128 63
+128 82
+128 31
+128 31
+128 45
+128 39
+128 64
+128 17
+128 55
+128 69
+128 77
+128 31
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..304fb36877f86a676b5fb920ed2704aa15c42960
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 16.4
+Mediana        = 17
+Variancia      = 27.52
+Desvio Padrao  = 5.25
+Coef. Variacao = 0.32
+Min            = 8
+Max            = 24
+Esq, Dir.      = 14.4707 , 18.3293
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..59d834a051ccb3fd042c15cae20530fd59a76e44
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 9
+16 18
+16 16
+16 21
+16 17
+16 18
+16 17
+16 17
+16 16
+16 23
+16 18
+16 9
+16 24
+16 9
+16 8
+16 13
+16 10
+16 24
+16 23
+16 18
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..41b46ba8cb2fea6556c5e3662ad899bade803b20
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 45.35
+Mediana        = 48
+Variancia      = 287.29
+Desvio Padrao  = 16.95
+Coef. Variacao = 0.37
+Min            = 23
+Max            = 79
+Esq, Dir.      = 39.1159 , 51.5841
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..826da35d0c02c8a40044a60c79e062f4273b54de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 56
+16 72
+16 34
+16 27
+16 48
+16 55
+16 23
+16 70
+16 48
+16 79
+16 26
+16 27
+16 34
+16 31
+16 50
+16 40
+16 50
+16 57
+16 56
+16 24
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c6b75d7c8e906de1c4165a0eb207b77d60e1d3f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11601.9
+Mediana        = 11676
+Variancia      = 878795.46
+Desvio Padrao  = 937.44
+Coef. Variacao = 0.08
+Min            = 10100
+Max            = 13358
+Esq, Dir.      = 11257.1088 , 11946.6912
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ff51594af67af6a79069ef8aec65fab80291ebda
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 10938
+16384 12280
+16384 11534
+16384 11882
+16384 11870
+16384 10100
+16384 12405
+16384 12658
+16384 11271
+16384 11064
+16384 12503
+16384 11958
+16384 13358
+16384 12902
+16384 10100
+16384 10855
+16384 10891
+16384 11512
+16384 11818
+16384 10139
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..2b018fb31b2168cf295fecddb2f6c0a786525cb7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 11342.5
+Mediana        = 11120.5
+Variancia      = 2794382.89
+Desvio Padrao  = 1671.64
+Coef. Variacao = 0.15
+Min            = 9090
+Max            = 15085
+Esq, Dir.      = 10727.6698 , 11957.3302
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..6ed43ce51d1a1ad58ad8cd9d7c6825c8876b5839
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 9090
+16384 13706
+16384 10097
+16384 11214
+16384 10429
+16384 9924
+16384 10203
+16384 11189
+16384 11179
+16384 11438
+16384 11062
+16384 10866
+16384 14772
+16384 12480
+16384 11322
+16384 13033
+16384 10400
+16384 9574
+16384 15085
+16384 9787
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0b8cbc0b58cf7c758592b7ecf3172f78f6ee6b30
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1319.2
+Mediana        = 1208
+Variancia      = 121097.64
+Desvio Padrao  = 347.99
+Coef. Variacao = 0.26
+Min            = 963
+Max            = 2147
+Esq, Dir.      = 1191.2088 , 1447.1912
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..513a8b5414022fc378cf6f912968051d91dcb060
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1547
+2048 1172
+2048 1054
+2048 1222
+2048 1087
+2048 1265
+2048 963
+2048 1764
+2048 1079
+2048 1452
+2048 984
+2048 1194
+2048 1995
+2048 983
+2048 1124
+2048 1038
+2048 2147
+2048 1250
+2048 1750
+2048 1314
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..4452d8e64872fa9f6a48871d26afa2bc0e78ce5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1410.3
+Mediana        = 1439
+Variancia      = 241453.8
+Desvio Padrao  = 491.38
+Coef. Variacao = 0.35
+Min            = 192
+Max            = 2046
+Esq, Dir.      = 1229.5704 , 1591.0296
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..7ca1010d73cc5f4e07a3672abbc9b8e2c60e5273
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 505
+2048 1380
+2048 1724
+2048 1336
+2048 1473
+2048 1269
+2048 1434
+2048 1843
+2048 1312
+2048 1490
+2048 1444
+2048 1080
+2048 1762
+2048 2046
+2048 1368
+2048 192
+2048 1869
+2048 731
+2048 2019
+2048 1929
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d04752ea8f7195e05e7b01253806a68374027832
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 57.75
+Mediana        = 55.5
+Variancia      = 397.88
+Desvio Padrao  = 19.95
+Coef. Variacao = 0.35
+Min            = 25
+Max            = 95
+Esq, Dir.      = 50.4135 , 65.0865
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e342d5fcefae3315745c1cd99a0125d0af741a47
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 53
+256 62
+256 50
+256 56
+256 55
+256 27
+256 50
+256 72
+256 50
+256 32
+256 76
+256 36
+256 95
+256 87
+256 25
+256 60
+256 47
+256 89
+256 58
+256 75
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..3475b56339da265299aec5447420d8a4ed00e6f2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 135.2
+Mediana        = 138
+Variancia      = 4594.27
+Desvio Padrao  = 67.78
+Coef. Variacao = 0.5
+Min            = 41
+Max            = 294
+Esq, Dir.      = 110.2701 , 160.1299
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ec53cbce2198d9796bf6fd2848fb9afe4fc84fe6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 134
+256 192
+256 70
+256 72
+256 243
+256 72
+256 141
+256 174
+256 135
+256 294
+256 70
+256 142
+256 149
+256 89
+256 75
+256 41
+256 232
+256 146
+256 162
+256 71
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c3a758d539eb2920781c3b610611b733d15c23f7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11.05
+Mediana        = 9
+Variancia      = 49.94
+Desvio Padrao  = 7.07
+Coef. Variacao = 0.64
+Min            = 4
+Max            = 34
+Esq, Dir.      = 8.4507 , 13.6493
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..1c0573c8946e9e48c63f4371f8403a87ac023de6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 4
+32 13
+32 8
+32 9
+32 9
+32 9
+32 8
+32 24
+32 8
+32 14
+32 9
+32 5
+32 13
+32 14
+32 4
+32 9
+32 5
+32 34
+32 13
+32 9
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..4e7f3c2aa1845fca9cec6fbe22db40e93beddb2d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 17.05
+Mediana        = 14
+Variancia      = 84.79
+Desvio Padrao  = 9.21
+Coef. Variacao = 0.54
+Min            = 7
+Max            = 44
+Esq, Dir.      = 13.6633 , 20.4367
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..85baf14232c90ad7b6996c20e7647e7d36c3e580
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 27
+32 24
+32 9
+32 9
+32 17
+32 9
+32 9
+32 24
+32 14
+32 26
+32 10
+32 44
+32 13
+32 12
+32 18
+32 7
+32 14
+32 22
+32 24
+32 9
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ed853bc7a29a03c6d2bb5fce9e9f487f153ddb2d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 55522.9
+Mediana        = 54017.5
+Variancia      = 46398378.73
+Desvio Padrao  = 6811.64
+Coef. Variacao = 0.12
+Min            = 44493
+Max            = 68604
+Esq, Dir.      = 53017.5774 , 58028.2226
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c77ec7a1a2b0051fb11cfc064e7ab0837352e057
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 47932
+32768 60590
+32768 49840
+32768 62001
+32768 60847
+32768 47617
+32768 51926
+32768 55998
+32768 53012
+32768 53014
+32768 67528
+32768 62530
+32768 68604
+32768 47664
+32768 44493
+32768 50964
+32768 60565
+32768 57697
+32768 55021
+32768 52615
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..53ab0a53dee0aa56e13d31ba86c3a72cf8f5f0de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 44277.7
+Mediana        = 42604
+Variancia      = 62942887.91
+Desvio Padrao  = 7933.66
+Coef. Variacao = 0.18
+Min            = 34498
+Max            = 64922
+Esq, Dir.      = 41359.698 , 47195.702
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..525e9ab8026cc9efa6e5b7f841fd5824f77b12e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 35944
+32768 52406
+32768 38514
+32768 37094
+32768 40657
+32768 42648
+32768 42117
+32768 43648
+32768 47970
+32768 41679
+32768 37414
+32768 43299
+32768 64922
+32768 48231
+32768 42560
+32768 48723
+32768 44110
+32768 37935
+32768 61185
+32768 34498
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e6e7d22e256da18f664481e1081a6043684a6a64
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 6909.1
+Mediana        = 6719.5
+Variancia      = 1449046.31
+Desvio Padrao  = 1203.76
+Coef. Variacao = 0.17
+Min            = 4792
+Max            = 9086
+Esq, Dir.      = 6466.3553 , 7351.8447
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d133a50aa4215581fae2cae2d22c8faa2338eaf3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 6799
+4096 8062
+4096 6166
+4096 6693
+4096 6311
+4096 6746
+4096 4930
+4096 8137
+4096 6183
+4096 8289
+4096 4792
+4096 6189
+4096 9086
+4096 7313
+4096 6299
+4096 6872
+4096 8777
+4096 6496
+4096 8323
+4096 5719
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5e960ce8e2d2ec6f90acb18e17029b5d13da46ee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 969.75
+Mediana        = 995
+Variancia      = 30179.57
+Desvio Padrao  = 173.72
+Coef. Variacao = 0.18
+Min            = 668
+Max            = 1280
+Esq, Dir.      = 905.8547 , 1033.6453
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d92cb56e361a7b30de39b4ce02ba844bd91bd213
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 668
+4096 1055
+4096 825
+4096 774
+4096 857
+4096 844
+4096 1009
+4096 1026
+4096 840
+4096 1280
+4096 888
+4096 1102
+4096 1078
+4096 982
+4096 716
+4096 858
+4096 1216
+4096 1151
+4096 1008
+4096 1218
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7b1e1619bdd58f21ad78cfb7dce61f6612a80182
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 123.25
+Mediana        = 125.5
+Variancia      = 1881.57
+Desvio Padrao  = 43.38
+Coef. Variacao = 0.35
+Min            = 54
+Max            = 188
+Esq, Dir.      = 107.2959 , 139.2041
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..113e69e4ea4b75c6ffaaeaab5d12ff3fdeb00530
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 174
+512 156
+512 107
+512 113
+512 111
+512 54
+512 83
+512 150
+512 119
+512 67
+512 69
+512 80
+512 188
+512 154
+512 58
+512 182
+512 132
+512 169
+512 144
+512 155
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..97660f969b1ec3da06610b18943d5bec208d194d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 298.35
+Mediana        = 310.5
+Variancia      = 12632.24
+Desvio Padrao  = 112.39
+Coef. Variacao = 0.38
+Min            = 58
+Max            = 476
+Esq, Dir.      = 257.0117 , 339.6883
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c2480cc09ffe6bc41106e9e91a8bb7a78e8c8505
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 310
+512 352
+512 181
+512 162
+512 308
+512 157
+512 304
+512 476
+512 345
+512 319
+512 267
+512 311
+512 457
+512 377
+512 151
+512 58
+512 466
+512 341
+512 376
+512 249
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6eeb720ed99c24a0f51b9b1c3663325716d69d4a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 20.1
+Mediana        = 23
+Variancia      = 31.36
+Desvio Padrao  = 5.6
+Coef. Variacao = 0.28
+Min            = 9
+Max            = 26
+Esq, Dir.      = 18.0404 , 22.1596
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..beb83439744feb01ce2f036430b67ba787c6b3f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 24
+64 19
+64 23
+64 24
+64 22
+64 24
+64 23
+64 17
+64 17
+64 26
+64 23
+64 10
+64 24
+64 11
+64 9
+64 22
+64 11
+64 25
+64 25
+64 23
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1cae1ef6c1de21eeacb0b95b5a9dc20efd475902
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 29.85
+Mediana        = 31.5
+Variancia      = 166.24
+Desvio Padrao  = 12.89
+Coef. Variacao = 0.43
+Min            = 15
+Max            = 57
+Esq, Dir.      = 25.1078 , 34.5922
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1fe8c7934eb13aaf2c5924081c12947f9277e36d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 36
+64 47
+64 17
+64 57
+64 32
+64 17
+64 17
+64 40
+64 32
+64 50
+64 17
+64 17
+64 22
+64 20
+64 36
+64 15
+64 36
+64 41
+64 31
+64 17
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e59be4582a0a39e9610e8c86d9d0b5f369317994
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 199240.6
+Mediana        = 206318.5
+Variancia      = 381528437.52
+Desvio Padrao  = 19532.75
+Coef. Variacao = 0.1
+Min            = 157274
+Max            = 230386
+Esq, Dir.      = 192056.4446 , 206424.7554
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9828d268d383f9d2cafcf48f64e1827d5d3c0db8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 207371
+65536 183504
+65536 213711
+65536 223920
+65536 212819
+65536 230386
+65536 209905
+65536 206217
+65536 218816
+65536 181902
+65536 192927
+65536 215524
+65536 179267
+65536 180416
+65536 167840
+65536 157274
+65536 210702
+65536 206420
+65536 197871
+65536 188020
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..e107fdfc2c526f5fcacf88c44574f11aec91627c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 182330
+Mediana        = 174169
+Variancia      = 677653386.63
+Desvio Padrao  = 26031.78
+Coef. Variacao = 0.14
+Min            = 150502
+Max            = 257643
+Esq, Dir.      = 172755.5008 , 191904.4992
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..85b4b51da144dec50b152d3bcd9c4e17ba0e6e33
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 156157
+65536 206910
+65536 165603
+65536 164721
+65536 174381
+65536 176155
+65536 168003
+65536 170403
+65536 173957
+65536 207042
+65536 150502
+65536 189497
+65536 257643
+65536 198337
+65536 172509
+65536 199144
+65536 194304
+65536 157059
+65536 211401
+65536 152872
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8eb3915e79d1520a663791207b7e2cf7b2600db2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 3548.35
+Mediana        = 3559.5
+Variancia      = 399027.29
+Desvio Padrao  = 631.69
+Coef. Variacao = 0.18
+Min            = 2323
+Max            = 4611
+Esq, Dir.      = 3316.0156 , 3780.6844
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3569f95793dcd56cf7c5daa28eb3967921e7ea5f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 4056
+8192 3136
+8192 3811
+8192 3863
+8192 3832
+8192 3397
+8192 2323
+8192 4037
+8192 3486
+8192 4196
+8192 3483
+8192 2761
+8192 4611
+8192 4039
+8192 3001
+8192 3222
+8192 4566
+8192 2649
+8192 3633
+8192 2865
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..2a1835e841a0e0f5d7a560e790a0de4fd0035e94
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3084.85
+Mediana        = 2942.5
+Variancia      = 303692.66
+Desvio Padrao  = 551.08
+Coef. Variacao = 0.18
+Min            = 2366
+Max            = 4152
+Esq, Dir.      = 2882.1614 , 3287.5386
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5188fe8978b888b6a48f52a8dc98a93c2a793bd9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 2455
+8192 3400
+8192 3897
+8192 3145
+8192 2741
+8192 2366
+8192 2794
+8192 2689
+8192 2529
+8192 3033
+8192 2407
+8192 2766
+8192 3843
+8192 3266
+8192 2686
+8192 3641
+8192 4152
+8192 2852
+8192 3187
+8192 3848
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..dcf301fe41a8896635f56b294ef8065d76b78b24
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (70ms)
+    ✓ LayoutView;n=512 (267ms)
+    ✓ LayoutView;n=1024 (869ms)
+    ✓ LayoutView;n=2048 (1444ms)
+    ✓ LayoutView;n=4096 (888ms)
+    ✓ LayoutView;n=8192 (2407ms)
+    ✓ LayoutView;n=16384 (11062ms)
+    ✓ LayoutView;n=32768 (37414ms)
+    ✓ LayoutView;n=65536 (150502ms)
+    ✓ LayoutSQL;n=16 (18ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (23ms)
+    ✓ LayoutSQL;n=128 (53ms)
+    ✓ LayoutSQL;n=256 (76ms)
+    ✓ LayoutSQL;n=512 (69ms)
+    ✓ LayoutSQL;n=1024 (207ms)
+    ✓ LayoutSQL;n=2048 (984ms)
+    ✓ LayoutSQL;n=4096 (4792ms)
+    ✓ LayoutSQL;n=8192 (3483ms)
+    ✓ LayoutSQL;n=16384 (12503ms)
+    ✓ LayoutSQL;n=32768 (67528ms)
+    ✓ LayoutSQL;n=65536 (192927ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..c5544c161fbeafe4c52dd8888c34ad4ff6e7b5e2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (79ms)
+    ✓ LayoutView;n=32 (26ms)
+    ✓ LayoutView;n=64 (50ms)
+    ✓ LayoutView;n=128 (82ms)
+    ✓ LayoutView;n=256 (294ms)
+    ✓ LayoutView;n=512 (319ms)
+    ✓ LayoutView;n=1024 (906ms)
+    ✓ LayoutView;n=2048 (1490ms)
+    ✓ LayoutView;n=4096 (1280ms)
+    ✓ LayoutView;n=8192 (3033ms)
+    ✓ LayoutView;n=16384 (11438ms)
+    ✓ LayoutView;n=32768 (41679ms)
+    ✓ LayoutView;n=65536 (207042ms)
+    ✓ LayoutSQL;n=16 (23ms)
+    ✓ LayoutSQL;n=32 (14ms)
+    ✓ LayoutSQL;n=64 (26ms)
+    ✓ LayoutSQL;n=128 (37ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (67ms)
+    ✓ LayoutSQL;n=1024 (238ms)
+    ✓ LayoutSQL;n=2048 (1452ms)
+    ✓ LayoutSQL;n=4096 (8289ms)
+    ✓ LayoutSQL;n=8192 (4196ms)
+    ✓ LayoutSQL;n=16384 (11064ms)
+    ✓ LayoutSQL;n=32768 (53014ms)
+    ✓ LayoutSQL;n=65536 (181902ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..21f86184aae0c3747053d0381f482afc4752def6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (24ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (71ms)
+    ✓ LayoutView;n=512 (249ms)
+    ✓ LayoutView;n=1024 (974ms)
+    ✓ LayoutView;n=2048 (1929ms)
+    ✓ LayoutView;n=4096 (1218ms)
+    ✓ LayoutView;n=8192 (3848ms)
+    ✓ LayoutView;n=16384 (9787ms)
+    ✓ LayoutView;n=32768 (34498ms)
+    ✓ LayoutView;n=65536 (152872ms)
+    ✓ LayoutSQL;n=16 (18ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (23ms)
+    ✓ LayoutSQL;n=128 (65ms)
+    ✓ LayoutSQL;n=256 (75ms)
+    ✓ LayoutSQL;n=512 (155ms)
+    ✓ LayoutSQL;n=1024 (439ms)
+    ✓ LayoutSQL;n=2048 (1314ms)
+    ✓ LayoutSQL;n=4096 (5719ms)
+    ✓ LayoutSQL;n=8192 (2865ms)
+    ✓ LayoutSQL;n=16384 (10139ms)
+    ✓ LayoutSQL;n=32768 (52615ms)
+    ✓ LayoutSQL;n=65536 (188020ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..eb2d850c9b5d405484381e10898184349c67ecce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (70ms)
+    ✓ LayoutView;n=32 (24ms)
+    ✓ LayoutView;n=64 (40ms)
+    ✓ LayoutView;n=128 (80ms)
+    ✓ LayoutView;n=256 (174ms)
+    ✓ LayoutView;n=512 (476ms)
+    ✓ LayoutView;n=1024 (1244ms)
+    ✓ LayoutView;n=2048 (1843ms)
+    ✓ LayoutView;n=4096 (1026ms)
+    ✓ LayoutView;n=8192 (2689ms)
+    ✓ LayoutView;n=16384 (11189ms)
+    ✓ LayoutView;n=32768 (43648ms)
+    ✓ LayoutView;n=65536 (170403ms)
+    ✓ LayoutSQL;n=16 (17ms)
+    ✓ LayoutSQL;n=32 (24ms)
+    ✓ LayoutSQL;n=64 (17ms)
+    ✓ LayoutSQL;n=128 (43ms)
+    ✓ LayoutSQL;n=256 (72ms)
+    ✓ LayoutSQL;n=512 (150ms)
+    ✓ LayoutSQL;n=1024 (486ms)
+    ✓ LayoutSQL;n=2048 (1764ms)
+    ✓ LayoutSQL;n=4096 (8137ms)
+    ✓ LayoutSQL;n=8192 (4037ms)
+    ✓ LayoutSQL;n=16384 (12658ms)
+    ✓ LayoutSQL;n=32768 (55998ms)
+    ✓ LayoutSQL;n=65536 (206217ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..7379a355705a45719bbac6fe460187e4248b05ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (40ms)
+    ✓ LayoutView;n=32 (7ms)
+    ✓ LayoutView;n=64 (15ms)
+    ✓ LayoutView;n=128 (17ms)
+    ✓ LayoutView;n=256 (41ms)
+    ✓ LayoutView;n=512 (58ms)
+    ✓ LayoutView;n=1024 (259ms)
+    ✓ LayoutView;n=2048 (192ms)
+    ✓ LayoutView;n=4096 (858ms)
+    ✓ LayoutView;n=8192 (3641ms)
+    ✓ LayoutView;n=16384 (13033ms)
+    ✓ LayoutView;n=32768 (48723ms)
+    ✓ LayoutView;n=65536 (199144ms)
+    ✓ LayoutSQL;n=16 (13ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (22ms)
+    ✓ LayoutSQL;n=128 (40ms)
+    ✓ LayoutSQL;n=256 (60ms)
+    ✓ LayoutSQL;n=512 (182ms)
+    ✓ LayoutSQL;n=1024 (438ms)
+    ✓ LayoutSQL;n=2048 (1038ms)
+    ✓ LayoutSQL;n=4096 (6872ms)
+    ✓ LayoutSQL;n=8192 (3222ms)
+    ✓ LayoutSQL;n=16384 (10855ms)
+    ✓ LayoutSQL;n=32768 (50964ms)
+    ✓ LayoutSQL;n=65536 (157274ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..e9bbf3fb16eba6ab81aaa078a623a3fa1857e7ec
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (57ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (72ms)
+    ✓ LayoutView;n=512 (162ms)
+    ✓ LayoutView;n=1024 (1057ms)
+    ✓ LayoutView;n=2048 (1336ms)
+    ✓ LayoutView;n=4096 (774ms)
+    ✓ LayoutView;n=8192 (3145ms)
+    ✓ LayoutView;n=16384 (11214ms)
+    ✓ LayoutView;n=32768 (37094ms)
+    ✓ LayoutView;n=65536 (164721ms)
+    ✓ LayoutSQL;n=16 (21ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (24ms)
+    ✓ LayoutSQL;n=128 (38ms)
+    ✓ LayoutSQL;n=256 (56ms)
+    ✓ LayoutSQL;n=512 (113ms)
+    ✓ LayoutSQL;n=1024 (503ms)
+    ✓ LayoutSQL;n=2048 (1222ms)
+    ✓ LayoutSQL;n=4096 (6693ms)
+    ✓ LayoutSQL;n=8192 (3863ms)
+    ✓ LayoutSQL;n=16384 (11882ms)
+    ✓ LayoutSQL;n=32768 (62001ms)
+    ✓ LayoutSQL;n=65536 (223920ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..954b6bbe04d42bc3b9cb1fbcd6c5a88e495389a7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (141ms)
+    ✓ LayoutView;n=512 (304ms)
+    ✓ LayoutView;n=1024 (990ms)
+    ✓ LayoutView;n=2048 (1434ms)
+    ✓ LayoutView;n=4096 (1009ms)
+    ✓ LayoutView;n=8192 (2794ms)
+    ✓ LayoutView;n=16384 (10203ms)
+    ✓ LayoutView;n=32768 (42117ms)
+    ✓ LayoutView;n=65536 (168003ms)
+    ✓ LayoutSQL;n=16 (17ms)
+    ✓ LayoutSQL;n=32 (8ms)
+    ✓ LayoutSQL;n=64 (23ms)
+    ✓ LayoutSQL;n=128 (33ms)
+    ✓ LayoutSQL;n=256 (50ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (206ms)
+    ✓ LayoutSQL;n=2048 (963ms)
+    ✓ LayoutSQL;n=4096 (4930ms)
+    ✓ LayoutSQL;n=8192 (2323ms)
+    ✓ LayoutSQL;n=16384 (12405ms)
+    ✓ LayoutSQL;n=32768 (51926ms)
+    ✓ LayoutSQL;n=65536 (209905ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..c80683b3167c740db385be7fd5523f101391fe4f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (56ms)
+    ✓ LayoutView;n=32 (24ms)
+    ✓ LayoutView;n=64 (31ms)
+    ✓ LayoutView;n=128 (77ms)
+    ✓ LayoutView;n=256 (162ms)
+    ✓ LayoutView;n=512 (376ms)
+    ✓ LayoutView;n=1024 (1216ms)
+    ✓ LayoutView;n=2048 (2019ms)
+    ✓ LayoutView;n=4096 (1008ms)
+    ✓ LayoutView;n=8192 (3187ms)
+    ✓ LayoutView;n=16384 (15085ms)
+    ✓ LayoutView;n=32768 (61185ms)
+    ✓ LayoutView;n=65536 (211401ms)
+    ✓ LayoutSQL;n=16 (23ms)
+    ✓ LayoutSQL;n=32 (13ms)
+    ✓ LayoutSQL;n=64 (25ms)
+    ✓ LayoutSQL;n=128 (41ms)
+    ✓ LayoutSQL;n=256 (58ms)
+    ✓ LayoutSQL;n=512 (144ms)
+    ✓ LayoutSQL;n=1024 (461ms)
+    ✓ LayoutSQL;n=2048 (1750ms)
+    ✓ LayoutSQL;n=4096 (8323ms)
+    ✓ LayoutSQL;n=8192 (3633ms)
+    ✓ LayoutSQL;n=16384 (11818ms)
+    ✓ LayoutSQL;n=32768 (55021ms)
+    ✓ LayoutSQL;n=65536 (197871ms)
+
+
+  26 passing (10m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..08b06287acb94d817fc20d01599d4e781e6b6a72
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (44ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (142ms)
+    ✓ LayoutView;n=512 (311ms)
+    ✓ LayoutView;n=1024 (985ms)
+    ✓ LayoutView;n=2048 (1080ms)
+    ✓ LayoutView;n=4096 (1102ms)
+    ✓ LayoutView;n=8192 (2766ms)
+    ✓ LayoutView;n=16384 (10866ms)
+    ✓ LayoutView;n=32768 (43299ms)
+    ✓ LayoutView;n=65536 (189497ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (28ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (80ms)
+    ✓ LayoutSQL;n=1024 (343ms)
+    ✓ LayoutSQL;n=2048 (1194ms)
+    ✓ LayoutSQL;n=4096 (6189ms)
+    ✓ LayoutSQL;n=8192 (2761ms)
+    ✓ LayoutSQL;n=16384 (11958ms)
+    ✓ LayoutSQL;n=32768 (62530ms)
+    ✓ LayoutSQL;n=65536 (215524ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..6725c1ac185900dbb2cd6bdaff43facd2ee7b78f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (57ms)
+    ✓ LayoutView;n=32 (22ms)
+    ✓ LayoutView;n=64 (41ms)
+    ✓ LayoutView;n=128 (69ms)
+    ✓ LayoutView;n=256 (146ms)
+    ✓ LayoutView;n=512 (341ms)
+    ✓ LayoutView;n=1024 (977ms)
+    ✓ LayoutView;n=2048 (731ms)
+    ✓ LayoutView;n=4096 (1151ms)
+    ✓ LayoutView;n=8192 (2852ms)
+    ✓ LayoutView;n=16384 (9574ms)
+    ✓ LayoutView;n=32768 (37935ms)
+    ✓ LayoutView;n=65536 (157059ms)
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (34ms)
+    ✓ LayoutSQL;n=64 (25ms)
+    ✓ LayoutSQL;n=128 (56ms)
+    ✓ LayoutSQL;n=256 (89ms)
+    ✓ LayoutSQL;n=512 (169ms)
+    ✓ LayoutSQL;n=1024 (462ms)
+    ✓ LayoutSQL;n=2048 (1250ms)
+    ✓ LayoutSQL;n=4096 (6496ms)
+    ✓ LayoutSQL;n=8192 (2649ms)
+    ✓ LayoutSQL;n=16384 (11512ms)
+    ✓ LayoutSQL;n=32768 (57697ms)
+    ✓ LayoutSQL;n=65536 (206420ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..b953a3a8e81156846a241d75216d83cb132dea74
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (56ms)
+    ✓ LayoutView;n=32 (27ms)
+    ✓ LayoutView;n=64 (36ms)
+    ✓ LayoutView;n=128 (65ms)
+    ✓ LayoutView;n=256 (134ms)
+    ✓ LayoutView;n=512 (310ms)
+    ✓ LayoutView;n=1024 (965ms)
+    ✓ LayoutView;n=2048 (505ms)
+    ✓ LayoutView;n=4096 (668ms)
+    ✓ LayoutView;n=8192 (2455ms)
+    ✓ LayoutView;n=16384 (9090ms)
+    ✓ LayoutView;n=32768 (35944ms)
+    ✓ LayoutView;n=65536 (156157ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (24ms)
+    ✓ LayoutSQL;n=128 (41ms)
+    ✓ LayoutSQL;n=256 (53ms)
+    ✓ LayoutSQL;n=512 (174ms)
+    ✓ LayoutSQL;n=1024 (425ms)
+    ✓ LayoutSQL;n=2048 (1547ms)
+    ✓ LayoutSQL;n=4096 (6799ms)
+    ✓ LayoutSQL;n=8192 (4056ms)
+    ✓ LayoutSQL;n=16384 (10938ms)
+    ✓ LayoutSQL;n=32768 (47932ms)
+    ✓ LayoutSQL;n=65536 (207371ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..bc6103a42f93f1d56a0b9f3514843f566c3797db
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (34ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (30ms)
+    ✓ LayoutView;n=256 (70ms)
+    ✓ LayoutView;n=512 (181ms)
+    ✓ LayoutView;n=1024 (991ms)
+    ✓ LayoutView;n=2048 (1724ms)
+    ✓ LayoutView;n=4096 (825ms)
+    ✓ LayoutView;n=8192 (3897ms)
+    ✓ LayoutView;n=16384 (10097ms)
+    ✓ LayoutView;n=32768 (38514ms)
+    ✓ LayoutView;n=65536 (165603ms)
+    ✓ LayoutSQL;n=16 (16ms)
+    ✓ LayoutSQL;n=32 (8ms)
+    ✓ LayoutSQL;n=64 (23ms)
+    ✓ LayoutSQL;n=128 (36ms)
+    ✓ LayoutSQL;n=256 (50ms)
+    ✓ LayoutSQL;n=512 (107ms)
+    ✓ LayoutSQL;n=1024 (308ms)
+    ✓ LayoutSQL;n=2048 (1054ms)
+    ✓ LayoutSQL;n=4096 (6166ms)
+    ✓ LayoutSQL;n=8192 (3811ms)
+    ✓ LayoutSQL;n=16384 (11534ms)
+    ✓ LayoutSQL;n=32768 (49840ms)
+    ✓ LayoutSQL;n=65536 (213711ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..56601f0f7f43022f448155af30026aed934ce414
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (72ms)
+    ✓ LayoutView;n=32 (24ms)
+    ✓ LayoutView;n=64 (47ms)
+    ✓ LayoutView;n=128 (91ms)
+    ✓ LayoutView;n=256 (192ms)
+    ✓ LayoutView;n=512 (352ms)
+    ✓ LayoutView;n=1024 (1089ms)
+    ✓ LayoutView;n=2048 (1380ms)
+    ✓ LayoutView;n=4096 (1055ms)
+    ✓ LayoutView;n=8192 (3400ms)
+    ✓ LayoutView;n=16384 (13706ms)
+    ✓ LayoutView;n=32768 (52406ms)
+    ✓ LayoutView;n=65536 (206910ms)
+    ✓ LayoutSQL;n=16 (18ms)
+    ✓ LayoutSQL;n=32 (13ms)
+    ✓ LayoutSQL;n=64 (19ms)
+    ✓ LayoutSQL;n=128 (37ms)
+    ✓ LayoutSQL;n=256 (62ms)
+    ✓ LayoutSQL;n=512 (156ms)
+    ✓ LayoutSQL;n=1024 (471ms)
+    ✓ LayoutSQL;n=2048 (1172ms)
+    ✓ LayoutSQL;n=4096 (8062ms)
+    ✓ LayoutSQL;n=8192 (3136ms)
+    ✓ LayoutSQL;n=16384 (12280ms)
+    ✓ LayoutSQL;n=32768 (60590ms)
+    ✓ LayoutSQL;n=65536 (183504ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..0908f157bbd846e85d5573731cd136a5ae9b27a6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (50ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (36ms)
+    ✓ LayoutView;n=128 (55ms)
+    ✓ LayoutView;n=256 (232ms)
+    ✓ LayoutView;n=512 (466ms)
+    ✓ LayoutView;n=1024 (1203ms)
+    ✓ LayoutView;n=2048 (1869ms)
+    ✓ LayoutView;n=4096 (1216ms)
+    ✓ LayoutView;n=8192 (4152ms)
+    ✓ LayoutView;n=16384 (10400ms)
+    ✓ LayoutView;n=32768 (44110ms)
+    ✓ LayoutView;n=65536 (194304ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (47ms)
+    ✓ LayoutSQL;n=512 (132ms)
+    ✓ LayoutSQL;n=1024 (549ms)
+    ✓ LayoutSQL;n=2048 (2147ms)
+    ✓ LayoutSQL;n=4096 (8777ms)
+    ✓ LayoutSQL;n=8192 (4566ms)
+    ✓ LayoutSQL;n=16384 (10891ms)
+    ✓ LayoutSQL;n=32768 (60565ms)
+    ✓ LayoutSQL;n=65536 (210702ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..cb8c189227e5ad4161c5f105dd1084bc4f0e80a1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (50ms)
+    ✓ LayoutView;n=32 (18ms)
+    ✓ LayoutView;n=64 (36ms)
+    ✓ LayoutView;n=128 (64ms)
+    ✓ LayoutView;n=256 (75ms)
+    ✓ LayoutView;n=512 (151ms)
+    ✓ LayoutView;n=1024 (875ms)
+    ✓ LayoutView;n=2048 (1368ms)
+    ✓ LayoutView;n=4096 (716ms)
+    ✓ LayoutView;n=8192 (2686ms)
+    ✓ LayoutView;n=16384 (11322ms)
+    ✓ LayoutView;n=32768 (42560ms)
+    ✓ LayoutView;n=65536 (172509ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (25ms)
+    ✓ LayoutSQL;n=512 (58ms)
+    ✓ LayoutSQL;n=1024 (310ms)
+    ✓ LayoutSQL;n=2048 (1124ms)
+    ✓ LayoutSQL;n=4096 (6299ms)
+    ✓ LayoutSQL;n=8192 (3001ms)
+    ✓ LayoutSQL;n=16384 (10100ms)
+    ✓ LayoutSQL;n=32768 (44493ms)
+    ✓ LayoutSQL;n=65536 (167840ms)
+
+
+  26 passing (8m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..364800a872809ec6d9bdfb1741957df91575c4ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (48ms)
+    ✓ LayoutView;n=32 (17ms)
+    ✓ LayoutView;n=64 (32ms)
+    ✓ LayoutView;n=128 (59ms)
+    ✓ LayoutView;n=256 (243ms)
+    ✓ LayoutView;n=512 (308ms)
+    ✓ LayoutView;n=1024 (940ms)
+    ✓ LayoutView;n=2048 (1473ms)
+    ✓ LayoutView;n=4096 (857ms)
+    ✓ LayoutView;n=8192 (2741ms)
+    ✓ LayoutView;n=16384 (10429ms)
+    ✓ LayoutView;n=32768 (40657ms)
+    ✓ LayoutView;n=65536 (174381ms)
+    ✓ LayoutSQL;n=16 (17ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (22ms)
+    ✓ LayoutSQL;n=128 (34ms)
+    ✓ LayoutSQL;n=256 (55ms)
+    ✓ LayoutSQL;n=512 (111ms)
+    ✓ LayoutSQL;n=1024 (418ms)
+    ✓ LayoutSQL;n=2048 (1087ms)
+    ✓ LayoutSQL;n=4096 (6311ms)
+    ✓ LayoutSQL;n=8192 (3832ms)
+    ✓ LayoutSQL;n=16384 (11870ms)
+    ✓ LayoutSQL;n=32768 (60847ms)
+    ✓ LayoutSQL;n=65536 (212819ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..bec448db10c75238a29d8ccb2fe1a3f944195fde
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (55ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (72ms)
+    ✓ LayoutView;n=512 (157ms)
+    ✓ LayoutView;n=1024 (658ms)
+    ✓ LayoutView;n=2048 (1269ms)
+    ✓ LayoutView;n=4096 (844ms)
+    ✓ LayoutView;n=8192 (2366ms)
+    ✓ LayoutView;n=16384 (9924ms)
+    ✓ LayoutView;n=32768 (42648ms)
+    ✓ LayoutView;n=65536 (176155ms)
+    ✓ LayoutSQL;n=16 (18ms)
+    ✓ LayoutSQL;n=32 (9ms)
+    ✓ LayoutSQL;n=64 (24ms)
+    ✓ LayoutSQL;n=128 (29ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (54ms)
+    ✓ LayoutSQL;n=1024 (200ms)
+    ✓ LayoutSQL;n=2048 (1265ms)
+    ✓ LayoutSQL;n=4096 (6746ms)
+    ✓ LayoutSQL;n=8192 (3397ms)
+    ✓ LayoutSQL;n=16384 (10100ms)
+    ✓ LayoutSQL;n=32768 (47617ms)
+    ✓ LayoutSQL;n=65536 (230386ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..8e9993ba5173d930da08bb8a267a697268149aa5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (34ms)
+    ✓ LayoutView;n=32 (13ms)
+    ✓ LayoutView;n=64 (22ms)
+    ✓ LayoutView;n=128 (45ms)
+    ✓ LayoutView;n=256 (149ms)
+    ✓ LayoutView;n=512 (457ms)
+    ✓ LayoutView;n=1024 (891ms)
+    ✓ LayoutView;n=2048 (1762ms)
+    ✓ LayoutView;n=4096 (1078ms)
+    ✓ LayoutView;n=8192 (3843ms)
+    ✓ LayoutView;n=16384 (14772ms)
+    ✓ LayoutView;n=32768 (64922ms)
+    ✓ LayoutView;n=65536 (257643ms)
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (13ms)
+    ✓ LayoutSQL;n=64 (24ms)
+    ✓ LayoutSQL;n=128 (70ms)
+    ✓ LayoutSQL;n=256 (95ms)
+    ✓ LayoutSQL;n=512 (188ms)
+    ✓ LayoutSQL;n=1024 (560ms)
+    ✓ LayoutSQL;n=2048 (1995ms)
+    ✓ LayoutSQL;n=4096 (9086ms)
+    ✓ LayoutSQL;n=8192 (4611ms)
+    ✓ LayoutSQL;n=16384 (13358ms)
+    ✓ LayoutSQL;n=32768 (68604ms)
+    ✓ LayoutSQL;n=65536 (179267ms)
+
+
+  26 passing (10m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..aa5651970712db57aff3c0c80efcb09b98de7a01
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (48ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (32ms)
+    ✓ LayoutView;n=128 (63ms)
+    ✓ LayoutView;n=256 (135ms)
+    ✓ LayoutView;n=512 (345ms)
+    ✓ LayoutView;n=1024 (1182ms)
+    ✓ LayoutView;n=2048 (1312ms)
+    ✓ LayoutView;n=4096 (840ms)
+    ✓ LayoutView;n=8192 (2529ms)
+    ✓ LayoutView;n=16384 (11179ms)
+    ✓ LayoutView;n=32768 (47970ms)
+    ✓ LayoutView;n=65536 (173957ms)
+    ✓ LayoutSQL;n=16 (16ms)
+    ✓ LayoutSQL;n=32 (8ms)
+    ✓ LayoutSQL;n=64 (17ms)
+    ✓ LayoutSQL;n=128 (35ms)
+    ✓ LayoutSQL;n=256 (50ms)
+    ✓ LayoutSQL;n=512 (119ms)
+    ✓ LayoutSQL;n=1024 (495ms)
+    ✓ LayoutSQL;n=2048 (1079ms)
+    ✓ LayoutSQL;n=4096 (6183ms)
+    ✓ LayoutSQL;n=8192 (3486ms)
+    ✓ LayoutSQL;n=16384 (11271ms)
+    ✓ LayoutSQL;n=32768 (53012ms)
+    ✓ LayoutSQL;n=65536 (218816ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..6a203d43894d8858e13ac952c838aea65a86d0d8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (20ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (89ms)
+    ✓ LayoutView;n=512 (377ms)
+    ✓ LayoutView;n=1024 (909ms)
+    ✓ LayoutView;n=2048 (2046ms)
+    ✓ LayoutView;n=4096 (982ms)
+    ✓ LayoutView;n=8192 (3266ms)
+    ✓ LayoutView;n=16384 (12480ms)
+    ✓ LayoutView;n=32768 (48231ms)
+    ✓ LayoutView;n=65536 (198337ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (14ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (45ms)
+    ✓ LayoutSQL;n=256 (87ms)
+    ✓ LayoutSQL;n=512 (154ms)
+    ✓ LayoutSQL;n=1024 (226ms)
+    ✓ LayoutSQL;n=2048 (983ms)
+    ✓ LayoutSQL;n=4096 (7313ms)
+    ✓ LayoutSQL;n=8192 (4039ms)
+    ✓ LayoutSQL;n=16384 (12902ms)
+    ✓ LayoutSQL;n=32768 (47664ms)
+    ✓ LayoutSQL;n=65536 (180416ms)
+
+
+  26 passing (9m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..d901713a7b1b90883b8510cd2b644107b6cd6834
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  157407 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 11963.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  170111 ms: Mark-sweep 1318.8 (1434.7) -> 1318.8 (1434.7) MB, 12704.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  179124 ms: Mark-sweep 1318.8 (1434.7) -> 1325.6 (1413.7) MB, 9011.5 / 0.0 ms [last resort gc].
+  188209 ms: Mark-sweep 1325.6 (1413.7) -> 1332.6 (1413.7) MB, 9084.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x35cad7fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x15eff0cc4887] (this=0x21a0e5cd01d1 <a Graph with map 0x383353c706d9>,idV=0x93ce585abe1 <String[9]: dim:12613>,idU=0x93ce5873229 <String[9]: dim:12614>,value=0x2470eb2dc4e9 <a View with map 0x383353c73331>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x15eff0caca75] (this=0x21a0e5cd01d1 <a Graph with map 0x383353c706d...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x15eff03079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..0a8061be9e9a895202d871fa8db09b0d04834082
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  141971 ms: Mark-sweep 1327.9 (1434.7) -> 1319.5 (1434.7) MB, 13292.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  155672 ms: Mark-sweep 1319.5 (1434.7) -> 1319.4 (1434.7) MB, 13700.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  169028 ms: Mark-sweep 1319.4 (1434.7) -> 1326.1 (1416.7) MB, 13354.6 / 0.0 ms [last resort gc].
+  177412 ms: Mark-sweep 1326.1 (1416.7) -> 1332.9 (1416.7) MB, 8383.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x380a966cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c345f7bb538] (this=0x1baa779dc7d9 <a Graph with map 0x2ca6109706d9>,idV=0x1b2b5ba93ae1 <String[9]: dim:12690>,idU=0x1b2b5ba459c9 <String[9]: dim:12694>,value=0x71cc68ea239 <a View with map 0x2ca610973331>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c345f7a3435] (this=0x1baa779dc7d9 <a Graph with map 0x2ca6109706...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2c345ee079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..04b835088a26feac5fc3d87c39e08294b022ed73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  141434 ms: Mark-sweep 1323.3 (1434.7) -> 1319.1 (1434.7) MB, 7728.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  148403 ms: Mark-sweep 1319.1 (1434.7) -> 1319.1 (1434.7) MB, 6969.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  155727 ms: Mark-sweep 1319.1 (1434.7) -> 1326.3 (1413.7) MB, 7318.8 / 0.0 ms [last resort gc].
+  162985 ms: Mark-sweep 1326.3 (1413.7) -> 1333.7 (1413.7) MB, 7258.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x21765b9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2f8e47eb0d27] (this=0x3c14d7769591 <a Graph with map 0x29147e870cb1>,idV=0x3fe81d195109 <String[9]: dim:12653>,idU=0xdc9fdb56059 <String[9]: dim:12656>,value=0x363c577f26a1 <a View with map 0x29147e873909>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2f8e47e98f15] (this=0x3c14d7769591 <a Graph with map 0x29147e870c...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2f8e475079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..15b2f6fe3002dcf61a16960c7bdfc290315c0c4a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  140879 ms: Mark-sweep 1324.0 (1437.7) -> 1322.2 (1437.7) MB, 10380.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  151731 ms: Mark-sweep 1322.2 (1437.7) -> 1322.2 (1437.7) MB, 10852.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  163842 ms: Mark-sweep 1322.2 (1437.7) -> 1327.0 (1414.7) MB, 12104.9 / 0.0 ms [last resort gc].
+  176557 ms: Mark-sweep 1327.0 (1414.7) -> 1332.0 (1414.7) MB, 12710.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x398246cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x8286ebb5078] (this=0x2291807e1d19 <a Graph with map 0x2d115984581>,idV=0x1e96f5c57431 <String[9]: dim:13111>,idU=0x1e96f5c67989 <String[9]: dim:13116>,value=0x113eb64f7b59 <a View with map 0x2d1159871d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x8286eb9b5b5] (this=0x2291807e1d19 <a Graph with map 0x2d115984581>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x8286e2079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..1706a5dfaee3321bedbc951776fe6501bf1b0a01
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  157735 ms: Mark-sweep 1320.3 (1434.7) -> 1320.2 (1434.7) MB, 11047.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  166833 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 9097.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  176522 ms: Mark-sweep 1320.2 (1434.7) -> 1326.1 (1415.7) MB, 9688.7 / 0.0 ms [last resort gc].
+  184540 ms: Mark-sweep 1326.1 (1415.7) -> 1332.0 (1415.7) MB, 8017.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x39b9432cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1f3b0f6b2147] (this=0x316f56ee63a9 <a Graph with map 0x529cb370839>,idV=0x2d2951264059 <String[9]: dim:12814>,idU=0x2d2951297ba1 <String[9]: dim:12815>,value=0x31cf456f67a9 <a View with map 0x529cb373491>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1f3b0f69a335] (this=0x316f56ee63a9 <a Graph with map 0x529cb370839...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1f3b0ed079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..a54609251cca1e24bff9417d87ad2536dd36d092
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  159790 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 11089.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  169183 ms: Mark-sweep 1318.8 (1434.7) -> 1318.8 (1434.7) MB, 9392.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  179719 ms: Mark-sweep 1318.8 (1434.7) -> 1325.4 (1413.7) MB, 10534.7 / 0.0 ms [last resort gc].
+  188220 ms: Mark-sweep 1325.4 (1413.7) -> 1332.0 (1413.7) MB, 8500.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x31cdbb9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c8a008916c7] (this=0x33503b3dee59 <a Graph with map 0x2fb062a70789>,idV=0x7bb1f940ba9 <String[9]: dim:12609>,idU=0x7bb1f951e61 <String[9]: dim:12610>,value=0xb663a4eb149 <a View with map 0x2fb062a733e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c8a008798b5] (this=0x33503b3dee59 <a Graph with map 0x2fb062a70789...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2c89fff079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..b411df0a212ceb6999d9aa81e9ac44b82364827b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  127788 ms: Mark-sweep 1328.2 (1434.7) -> 1319.6 (1434.7) MB, 6000.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  137916 ms: Mark-sweep 1319.6 (1434.7) -> 1319.6 (1434.7) MB, 10127.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  153450 ms: Mark-sweep 1319.6 (1434.7) -> 1326.4 (1416.7) MB, 15533.8 / 0.0 ms [last resort gc].
+  164492 ms: Mark-sweep 1326.4 (1416.7) -> 1333.2 (1416.7) MB, 11040.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3b3fcd4cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x397a0f4aab07] (this=0x3e83f27dcd19 <a Graph with map 0x1ef327a707e1>,idV=0x3a44511608b9 <String[9]: dim:12717>,idU=0x3a4451148211 <String[9]: dim:12719>,value=0x336c5eceb1d9 <a View with map 0x1ef327a73439>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x397a0f48fef5] (this=0x3e83f27dcd19 <a Graph with map 0x1ef327a70...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x397a0eb079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..575cb70e82a3f216eda095418b5adf2a564d13e7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  157047 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 15135.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  168296 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 11248.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  177229 ms: Mark-sweep 1320.2 (1434.7) -> 1326.2 (1415.7) MB, 8928.1 / 0.0 ms [last resort gc].
+  185923 ms: Mark-sweep 1326.2 (1415.7) -> 1332.3 (1415.7) MB, 8693.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x284cd56cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c5c03fa3281] (this=0x3358b5fcc4b9 <a Graph with map 0x30557cf84421>,idV=0x3e06d4579d51 <String[9]: dim:12805>,idU=0x3e06d455b321 <String[9]: dim:12806>,value=0x2fd07ebdc6a1 <a View with map 0x30557cf87079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c5c03f72b95] (this=0x3358b5fcc4b9 <a Graph with map 0x30557cf84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3c5c036079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..368782d83b960741f41a0c5164ce401faf67e6f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  141995 ms: Mark-sweep 1320.3 (1434.7) -> 1320.3 (1434.7) MB, 11431.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  153781 ms: Mark-sweep 1320.3 (1434.7) -> 1320.3 (1434.7) MB, 11785.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  165829 ms: Mark-sweep 1320.3 (1434.7) -> 1326.6 (1415.7) MB, 12045.8 / 0.0 ms [last resort gc].
+  178912 ms: Mark-sweep 1326.6 (1415.7) -> 1333.0 (1415.7) MB, 13082.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x295a87ecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fb2508b0b47] (this=0x3d92881e63d1 <a Graph with map 0x3cf422b842c1>,idV=0x4e8be177d21 <String[9]: dim:12814>,idU=0x4e8be1601f9 <String[9]: dim:12815>,value=0xeb4702f67a9 <a View with map 0x3cf422b86f19>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fb250899535] (this=0x3d92881e63d1 <a Graph with map 0x3cf422b842c1...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3fb24ff079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..56c836af2918aa2929a2fb630f7cd15b56125b5b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  147413 ms: Mark-sweep 1324.5 (1434.7) -> 1321.2 (1434.7) MB, 7493.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  154904 ms: Mark-sweep 1321.2 (1434.7) -> 1321.2 (1434.7) MB, 7491.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  160199 ms: Mark-sweep 1321.2 (1434.7) -> 1326.6 (1417.7) MB, 5294.3 / 0.0 ms [last resort gc].
+  166771 ms: Mark-sweep 1326.6 (1417.7) -> 1332.1 (1417.7) MB, 6571.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x35f6daccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x382eb01b9d38] (this=0x1ba2b59d82f1 <a Graph with map 0x2000f0a70731>,idV=0x5f994c55fb1 <String[9]: dim:12961>,idU=0x5f994c5cb31 <String[9]: dim:12964>,value=0x540dc7eb079 <a View with map 0x2000f0a73389>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x382eb01a0a75] (this=0x1ba2b59d82f1 <a Graph with map 0x2000f0a70731...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x382eaf8079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..dd735235b68dafef51a744787da773c230671a12
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  159924 ms: Mark-sweep 1318.9 (1434.7) -> 1318.9 (1434.7) MB, 11258.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  169465 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 9541.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  179567 ms: Mark-sweep 1318.8 (1434.7) -> 1326.1 (1412.7) MB, 10096.7 / 0.0 ms [last resort gc].
+  187981 ms: Mark-sweep 1326.1 (1412.7) -> 1333.4 (1412.7) MB, 8412.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x8a604dcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf1056392647] (this=0x30f58dcdc9e9 <a Graph with map 0x94f82170af9>,idV=0x1b52901c8d61 <String[9]: dim:12618>,idU=0x1b5290140471 <String[9]: dim:12619>,value=0x3aab15168eb1 <a View with map 0x94f82173751>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf105637a835] (this=0x30f58dcdc9e9 <a Graph with map 0x94f82170af9>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xf1055a079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..9bb5225a7a05e60059bb6eee10bcd57185704f4c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  146127 ms: Mark-sweep 1320.7 (1436.7) -> 1320.4 (1436.7) MB, 10577.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  157061 ms: Mark-sweep 1320.4 (1436.7) -> 1320.4 (1436.7) MB, 10933.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  170439 ms: Mark-sweep 1320.4 (1436.7) -> 1325.0 (1412.7) MB, 13376.4 / 0.0 ms [last resort gc].
+  183545 ms: Mark-sweep 1325.0 (1412.7) -> 1329.8 (1411.7) MB, 13104.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3726f3acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe9b3629e8b8] (this=0x39ad83cbc09 <a Graph with map 0x1f5106f706d9>,idV=0x3d9275067069 <String[9]: dim:12850>,idU=0x3d927508c519 <String[9]: dim:12853>,value=0x1848fa1dca61 <a View with map 0x1f5106f73331>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe9b36286895] (this=0x39ad83cbc09 <a Graph with map 0x1f5106f706d9>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xe9b359079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..827516cfc51a4b96dee938e4cad137298c4041ee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  160312 ms: Mark-sweep 1319.5 (1434.7) -> 1319.5 (1434.7) MB, 13399.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  171956 ms: Mark-sweep 1319.5 (1434.7) -> 1319.5 (1434.7) MB, 11643.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  184106 ms: Mark-sweep 1319.5 (1434.7) -> 1326.4 (1416.7) MB, 12149.1 / 0.0 ms [last resort gc].
+  192487 ms: Mark-sweep 1326.4 (1416.7) -> 1333.6 (1416.7) MB, 8380.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2383cedcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cb2076b2c87] (this=0x2ca957a99659 <a Graph with map 0x227bfce70731>,idV=0x3e7fae62be81 <String[9]: dim:12705>,idU=0x3e7fae643281 <String[9]: dim:12706>,value=0x23c21fca7471 <a View with map 0x227bfce73389>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cb2076993d5] (this=0x2ca957a99659 <a Graph with map 0x227bfce70...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1cb206d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..d844143926c7e17c7df1f4d1495a6d551e5221cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  131536 ms: Mark-sweep 1327.8 (1434.7) -> 1319.4 (1434.7) MB, 7021.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  138207 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 6671.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  144858 ms: Mark-sweep 1319.4 (1434.7) -> 1325.7 (1416.7) MB, 6650.0 / 0.0 ms [last resort gc].
+  152174 ms: Mark-sweep 1325.7 (1416.7) -> 1332.0 (1416.7) MB, 7315.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x38514a1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x17a5c36cee87] (this=0x23e7829e3ff1 <a Graph with map 0x289e6f770891>,idV=0x263787d5a159 <String[9]: dim:12684>,idU=0x263787dafae1 <String[9]: dim:12685>,value=0x1b59998f1739 <a View with map 0x289e6f7734e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x17a5c36b7075] (this=0x23e7829e3ff1 <a Graph with map 0x289e6f770...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x17a5c2d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..9f0e4824b148ca4f8fa425c4b9345fb35e9d691a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  131895 ms: Mark-sweep 1327.9 (1434.7) -> 1319.4 (1434.7) MB, 7812.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  140392 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 8496.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  151398 ms: Mark-sweep 1319.4 (1434.7) -> 1326.0 (1416.7) MB, 11000.7 / 0.0 ms [last resort gc].
+  163004 ms: Mark-sweep 1326.0 (1416.7) -> 1332.7 (1416.7) MB, 11604.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x302f49dcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x68343db94c7] (this=0xa426e291fc9 <a Graph with map 0x683ae270891>,idV=0x3986f38c6ee1 <String[9]: dim:12686>,idU=0x6b5abb5e1a9 <String[9]: dim:12688>,value=0x1c8763f9f949 <a View with map 0x683ae2734e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x68343da16b5] (this=0xa426e291fc9 <a Graph with map 0x683ae270891>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x683434079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..dcd82750e04b8dc9b352f1fbea339be4ead822e4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  166639 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 9952.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  173159 ms: Mark-sweep 1319.4 (1434.7) -> 1319.3 (1434.7) MB, 6519.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  179395 ms: Mark-sweep 1319.3 (1434.7) -> 1325.9 (1416.7) MB, 6235.3 / 0.0 ms [last resort gc].
+  185844 ms: Mark-sweep 1325.9 (1416.7) -> 1332.5 (1416.7) MB, 6449.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2281109cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12674609f147] (this=0x3b0fd9cda881 <a Graph with map 0x3685370705d1>,idV=0xac6c0bb47d1 <String[9]: dim:12693>,idU=0xac6c0b58b59 <String[9]: dim:12694>,value=0x19adc43e8569 <a View with map 0x368537073229>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x126746085895] (this=0x3b0fd9cda881 <a Graph with map 0x3685370705d...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1267457079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..1a9eaa194ad71289c015a562f1677532c546276f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  127720 ms: Mark-sweep 1320.2 (1434.7) -> 1320.1 (1434.7) MB, 6824.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  134455 ms: Mark-sweep 1320.1 (1434.7) -> 1320.1 (1434.7) MB, 6734.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  141181 ms: Mark-sweep 1320.1 (1434.7) -> 1325.9 (1415.7) MB, 6724.9 / 0.0 ms [last resort gc].
+  153315 ms: Mark-sweep 1325.9 (1415.7) -> 1331.9 (1415.7) MB, 12134.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2ff1463cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x345ebbea97e7] (this=0xf68017cb691 <a Graph with map 0x10bd5e670cb1>,idV=0x2a2d4d3a34a9 <String[9]: dim:12804>,idU=0x2a2d4d3265b1 <String[9]: dim:12805>,value=0x3792db381 <a View with map 0x10bd5e673909>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x345ebbe8e3d5] (this=0xf68017cb691 <a Graph with map 0x10bd5e670cb1>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x345ebb5079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..cd4bf8f5618d12099442b30dc77d36c2351f4b66
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  166374 ms: Mark-sweep 1323.9 (1437.7) -> 1322.2 (1437.7) MB, 12222.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  179993 ms: Mark-sweep 1322.2 (1437.7) -> 1322.2 (1437.7) MB, 13614.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  189732 ms: Mark-sweep 1322.2 (1437.7) -> 1327.0 (1414.7) MB, 9738.2 / 0.0 ms [last resort gc].
+  197047 ms: Mark-sweep 1327.0 (1414.7) -> 1331.9 (1414.7) MB, 7314.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x29b3b19cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe5c157aae67] (this=0x158a3d6e0861 <a Graph with map 0x3432ae570af9>,idV=0x1dfa4dd4f909 <String[9]: dim:13104>,idU=0x1dfa4dd41af9 <String[9]: dim:13105>,value=0x2c58b60f6641 <a View with map 0x3432ae573751>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe5c1578f475] (this=0x158a3d6e0861 <a Graph with map 0x3432ae570af...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xe5c14e079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..8cf86de71980133d3e9550ad7661cd08113efcfb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  167602 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 10013.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  176949 ms: Mark-sweep 1319.4 (1434.7) -> 1319.3 (1434.7) MB, 9346.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  185027 ms: Mark-sweep 1319.3 (1434.7) -> 1325.9 (1416.7) MB, 8077.3 / 0.0 ms [last resort gc].
+  191762 ms: Mark-sweep 1325.9 (1416.7) -> 1332.6 (1416.7) MB, 6734.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3041cffcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x93ff8ca7587] (this=0x21308cbd5b41 <a Graph with map 0x23fb2e170941>,idV=0x1f253e16d4a9 <String[9]: dim:12696>,idU=0x1f253e150951 <String[9]: dim:12697>,value=0x4a41d6e37f9 <a View with map 0x23fb2e173599>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x93ff8c8f775] (this=0x21308cbd5b41 <a Graph with map 0x23fb2e170941...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x93ff83079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..e489b15d318a38d42ac25b379d9b5c6f93807769
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  154542 ms: Mark-sweep 1319.3 (1434.7) -> 1319.3 (1434.7) MB, 8148.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  168803 ms: Mark-sweep 1319.3 (1434.7) -> 1319.3 (1434.7) MB, 14259.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  179287 ms: Mark-sweep 1319.3 (1434.7) -> 1325.8 (1416.7) MB, 10483.0 / 0.0 ms [last resort gc].
+  188861 ms: Mark-sweep 1325.8 (1416.7) -> 1332.4 (1416.7) MB, 9573.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xcfd186cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11d8e81b2247] (this=0xd5ea59e2cb1 <a Graph with map 0x356c3e9705d1>,idV=0x232286f660c9 <String[9]: dim:12676>,idU=0x232286facc11 <String[9]: dim:12677>,value=0xc009c0f02a9 <a View with map 0x356c3e973229>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11d8e819a435] (this=0xd5ea59e2cb1 <a Graph with map 0x356c3e9705d1>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x11d8e78079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d3605b560a81fbd44119cea107a3182a2191c9de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 341.4
+Mediana        = 336
+Variancia      = 560.04
+Desvio Padrao  = 23.67
+Coef. Variacao = 0.07
+Min            = 312
+Max            = 389
+Esq, Dir.      = 332.6959 , 350.1041
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4118a008f1fbf94668b4af0ba781383878e54141
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 321
+1024 378
+1024 389
+1024 325
+1024 356
+1024 359
+1024 335
+1024 337
+1024 365
+1024 324
+1024 328
+1024 342
+1024 315
+1024 312
+1024 326
+1024 324
+1024 323
+1024 343
+1024 389
+1024 337
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..bbbe1c320ecf53872af1ae59132d9b28e95a7ea6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 240.9
+Mediana        = 239
+Variancia      = 71.88
+Desvio Padrao  = 8.48
+Coef. Variacao = 0.04
+Min            = 232
+Max            = 269
+Esq, Dir.      = 237.7816 , 244.0184
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d6a36f637a6572a04d84fcda2a00281b4da5ad1c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 237
+1024 237
+1024 244
+1024 232
+1024 241
+1024 245
+1024 269
+1024 245
+1024 233
+1024 234
+1024 237
+1024 234
+1024 246
+1024 244
+1024 238
+1024 252
+1024 241
+1024 234
+1024 235
+1024 240
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..353d235118dcfe7747ee96993dcae3bde5ff435a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 23.3
+Mediana        = 23
+Variancia      = 5.69
+Desvio Padrao  = 2.39
+Coef. Variacao = 0.1
+Min            = 20
+Max            = 32
+Esq, Dir.      = 22.4223 , 24.1777
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..856bc8096c399baaa602b1d8f4f66d982c840916
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 22
+128 24
+128 22
+128 20
+128 24
+128 26
+128 23
+128 23
+128 22
+128 22
+128 23
+128 23
+128 23
+128 23
+128 24
+128 22
+128 22
+128 32
+128 24
+128 22
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..08719830edfc9d0341cf588b650ee16ae0c3cdd3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 15.85
+Mediana        = 15
+Variancia      = 6.77
+Desvio Padrao  = 2.6
+Coef. Variacao = 0.16
+Min            = 12
+Max            = 20
+Esq, Dir.      = 14.8933 , 16.8067
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c4b7bffb3e3afa16a308cb18f51eacd4439354a0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 15
+128 20
+128 14
+128 13
+128 19
+128 15
+128 18
+128 17
+128 17
+128 13
+128 20
+128 15
+128 14
+128 14
+128 12
+128 18
+128 13
+128 16
+128 14
+128 20
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..29ec4ac503c64246b4d77c8e5e417613157664e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11.1
+Mediana        = 11
+Variancia      = 0.52
+Desvio Padrao  = 0.72
+Coef. Variacao = 0.06
+Min            = 10
+Max            = 13
+Esq, Dir.      = 10.8359 , 11.3641
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6d51cb8024c8a8bd27b2114e91caf0b599c6d7ed
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 11
+16 10
+16 11
+16 11
+16 11
+16 12
+16 11
+16 13
+16 11
+16 10
+16 12
+16 12
+16 10
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b01c0d35ae8b97e3f4c6f1d64b1cf78df9c04380
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 15.6
+Mediana        = 15
+Variancia      = 1.09
+Desvio Padrao  = 1.05
+Coef. Variacao = 0.07
+Min            = 14
+Max            = 19
+Esq, Dir.      = 15.2152 , 15.9848
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..f2d776fd22b63dd7018eeb08bada1cc227eb4ab1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 16
+16 15
+16 19
+16 15
+16 16
+16 15
+16 15
+16 16
+16 16
+16 16
+16 15
+16 15
+16 17
+16 15
+16 15
+16 16
+16 15
+16 14
+16 15
+16 16
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..26f857027c9353a313fd663f6c3c93beadb1ed9f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 80046.95
+Mediana        = 79770.5
+Variancia      = 29692740.26
+Desvio Padrao  = 5449.1
+Coef. Variacao = 0.07
+Min            = 70802
+Max            = 92936
+Esq, Dir.      = 78042.7669 , 82051.1331
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e7d8a7eba23a070a71b02fb29f5a9bfa016ef825
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 80024
+16384 85416
+16384 92936
+16384 79495
+16384 81905
+16384 78527
+16384 73043
+16384 79755
+16384 85103
+16384 76324
+16384 79786
+16384 78163
+16384 70802
+16384 76744
+16384 73091
+16384 84119
+16384 82630
+16384 81725
+16384 87723
+16384 73628
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..8cb11660e98201025ebd488e90a73cf6268fbb1f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 57058.3
+Mediana        = 56278.5
+Variancia      = 9754660.33
+Desvio Padrao  = 3123.25
+Coef. Variacao = 0.05
+Min            = 52253
+Max            = 64599
+Esq, Dir.      = 55909.569 , 58207.031
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c3a32bd7a3afaac72e31c5aa8e68cbde204d68ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 55422
+16384 56118
+16384 57180
+16384 53169
+16384 53869
+16384 60992
+16384 64599
+16384 58503
+16384 52253
+16384 55138
+16384 56178
+16384 54118
+16384 57550
+16384 58388
+16384 56140
+16384 59217
+16384 57607
+16384 62956
+16384 56379
+16384 55390
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2298931758438a2f07c91ee30cae18dd82ed0f06
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1240.4
+Mediana        = 1227
+Variancia      = 9253.09
+Desvio Padrao  = 96.19
+Coef. Variacao = 0.08
+Min            = 1099
+Max            = 1463
+Esq, Dir.      = 1205.0202 , 1275.7798
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4455f057000fd8db984fc21755b614ce1db6e153
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1147
+2048 1356
+2048 1372
+2048 1179
+2048 1269
+2048 1252
+2048 1185
+2048 1151
+2048 1327
+2048 1191
+2048 1314
+2048 1323
+2048 1133
+2048 1099
+2048 1153
+2048 1284
+2048 1156
+2048 1240
+2048 1463
+2048 1214
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0410b18f21ea8fb3ccbe918021b85cb8dd495794
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 926
+Mediana        = 926
+Variancia      = 663.58
+Desvio Padrao  = 25.76
+Coef. Variacao = 0.03
+Min            = 857
+Max            = 984
+Esq, Dir.      = 916.5255 , 935.4745
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4214a2b404ccc95481d73b6dd51b9716cae70bc9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 932
+2048 927
+2048 946
+2048 909
+2048 941
+2048 946
+2048 857
+2048 950
+2048 902
+2048 916
+2048 914
+2048 907
+2048 945
+2048 937
+2048 916
+2048 984
+2048 944
+2048 908
+2048 914
+2048 925
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b52fe393a544de2fff7a4722ff2063c651a5ef60
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 37
+Mediana        = 34
+Variancia      = 141.16
+Desvio Padrao  = 11.88
+Coef. Variacao = 0.32
+Min            = 32
+Max            = 87
+Esq, Dir.      = 32.6302 , 41.3698
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..51a3dcdb4fd3cb46b5ffb7513ad28a9bdb19b7de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 33
+256 36
+256 36
+256 33
+256 87
+256 36
+256 33
+256 33
+256 35
+256 34
+256 33
+256 36
+256 34
+256 33
+256 34
+256 34
+256 32
+256 35
+256 39
+256 34
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c8a49eab0963521529ace8c1b6e8e96a454ccbe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 40.15
+Mediana        = 42.5
+Variancia      = 103.92
+Desvio Padrao  = 10.19
+Coef. Variacao = 0.25
+Min            = 24
+Max            = 55
+Esq, Dir.      = 36.4005 , 43.8995
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d3b6f3de51234676eb8afd63acff346bd513fc3c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 45
+256 24
+256 27
+256 42
+256 42
+256 28
+256 24
+256 55
+256 51
+256 46
+256 53
+256 42
+256 47
+256 45
+256 43
+256 28
+256 45
+256 49
+256 25
+256 42
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d7a5d722c48717bbbe68d8a61fe5338df3c96bd3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 6
+Mediana        = 6
+Variancia      = 2.63
+Desvio Padrao  = 1.62
+Coef. Variacao = 0.27
+Min            = 4
+Max            = 12
+Esq, Dir.      = 5.4033 , 6.5967
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..45a65f4e00f2d9424a019be1c250a9ef1955215f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 6
+32 12
+32 5
+32 6
+32 6
+32 7
+32 6
+32 7
+32 4
+32 6
+32 6
+32 6
+32 7
+32 5
+32 5
+32 5
+32 5
+32 5
+32 6
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c0bd1ee41940c6f6c664a8a983e0274cbcfcceda
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 4.85
+Mediana        = 4
+Variancia      = 2.98
+Desvio Padrao  = 1.73
+Coef. Variacao = 0.36
+Min            = 3
+Max            = 9
+Esq, Dir.      = 4.2155 , 5.4845
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..cbca5c259431494dcbedc500d7522f66c22d64b0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 4
+32 5
+32 4
+32 4
+32 4
+32 9
+32 4
+32 9
+32 5
+32 4
+32 4
+32 3
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 8
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e8d5457c09cbf3146dc1361b9c66464a207c2f05
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 322609.75
+Mediana        = 318548.5
+Variancia      = 597917361.14
+Desvio Padrao  = 24452.35
+Coef. Variacao = 0.08
+Min            = 287752
+Max            = 379872
+Esq, Dir.      = 313616.1651 , 331603.3349
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..da0ee368dd46adf48b45878058903e056935ddfa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 310163
+32768 332041
+32768 361270
+32768 332875
+32768 309171
+32768 316930
+32768 294160
+32768 320167
+32768 344493
+32768 314931
+32768 340305
+32768 350194
+32768 291707
+32768 313058
+32768 290954
+32768 326769
+32768 306105
+32768 329278
+32768 379872
+32768 287752
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..a5b7790860205a0f212e37a4684f5f73ccd145e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 233032.25
+Mediana        = 232192
+Variancia      = 248885351.25
+Desvio Padrao  = 15776.1
+Coef. Variacao = 0.07
+Min            = 211668
+Max            = 263785
+Esq, Dir.      = 227229.7931 , 238834.7069
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c19a7e12fead79865490e92d3ddb0f448d3c53c2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 217561
+32768 238405
+32768 234954
+32768 223181
+32768 222038
+32768 218526
+32768 234823
+32768 225619
+32768 240058
+32768 211949
+32768 240171
+32768 212548
+32768 211668
+32768 249771
+32768 263785
+32768 250040
+32768 247556
+32768 227464
+32768 260967
+32768 229561
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..986835cae2bf320aaded6347894f50167b70afc3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4733.4
+Mediana        = 4779.5
+Variancia      = 71399.31
+Desvio Padrao  = 267.21
+Coef. Variacao = 0.06
+Min            = 4217
+Max            = 5236
+Esq, Dir.      = 4635.1213 , 4831.6787
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..08962fbead0179273ee15719f28aa5db6cf07f18
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4841
+4096 5236
+4096 4928
+4096 4550
+4096 4892
+4096 4786
+4096 4481
+4096 4773
+4096 4992
+4096 4511
+4096 4594
+4096 4724
+4096 4353
+4096 4217
+4096 4563
+4096 4880
+4096 4479
+4096 4799
+4096 5234
+4096 4835
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ef17c890d43f035dd67c200d2951d607470ac56e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3277.15
+Mediana        = 3268
+Variancia      = 7152.45
+Desvio Padrao  = 84.57
+Coef. Variacao = 0.03
+Min            = 3150
+Max            = 3432
+Esq, Dir.      = 3246.0443 , 3308.2557
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..e1f0fb3957c9b791fb6789cb456be92d075d56f7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 3263
+4096 3246
+4096 3284
+4096 3165
+4096 3311
+4096 3359
+4096 3431
+4096 3377
+4096 3150
+4096 3176
+4096 3212
+4096 3203
+4096 3273
+4096 3284
+4096 3237
+4096 3432
+4096 3286
+4096 3395
+4096 3217
+4096 3242
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..75f3ced2e92b81d2ac19611be78ece9ec87ae2dd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 103
+Mediana        = 100
+Variancia      = 114.95
+Desvio Padrao  = 10.72
+Coef. Variacao = 0.1
+Min            = 94
+Max            = 143
+Esq, Dir.      = 99.0567 , 106.9433
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e5b8e5850f36e4d000d17400c6ec17e2a553f1a1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 94
+512 111
+512 111
+512 97
+512 109
+512 104
+512 101
+512 96
+512 105
+512 102
+512 99
+512 103
+512 96
+512 95
+512 98
+512 99
+512 96
+512 103
+512 143
+512 98
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..772e2672349a5167f65b62192aee7fccd9ee8274
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 82.5
+Mediana        = 79.5
+Variancia      = 62.16
+Desvio Padrao  = 7.88
+Coef. Variacao = 0.1
+Min            = 74
+Max            = 98
+Esq, Dir.      = 79.6003 , 85.3997
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..a0e0782cd235488bb635f2a6e03cc6f6ba5de418
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 76
+512 95
+512 86
+512 74
+512 81
+512 98
+512 92
+512 84
+512 78
+512 77
+512 77
+512 74
+512 79
+512 77
+512 75
+512 91
+512 81
+512 78
+512 97
+512 80
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..076fa515bd97f7c1d6b61768a0b130cb5ed5d392
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.45
+Mediana        = 7
+Variancia      = 0.47
+Desvio Padrao  = 0.69
+Coef. Variacao = 0.09
+Min            = 7
+Max            = 9
+Esq, Dir.      = 7.1976 , 7.7024
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..28821ac4402cdd76034b1e4efa27ac85300bde1c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 7
+64 9
+64 7
+64 7
+64 8
+64 9
+64 7
+64 7
+64 7
+64 7
+64 8
+64 8
+64 7
+64 7
+64 8
+64 7
+64 7
+64 7
+64 8
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f9fefd376e6ba4a68272bbe8b23fed4db8804827
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 8.4
+Mediana        = 7
+Variancia      = 41.2
+Desvio Padrao  = 6.42
+Coef. Variacao = 0.76
+Min            = 5
+Max            = 35
+Esq, Dir.      = 6.0392 , 10.7608
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..7ac6ffc65a7fd6170f5439184b89eea18aa9f860
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 6
+64 6
+64 35
+64 5
+64 6
+64 9
+64 7
+64 9
+64 7
+64 6
+64 10
+64 6
+64 6
+64 6
+64 7
+64 7
+64 6
+64 7
+64 10
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6194f1a88a5a7a4a0050c9748717d8f103885bef
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1316785.3
+Mediana        = 1300102
+Variancia      = 2168666526.85
+Desvio Padrao  = 46568.94
+Coef. Variacao = 0.04
+Min            = 1255639
+Max            = 1419162
+Esq, Dir.      = 1299657.2214 , 1333913.3786
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6a34611e21d700e4d65618cd9ecb886c28df3889
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 1316729
+65536 1294522
+65536 1286800
+65536 1388401
+65536 1401408
+65536 1280018
+65536 1266269
+65536 1322843
+65536 1296845
+65536 1385728
+65536 1300751
+65536 1419162
+65536 1299453
+65536 1287508
+65536 1268646
+65536 1320349
+65536 1320387
+65536 1326405
+65536 1297843
+65536 1255639
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5dac5d929cb10c432715165ce70ee112a63e5f0b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1120980.55
+Mediana        = 1117490.5
+Variancia      = 1662872886.68
+Desvio Padrao  = 40778.34
+Coef. Variacao = 0.04
+Min            = 1043034
+Max            = 1200087
+Esq, Dir.      = 1105982.2587 , 1135978.8413
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5b965885fb6296cf204e0c36e152535116097769
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 1108452
+65536 1200087
+65536 1122195
+65536 1136350
+65536 1153645
+65536 1164577
+65536 1179356
+65536 1043034
+65536 1105205
+65536 1168094
+65536 1079396
+65536 1056555
+65536 1105380
+65536 1140448
+65536 1107475
+65536 1129366
+65536 1110413
+65536 1112786
+65536 1130561
+65536 1066236
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ce53baecc28f6eb99978f902df8d145ee1b4c021
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18878.2
+Mediana        = 18675.5
+Variancia      = 1804943.33
+Desvio Padrao  = 1343.48
+Coef. Variacao = 0.07
+Min            = 16701
+Max            = 21551
+Esq, Dir.      = 18384.0668 , 19372.3332
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..77de87d4541a83270521191ce706abbc43291dda
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 18653
+8192 21551
+8192 20829
+8192 18201
+8192 19766
+8192 19026
+8192 17602
+8192 17841
+8192 20094
+8192 18696
+8192 17495
+8192 18655
+8192 17252
+8192 16701
+8192 18079
+8192 20101
+8192 19034
+8192 17669
+8192 21042
+8192 19277
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ccf88e55b9e6540ba1d03d66b0e3badaf3990a64
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 13196.1
+Mediana        = 13074
+Variancia      = 201658.62
+Desvio Padrao  = 449.06
+Coef. Variacao = 0.03
+Min            = 12590
+Max            = 14267
+Esq, Dir.      = 13030.934 , 13361.266
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5747b520bf47c6991424fa72c74481953d135fe6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 13082
+8192 12853
+8192 13298
+8192 12819
+8192 13335
+8192 13620
+8192 14267
+8192 13475
+8192 12670
+8192 12804
+8192 12899
+8192 12590
+8192 12870
+8192 13528
+8192 13153
+8192 13861
+8192 12968
+8192 13851
+8192 12913
+8192 13066
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..3a7ccce21af0de26bd0e6858d2f4a4eaf4360ed2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (10ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (53ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (914ms)
+    ✓ LayoutView;n=4096 (3212ms)
+    ✓ LayoutView;n=8192 (12899ms)
+    ✓ LayoutView;n=16384 (56178ms)
+    ✓ LayoutView;n=32768 (240171ms)
+    ✓ LayoutView;n=65536 (1079396ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (328ms)
+    ✓ LayoutSQL;n=2048 (1314ms)
+    ✓ LayoutSQL;n=4096 (4594ms)
+    ✓ LayoutSQL;n=8192 (17495ms)
+    ✓ LayoutSQL;n=16384 (79786ms)
+    ✓ LayoutSQL;n=32768 (340305ms)
+    ✓ LayoutSQL;n=65536 (1300751ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..9ea57ee098cc23259e1970f9b88e9d5ac991ea51
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (916ms)
+    ✓ LayoutView;n=4096 (3176ms)
+    ✓ LayoutView;n=8192 (12804ms)
+    ✓ LayoutView;n=16384 (55138ms)
+    ✓ LayoutView;n=32768 (211949ms)
+    ✓ LayoutView;n=65536 (1168094ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (324ms)
+    ✓ LayoutSQL;n=2048 (1191ms)
+    ✓ LayoutSQL;n=4096 (4511ms)
+    ✓ LayoutSQL;n=8192 (18696ms)
+    ✓ LayoutSQL;n=16384 (76324ms)
+    ✓ LayoutSQL;n=32768 (314931ms)
+    ✓ LayoutSQL;n=65536 (1385728ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..de6d9f9e62934b349365cb3154fa978c55e52d07
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (42ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (240ms)
+    ✓ LayoutView;n=2048 (925ms)
+    ✓ LayoutView;n=4096 (3242ms)
+    ✓ LayoutView;n=8192 (13066ms)
+    ✓ LayoutView;n=16384 (55390ms)
+    ✓ LayoutView;n=32768 (229561ms)
+    ✓ LayoutView;n=65536 (1066236ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (337ms)
+    ✓ LayoutSQL;n=2048 (1214ms)
+    ✓ LayoutSQL;n=4096 (4835ms)
+    ✓ LayoutSQL;n=8192 (19277ms)
+    ✓ LayoutSQL;n=16384 (73628ms)
+    ✓ LayoutSQL;n=32768 (287752ms)
+    ✓ LayoutSQL;n=65536 (1255639ms)
+
+
+  26 passing (50m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..a93fcfd0ac6b29bc4c0b8824f7a369ca964d1d6e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (17ms)
+    ✓ LayoutView;n=256 (55ms)
+    ✓ LayoutView;n=512 (84ms)
+    ✓ LayoutView;n=1024 (245ms)
+    ✓ LayoutView;n=2048 (950ms)
+    ✓ LayoutView;n=4096 (3377ms)
+    ✓ LayoutView;n=8192 (13475ms)
+    ✓ LayoutView;n=16384 (58503ms)
+    ✓ LayoutView;n=32768 (225619ms)
+    ✓ LayoutView;n=65536 (1043034ms)
+    ✓ LayoutSQL;n=16 (13ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (96ms)
+    ✓ LayoutSQL;n=1024 (337ms)
+    ✓ LayoutSQL;n=2048 (1151ms)
+    ✓ LayoutSQL;n=4096 (4773ms)
+    ✓ LayoutSQL;n=8192 (17841ms)
+    ✓ LayoutSQL;n=16384 (79755ms)
+    ✓ LayoutSQL;n=32768 (320167ms)
+    ✓ LayoutSQL;n=65536 (1322843ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..6301c7f730b6db7745490dbe8b8d440314958c14
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (28ms)
+    ✓ LayoutView;n=512 (91ms)
+    ✓ LayoutView;n=1024 (252ms)
+    ✓ LayoutView;n=2048 (984ms)
+    ✓ LayoutView;n=4096 (3432ms)
+    ✓ LayoutView;n=8192 (13861ms)
+    ✓ LayoutView;n=16384 (59217ms)
+    ✓ LayoutView;n=32768 (250040ms)
+    ✓ LayoutView;n=65536 (1129366ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (324ms)
+    ✓ LayoutSQL;n=2048 (1284ms)
+    ✓ LayoutSQL;n=4096 (4880ms)
+    ✓ LayoutSQL;n=8192 (20101ms)
+    ✓ LayoutSQL;n=16384 (84119ms)
+    ✓ LayoutSQL;n=32768 (326769ms)
+    ✓ LayoutSQL;n=65536 (1320349ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..2a4d22018b065bae361fa6452c0d293d5bcdd559
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (42ms)
+    ✓ LayoutView;n=512 (74ms)
+    ✓ LayoutView;n=1024 (232ms)
+    ✓ LayoutView;n=2048 (909ms)
+    ✓ LayoutView;n=4096 (3165ms)
+    ✓ LayoutView;n=8192 (12819ms)
+    ✓ LayoutView;n=16384 (53169ms)
+    ✓ LayoutView;n=32768 (223181ms)
+    ✓ LayoutView;n=65536 (1136350ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (20ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (97ms)
+    ✓ LayoutSQL;n=1024 (325ms)
+    ✓ LayoutSQL;n=2048 (1179ms)
+    ✓ LayoutSQL;n=4096 (4550ms)
+    ✓ LayoutSQL;n=8192 (18201ms)
+    ✓ LayoutSQL;n=16384 (79495ms)
+    ✓ LayoutSQL;n=32768 (332875ms)
+    ✓ LayoutSQL;n=65536 (1388401ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..5315dc6e73c8f6b4e5073da682771897c9a5c243
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (24ms)
+    ✓ LayoutView;n=512 (92ms)
+    ✓ LayoutView;n=1024 (269ms)
+    ✓ LayoutView;n=2048 (857ms)
+    ✓ LayoutView;n=4096 (3431ms)
+    ✓ LayoutView;n=8192 (14267ms)
+    ✓ LayoutView;n=16384 (64599ms)
+    ✓ LayoutView;n=32768 (234823ms)
+    ✓ LayoutView;n=65536 (1179356ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (335ms)
+    ✓ LayoutSQL;n=2048 (1185ms)
+    ✓ LayoutSQL;n=4096 (4481ms)
+    ✓ LayoutSQL;n=8192 (17602ms)
+    ✓ LayoutSQL;n=16384 (73043ms)
+    ✓ LayoutSQL;n=32768 (294160ms)
+    ✓ LayoutSQL;n=65536 (1266269ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..e848d2c3736f0f51dfbae5fb37a6f842a28b9850
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (8ms)
+    ✓ LayoutView;n=64 (10ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (97ms)
+    ✓ LayoutView;n=1024 (235ms)
+    ✓ LayoutView;n=2048 (914ms)
+    ✓ LayoutView;n=4096 (3217ms)
+    ✓ LayoutView;n=8192 (12913ms)
+    ✓ LayoutView;n=16384 (56379ms)
+    ✓ LayoutView;n=32768 (260967ms)
+    ✓ LayoutView;n=65536 (1130561ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (39ms)
+    ✓ LayoutSQL;n=512 (143ms)
+    ✓ LayoutSQL;n=1024 (389ms)
+    ✓ LayoutSQL;n=2048 (1463ms)
+    ✓ LayoutSQL;n=4096 (5234ms)
+    ✓ LayoutSQL;n=8192 (21042ms)
+    ✓ LayoutSQL;n=16384 (87723ms)
+    ✓ LayoutSQL;n=32768 (379872ms)
+    ✓ LayoutSQL;n=65536 (1297843ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..a1e3324e951327b3af65e6af45a7b648e937638b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (42ms)
+    ✓ LayoutView;n=512 (74ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (907ms)
+    ✓ LayoutView;n=4096 (3203ms)
+    ✓ LayoutView;n=8192 (12590ms)
+    ✓ LayoutView;n=16384 (54118ms)
+    ✓ LayoutView;n=32768 (212548ms)
+    ✓ LayoutView;n=65536 (1056555ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (342ms)
+    ✓ LayoutSQL;n=2048 (1323ms)
+    ✓ LayoutSQL;n=4096 (4724ms)
+    ✓ LayoutSQL;n=8192 (18655ms)
+    ✓ LayoutSQL;n=16384 (78163ms)
+    ✓ LayoutSQL;n=32768 (350194ms)
+    ✓ LayoutSQL;n=65536 (1419162ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..5fe0f013e9a25c59bc7e4a6e626bb88f8dc7fd62
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (16ms)
+    ✓ LayoutView;n=256 (49ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (908ms)
+    ✓ LayoutView;n=4096 (3395ms)
+    ✓ LayoutView;n=8192 (13851ms)
+    ✓ LayoutView;n=16384 (62956ms)
+    ✓ LayoutView;n=32768 (227464ms)
+    ✓ LayoutView;n=65536 (1112786ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (32ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (343ms)
+    ✓ LayoutSQL;n=2048 (1240ms)
+    ✓ LayoutSQL;n=4096 (4799ms)
+    ✓ LayoutSQL;n=8192 (17669ms)
+    ✓ LayoutSQL;n=16384 (81725ms)
+    ✓ LayoutSQL;n=32768 (329278ms)
+    ✓ LayoutSQL;n=65536 (1326405ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..0294a3493b3f5500e74ebebf586a2e7464d501ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (932ms)
+    ✓ LayoutView;n=4096 (3263ms)
+    ✓ LayoutView;n=8192 (13082ms)
+    ✓ LayoutView;n=16384 (55422ms)
+    ✓ LayoutView;n=32768 (217561ms)
+    ✓ LayoutView;n=65536 (1108452ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (321ms)
+    ✓ LayoutSQL;n=2048 (1147ms)
+    ✓ LayoutSQL;n=4096 (4841ms)
+    ✓ LayoutSQL;n=8192 (18653ms)
+    ✓ LayoutSQL;n=16384 (80024ms)
+    ✓ LayoutSQL;n=32768 (310163ms)
+    ✓ LayoutSQL;n=65536 (1316729ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..abfeb704c8f7ac52d9015432701a0227f71c389c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (19ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (35ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (86ms)
+    ✓ LayoutView;n=1024 (244ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3284ms)
+    ✓ LayoutView;n=8192 (13298ms)
+    ✓ LayoutView;n=16384 (57180ms)
+    ✓ LayoutView;n=32768 (234954ms)
+    ✓ LayoutView;n=65536 (1122195ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (111ms)
+    ✓ LayoutSQL;n=1024 (389ms)
+    ✓ LayoutSQL;n=2048 (1372ms)
+    ✓ LayoutSQL;n=4096 (4928ms)
+    ✓ LayoutSQL;n=8192 (20829ms)
+    ✓ LayoutSQL;n=16384 (92936ms)
+    ✓ LayoutSQL;n=32768 (361270ms)
+    ✓ LayoutSQL;n=65536 (1286800ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..8c642e3cfed39364c87bcf569f44d7cb9593864f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (24ms)
+    ✓ LayoutView;n=512 (95ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (927ms)
+    ✓ LayoutView;n=4096 (3246ms)
+    ✓ LayoutView;n=8192 (12853ms)
+    ✓ LayoutView;n=16384 (56118ms)
+    ✓ LayoutView;n=32768 (238405ms)
+    ✓ LayoutView;n=65536 (1200087ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (111ms)
+    ✓ LayoutSQL;n=1024 (378ms)
+    ✓ LayoutSQL;n=2048 (1356ms)
+    ✓ LayoutSQL;n=4096 (5236ms)
+    ✓ LayoutSQL;n=8192 (21551ms)
+    ✓ LayoutSQL;n=16384 (85416ms)
+    ✓ LayoutSQL;n=32768 (332041ms)
+    ✓ LayoutSQL;n=65536 (1294522ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..293ec1154805fe8d2d508fbdb5b1925fbb95c19a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (944ms)
+    ✓ LayoutView;n=4096 (3286ms)
+    ✓ LayoutView;n=8192 (12968ms)
+    ✓ LayoutView;n=16384 (57607ms)
+    ✓ LayoutView;n=32768 (247556ms)
+    ✓ LayoutView;n=65536 (1110413ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (96ms)
+    ✓ LayoutSQL;n=1024 (323ms)
+    ✓ LayoutSQL;n=2048 (1156ms)
+    ✓ LayoutSQL;n=4096 (4479ms)
+    ✓ LayoutSQL;n=8192 (19034ms)
+    ✓ LayoutSQL;n=16384 (82630ms)
+    ✓ LayoutSQL;n=32768 (306105ms)
+    ✓ LayoutSQL;n=65536 (1320387ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..ac09c3017bd94e08418c79590fc4841358f95c4f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (12ms)
+    ✓ LayoutView;n=256 (43ms)
+    ✓ LayoutView;n=512 (75ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (916ms)
+    ✓ LayoutView;n=4096 (3237ms)
+    ✓ LayoutView;n=8192 (13153ms)
+    ✓ LayoutView;n=16384 (56140ms)
+    ✓ LayoutView;n=32768 (263785ms)
+    ✓ LayoutView;n=65536 (1107475ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (326ms)
+    ✓ LayoutSQL;n=2048 (1153ms)
+    ✓ LayoutSQL;n=4096 (4563ms)
+    ✓ LayoutSQL;n=8192 (18079ms)
+    ✓ LayoutSQL;n=16384 (73091ms)
+    ✓ LayoutSQL;n=32768 (290954ms)
+    ✓ LayoutSQL;n=65536 (1268646ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..2912f0834e062a71c6914353bf9cdf230814ff0e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (42ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (941ms)
+    ✓ LayoutView;n=4096 (3311ms)
+    ✓ LayoutView;n=8192 (13335ms)
+    ✓ LayoutView;n=16384 (53869ms)
+    ✓ LayoutView;n=32768 (222038ms)
+    ✓ LayoutView;n=65536 (1153645ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (87ms)
+    ✓ LayoutSQL;n=512 (109ms)
+    ✓ LayoutSQL;n=1024 (356ms)
+    ✓ LayoutSQL;n=2048 (1269ms)
+    ✓ LayoutSQL;n=4096 (4892ms)
+    ✓ LayoutSQL;n=8192 (19766ms)
+    ✓ LayoutSQL;n=16384 (81905ms)
+    ✓ LayoutSQL;n=32768 (309171ms)
+    ✓ LayoutSQL;n=65536 (1401408ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..d61522c0b4e91ccd0abffb7ebfff7cdc973c2409
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (28ms)
+    ✓ LayoutView;n=512 (98ms)
+    ✓ LayoutView;n=1024 (245ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3359ms)
+    ✓ LayoutView;n=8192 (13620ms)
+    ✓ LayoutView;n=16384 (60992ms)
+    ✓ LayoutView;n=32768 (218526ms)
+    ✓ LayoutView;n=65536 (1164577ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (26ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (359ms)
+    ✓ LayoutSQL;n=2048 (1252ms)
+    ✓ LayoutSQL;n=4096 (4786ms)
+    ✓ LayoutSQL;n=8192 (19026ms)
+    ✓ LayoutSQL;n=16384 (78527ms)
+    ✓ LayoutSQL;n=32768 (316930ms)
+    ✓ LayoutSQL;n=65536 (1280018ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..42522c0d82c408dcd256bf886a8e46b3aed375f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (246ms)
+    ✓ LayoutView;n=2048 (945ms)
+    ✓ LayoutView;n=4096 (3273ms)
+    ✓ LayoutView;n=8192 (12870ms)
+    ✓ LayoutView;n=16384 (57550ms)
+    ✓ LayoutView;n=32768 (211668ms)
+    ✓ LayoutView;n=65536 (1105380ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (96ms)
+    ✓ LayoutSQL;n=1024 (315ms)
+    ✓ LayoutSQL;n=2048 (1133ms)
+    ✓ LayoutSQL;n=4096 (4353ms)
+    ✓ LayoutSQL;n=8192 (17252ms)
+    ✓ LayoutSQL;n=16384 (70802ms)
+    ✓ LayoutSQL;n=32768 (291707ms)
+    ✓ LayoutSQL;n=65536 (1299453ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..a1ee3745a567a1d999778ca937cc05f8bfc7acc2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (17ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (233ms)
+    ✓ LayoutView;n=2048 (902ms)
+    ✓ LayoutView;n=4096 (3150ms)
+    ✓ LayoutView;n=8192 (12670ms)
+    ✓ LayoutView;n=16384 (52253ms)
+    ✓ LayoutView;n=32768 (240058ms)
+    ✓ LayoutView;n=65536 (1105205ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (105ms)
+    ✓ LayoutSQL;n=1024 (365ms)
+    ✓ LayoutSQL;n=2048 (1327ms)
+    ✓ LayoutSQL;n=4096 (4992ms)
+    ✓ LayoutSQL;n=8192 (20094ms)
+    ✓ LayoutSQL;n=16384 (85103ms)
+    ✓ LayoutSQL;n=32768 (344493ms)
+    ✓ LayoutSQL;n=65536 (1296845ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..6dec6cbb4304c1579a50b4d47801cf6ebfa2060e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (244ms)
+    ✓ LayoutView;n=2048 (937ms)
+    ✓ LayoutView;n=4096 (3284ms)
+    ✓ LayoutView;n=8192 (13528ms)
+    ✓ LayoutView;n=16384 (58388ms)
+    ✓ LayoutView;n=32768 (249771ms)
+    ✓ LayoutView;n=65536 (1140448ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (95ms)
+    ✓ LayoutSQL;n=1024 (312ms)
+    ✓ LayoutSQL;n=2048 (1099ms)
+    ✓ LayoutSQL;n=4096 (4217ms)
+    ✓ LayoutSQL;n=8192 (16701ms)
+    ✓ LayoutSQL;n=16384 (76744ms)
+    ✓ LayoutSQL;n=32768 (313058ms)
+    ✓ LayoutSQL;n=65536 (1287508ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..015c230f0fe2a052b7d938425c0aa0291dd59fdb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 236.85
+Mediana        = 241
+Variancia      = 383.4
+Desvio Padrao  = 19.58
+Coef. Variacao = 0.08
+Min            = 211
+Max            = 268
+Esq, Dir.      = 229.6483 , 244.0517
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..42e5de6d28db0f635e507cf05451756181091fa4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 217
+1024 211
+1024 265
+1024 220
+1024 268
+1024 213
+1024 218
+1024 245
+1024 254
+1024 260
+1024 213
+1024 217
+1024 251
+1024 258
+1024 242
+1024 227
+1024 245
+1024 220
+1024 240
+1024 253
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c01acd79cde8d57a8d641b00702fa5c3b86d09ef
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 555.2
+Mediana        = 622.5
+Variancia      = 46158.06
+Desvio Padrao  = 214.84
+Coef. Variacao = 0.39
+Min            = 91
+Max            = 975
+Esq, Dir.      = 476.1802 , 634.2198
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..26f85dd6c050331359e44cee47ff984be65199f6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 595
+1024 591
+1024 634
+1024 647
+1024 645
+1024 653
+1024 639
+1024 562
+1024 631
+1024 110
+1024 540
+1024 649
+1024 562
+1024 91
+1024 622
+1024 98
+1024 975
+1024 574
+1024 623
+1024 663
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ede88f0eaa7b68c9f80fc22af0bdd49872ee1b09
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18.05
+Mediana        = 18
+Variancia      = 4.16
+Desvio Padrao  = 2.04
+Coef. Variacao = 0.11
+Min            = 15
+Max            = 23
+Esq, Dir.      = 17.3003 , 18.7997
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b7a9987074fc9eabd675480aa369a75c383ea689
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 18
+128 17
+128 18
+128 16
+128 15
+128 23
+128 18
+128 21
+128 18
+128 18
+128 17
+128 18
+128 17
+128 17
+128 23
+128 17
+128 17
+128 18
+128 17
+128 18
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..9e518b7282b60ad5e5c72794abb8f8b731a61b41
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 32.4
+Mediana        = 35
+Variancia      = 76.67
+Desvio Padrao  = 8.76
+Coef. Variacao = 0.27
+Min            = 9
+Max            = 42
+Esq, Dir.      = 29.1794 , 35.6206
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..6d98f526365003e3cf006abd1abd41479be0ba16
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 35
+128 36
+128 33
+128 30
+128 38
+128 37
+128 31
+128 31
+128 38
+128 10
+128 31
+128 42
+128 35
+128 29
+128 42
+128 9
+128 39
+128 29
+128 36
+128 37
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f1e84794da7457a658ce3ef8d6edbf380a302e59
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.35
+Mediana        = 9
+Variancia      = 0.34
+Desvio Padrao  = 0.59
+Coef. Variacao = 0.06
+Min            = 8
+Max            = 10
+Esq, Dir.      = 9.134 , 9.566
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..246ec97d9704eeb56e0d90cd8e570b07a0917b50
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
+16 10
+16 10
+16 10
+16 10
+16 9
+16 10
+16 9
+16 9
+16 10
+16 9
+16 8
+16 10
+16 9
+16 9
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..2566d75a446fb776a8f0b063a78a7fb4e5e3d7df
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 28.9
+Mediana        = 27.5
+Variancia      = 137.25
+Desvio Padrao  = 11.72
+Coef. Variacao = 0.41
+Min            = 16
+Max            = 76
+Esq, Dir.      = 24.591 , 33.209
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..74fdbd7f8f98ca98cb173c35361203f04ec2c384
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 22
+16 28
+16 27
+16 23
+16 28
+16 29
+16 28
+16 30
+16 26
+16 16
+16 26
+16 24
+16 31
+16 23
+16 28
+16 76
+16 23
+16 31
+16 32
+16 27
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..336a6920c64551b3dd424af9da239fd07d25e99b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7060
+Mediana        = 7083.5
+Variancia      = 30282
+Desvio Padrao  = 174.02
+Coef. Variacao = 0.02
+Min            = 6773
+Max            = 7397
+Esq, Dir.      = 6995.9964 , 7124.0036
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b16e29967d54f4d996c3c3318aa2210798209ab8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 7397
+16384 7076
+16384 7010
+16384 7146
+16384 6830
+16384 7342
+16384 6825
+16384 6946
+16384 6918
+16384 7095
+16384 7124
+16384 7291
+16384 7112
+16384 7069
+16384 6801
+16384 6773
+16384 7186
+16384 7053
+16384 7091
+16384 7115
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5ec6965d203354ce2af5fa8921aae8bbcaa64230
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6594.55
+Mediana        = 6622.5
+Variancia      = 40862.05
+Desvio Padrao  = 202.14
+Coef. Variacao = 0.03
+Min            = 6290
+Max            = 7107
+Esq, Dir.      = 6520.2015 , 6668.8985
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..3e15fa78ebb6ec56dc8ab1bf3044345c7abb9e77
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 6839
+16384 6410
+16384 6309
+16384 6290
+16384 6451
+16384 7107
+16384 6498
+16384 6641
+16384 6628
+16384 6621
+16384 6518
+16384 6315
+16384 6646
+16384 6828
+16384 6441
+16384 6777
+16384 6694
+16384 6648
+16384 6606
+16384 6624
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4517de54cf57dcb1322279ae9e93f24e362feac5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 838.25
+Mediana        = 823
+Variancia      = 13424.51
+Desvio Padrao  = 115.86
+Coef. Variacao = 0.14
+Min            = 712
+Max            = 1040
+Esq, Dir.      = 795.6351 , 880.8649
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..25b52920bee82b79443cb39f652fe89c00010c06
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 725
+2048 715
+2048 874
+2048 714
+2048 948
+2048 754
+2048 728
+2048 754
+2048 998
+2048 938
+2048 712
+2048 723
+2048 1040
+2048 977
+2048 925
+2048 730
+2048 872
+2048 774
+2048 983
+2048 881
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ff727321eb3c244292ea3e5120c1865967460ad0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 741.55
+Mediana        = 780.5
+Variancia      = 71849.94
+Desvio Padrao  = 268.05
+Coef. Variacao = 0.36
+Min            = 187
+Max            = 1111
+Esq, Dir.      = 642.9617 , 840.1383
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..202b6a611f79a8ae31701d4e8f3d408744eb81d1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 971
+2048 627
+2048 994
+2048 692
+2048 875
+2048 677
+2048 873
+2048 763
+2048 966
+2048 189
+2048 1111
+2048 905
+2048 798
+2048 187
+2048 728
+2048 197
+2048 944
+2048 898
+2048 735
+2048 701
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5b125290e0fd1a3cbfce8ad61c855e03e11e8c5f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 30.15
+Mediana        = 30
+Variancia      = 4.24
+Desvio Padrao  = 2.06
+Coef. Variacao = 0.07
+Min            = 27
+Max            = 37
+Esq, Dir.      = 29.3927 , 30.9073
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..68e821971be094105564cc2e65cc80be18583b4f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 29
+256 29
+256 32
+256 30
+256 27
+256 30
+256 29
+256 37
+256 29
+256 29
+256 32
+256 30
+256 28
+256 30
+256 30
+256 32
+256 31
+256 30
+256 30
+256 29
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..77710bb80595343560034b61fc190f90789c2d09
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 77.15
+Mediana        = 80
+Variancia      = 293.5
+Desvio Padrao  = 17.13
+Coef. Variacao = 0.22
+Min            = 29
+Max            = 98
+Esq, Dir.      = 70.8489 , 83.4511
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..65737371435aacae3cbe231a75a072eae1008c96
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 93
+256 79
+256 78
+256 82
+256 84
+256 83
+256 82
+256 66
+256 79
+256 61
+256 71
+256 97
+256 80
+256 47
+256 95
+256 29
+256 98
+256 66
+256 80
+256 93
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4ad8a842a536b88ba12995da4748cf86885a254b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.55
+Mediana        = 5
+Variancia      = 0.26
+Desvio Padrao  = 0.51
+Coef. Variacao = 0.11
+Min            = 4
+Max            = 5
+Esq, Dir.      = 4.3623 , 4.7377
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..71b8a5301986f0d8853e64c1ef4ac36df6dda86c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..68c9079d090ae58db61765cf661df95c550c143c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 10.1
+Mediana        = 10
+Variancia      = 7.46
+Desvio Padrao  = 2.73
+Coef. Variacao = 0.27
+Min            = 3
+Max            = 15
+Esq, Dir.      = 9.0952 , 11.1048
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4e6f9197961a489fa36c339fabb90fbac71cc5dc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 10
+32 10
+32 10
+32 9
+32 11
+32 12
+32 9
+32 10
+32 10
+32 3
+32 9
+32 10
+32 11
+32 8
+32 12
+32 5
+32 15
+32 11
+32 13
+32 14
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ebb813436e85fece3e03ddbe695a35c1b2ad0401
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 32206.5
+Mediana        = 32480.5
+Variancia      = 1562870.16
+Desvio Padrao  = 1250.15
+Coef. Variacao = 0.04
+Min            = 30180
+Max            = 34491
+Esq, Dir.      = 31746.695 , 32666.305
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bcdf8339167f7734d76d618a9776c32d21663000
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 32650
+32768 31660
+32768 31257
+32768 30347
+32768 32627
+32768 34491
+32768 32319
+32768 30180
+32768 30228
+32768 33725
+32768 33814
+32768 33048
+32768 31767
+32768 32727
+32768 30268
+32768 31944
+32768 32906
+32768 32937
+32768 32901
+32768 32334
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f65164a62ef8f03dd068cd500fe26e6c9cadadf1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 26508.15
+Mediana        = 26503
+Variancia      = 1153449.5
+Desvio Padrao  = 1073.99
+Coef. Variacao = 0.04
+Min            = 25121
+Max            = 29213
+Esq, Dir.      = 26113.1369 , 26903.1631
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..9cbc1a0fab26bd3b2cece085bb4d82bfbdd2289f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 28136
+32768 25285
+32768 25602
+32768 26059
+32768 27455
+32768 29213
+32768 26620
+32768 25381
+32768 26702
+32768 27214
+32768 25324
+32768 26806
+32768 26544
+32768 27330
+32768 26462
+32768 27455
+32768 25858
+32768 25121
+32768 26181
+32768 25415
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..941d26dc4ca7f7c52a9562c4711ef2be3b01c35f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4204.9
+Mediana        = 4219
+Variancia      = 200299.67
+Desvio Padrao  = 447.55
+Coef. Variacao = 0.11
+Min            = 3469
+Max            = 4842
+Esq, Dir.      = 4040.2915 , 4369.5085
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..161ff904865983e01fc1836ede784ca28c792324
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 3688
+4096 3744
+4096 4229
+4096 3755
+4096 4842
+4096 4166
+4096 3681
+4096 3619
+4096 4615
+4096 4607
+4096 3469
+4096 3771
+4096 4598
+4096 4631
+4096 4209
+4096 4595
+4096 4643
+4096 4025
+4096 4654
+4096 4557
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..afdb4134ef1e94e3a4524e12df511478224f5134
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 586.75
+Mediana        = 579
+Variancia      = 3066.93
+Desvio Padrao  = 55.38
+Coef. Variacao = 0.09
+Min            = 512
+Max            = 717
+Esq, Dir.      = 566.3812 , 607.1188
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..df96f0e79511e7e5842efdd7be0b981974d4f53e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 572
+4096 530
+4096 672
+4096 512
+4096 528
+4096 594
+4096 587
+4096 571
+4096 616
+4096 537
+4096 624
+4096 592
+4096 586
+4096 550
+4096 717
+4096 557
+4096 564
+4096 679
+4096 623
+4096 524
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0b1e1705ba8c365128ea80284432952eba36e155
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 73
+Mediana        = 74.5
+Variancia      = 157.89
+Desvio Padrao  = 12.57
+Coef. Variacao = 0.17
+Min            = 53
+Max            = 93
+Esq, Dir.      = 68.3784 , 77.6216
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..fc7c8cd055a3f6a27d60db5ca19b536998cb3da1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 59
+512 77
+512 64
+512 53
+512 60
+512 82
+512 77
+512 81
+512 59
+512 61
+512 60
+512 70
+512 72
+512 90
+512 93
+512 61
+512 83
+512 89
+512 83
+512 86
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..da22af1252e00eddd0a2b4ef4f260fff4be564b0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 175.85
+Mediana        = 193.5
+Variancia      = 3300.98
+Desvio Padrao  = 57.45
+Coef. Variacao = 0.33
+Min            = 30
+Max            = 253
+Esq, Dir.      = 154.7183 , 196.9817
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..890d5df298b6fc3b1f45553c73f050353fe59390
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 196
+512 201
+512 198
+512 219
+512 199
+512 191
+512 192
+512 160
+512 191
+512 30
+512 165
+512 203
+512 209
+512 110
+512 253
+512 32
+512 229
+512 158
+512 186
+512 195
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f547f5dd2801f72d9d0bdaae2bb7b77d19dcf098
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.75
+Mediana        = 9
+Variancia      = 1.46
+Desvio Padrao  = 1.21
+Coef. Variacao = 0.12
+Min            = 9
+Max            = 14
+Esq, Dir.      = 9.3055 , 10.1945
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a2454012c286fcac21973dc65390a1ed738d4d36
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 9
+64 9
+64 10
+64 9
+64 9
+64 11
+64 10
+64 11
+64 9
+64 10
+64 9
+64 10
+64 9
+64 9
+64 14
+64 9
+64 10
+64 9
+64 9
+64 10
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0c4dc0a21151591acd301d44cb20a4bf43a646bb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 35.95
+Mediana        = 21
+Variancia      = 509.73
+Desvio Padrao  = 22.58
+Coef. Variacao = 0.63
+Min            = 6
+Max            = 67
+Esq, Dir.      = 27.6461 , 44.2539
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..639cfd7ab3c2c48910e7e7b146f233f6185035d3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 17
+64 58
+64 56
+64 48
+64 20
+64 61
+64 57
+64 63
+64 18
+64 10
+64 18
+64 18
+64 21
+64 14
+64 21
+64 6
+64 19
+64 63
+64 64
+64 67
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d2da5b13def8690072d08ff9378058702a4c3cc1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 126771.8
+Mediana        = 126159
+Variancia      = 63428410.91
+Desvio Padrao  = 7964.2
+Coef. Variacao = 0.06
+Min            = 110319
+Max            = 142667
+Esq, Dir.      = 123842.5653 , 129701.0347
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4521f877a44133c8dea1c4e59b68e9c2b42fa4d0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 142667
+65536 124400
+65536 124345
+65536 127328
+65536 131390
+65536 123654
+65536 139722
+65536 110319
+65536 132519
+65536 125051
+65536 125103
+65536 128618
+65536 127215
+65536 136132
+65536 123912
+65536 129868
+65536 124985
+65536 113758
+65536 129626
+65536 114824
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c27d5c515084591701828a873323c6b6b9c97769
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 112997.7
+Mediana        = 112253.5
+Variancia      = 91106857.06
+Desvio Padrao  = 9544.99
+Coef. Variacao = 0.08
+Min            = 97588
+Max            = 125042
+Esq, Dir.      = 109487.0479 , 116508.3521
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c3ee00564374eeb5551b9af99ef5aa7712fe22eb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 123995
+65536 99696
+65536 121875
+65536 97588
+65536 123009
+65536 122941
+65536 105341
+65536 105851
+65536 125042
+65536 118267
+65536 107093
+65536 112587
+65536 100163
+65536 118519
+65536 102443
+65536 124791
+65536 106536
+65536 109375
+65536 122922
+65536 111920
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..32d7b3b9051e8c0cb9dd7286d0dc261cec7abdf1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2146.85
+Mediana        = 2146
+Variancia      = 4278.13
+Desvio Padrao  = 65.41
+Coef. Variacao = 0.03
+Min            = 2040
+Max            = 2280
+Esq, Dir.      = 2122.7931 , 2170.9069
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..569097693898c4296d3041621d3822a235a474bd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 2156
+8192 2216
+8192 2163
+8192 2220
+8192 2063
+8192 2197
+8192 2088
+8192 2175
+8192 2226
+8192 2280
+8192 2210
+8192 2137
+8192 2148
+8192 2094
+8192 2040
+8192 2054
+8192 2141
+8192 2101
+8192 2144
+8192 2084
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..7d94812bdc3105c810d8e8eff8d48ef0448079ab
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1925.55
+Mediana        = 1915.5
+Variancia      = 9475.52
+Desvio Padrao  = 97.34
+Coef. Variacao = 0.05
+Min            = 1723
+Max            = 2155
+Esq, Dir.      = 1889.7475 , 1961.3525
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..304452ca99e23913445d09e07a02f33b5b237a9d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 2003
+8192 1888
+8192 1800
+8192 1723
+8192 1850
+8192 2072
+8192 1987
+8192 1956
+8192 1955
+8192 1858
+8192 1911
+8192 1807
+8192 2006
+8192 1901
+8192 1887
+8192 1920
+8192 1949
+8192 1973
+8192 1910
+8192 2155
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..cbd9a7a0d41a8697c5814640a4baba984410f8b3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (18ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (71ms)
+    ✓ LayoutView;n=512 (165ms)
+    ✓ LayoutView;n=1024 (540ms)
+    ✓ LayoutView;n=2048 (1111ms)
+    ✓ LayoutView;n=4096 (624ms)
+    ✓ LayoutView;n=8192 (1911ms)
+    ✓ LayoutView;n=16384 (6518ms)
+    ✓ LayoutView;n=32768 (25324ms)
+    ✓ LayoutView;n=65536 (107093ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (213ms)
+    ✓ LayoutSQL;n=2048 (712ms)
+    ✓ LayoutSQL;n=4096 (3469ms)
+    ✓ LayoutSQL;n=8192 (2210ms)
+    ✓ LayoutSQL;n=16384 (7124ms)
+    ✓ LayoutSQL;n=32768 (33814ms)
+    ✓ LayoutSQL;n=65536 (125103ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..06cfda5a54179e528dcb73fc70c39bc450d26c78
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (10ms)
+    ✓ LayoutView;n=128 (10ms)
+    ✓ LayoutView;n=256 (61ms)
+    ✓ LayoutView;n=512 (30ms)
+    ✓ LayoutView;n=1024 (110ms)
+    ✓ LayoutView;n=2048 (189ms)
+    ✓ LayoutView;n=4096 (537ms)
+    ✓ LayoutView;n=8192 (1858ms)
+    ✓ LayoutView;n=16384 (6621ms)
+    ✓ LayoutView;n=32768 (27214ms)
+    ✓ LayoutView;n=65536 (118267ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (61ms)
+    ✓ LayoutSQL;n=1024 (260ms)
+    ✓ LayoutSQL;n=2048 (938ms)
+    ✓ LayoutSQL;n=4096 (4607ms)
+    ✓ LayoutSQL;n=8192 (2280ms)
+    ✓ LayoutSQL;n=16384 (7095ms)
+    ✓ LayoutSQL;n=32768 (33725ms)
+    ✓ LayoutSQL;n=65536 (125051ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..c0aa78a51093378b877317e03d6135793818559d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (67ms)
+    ✓ LayoutView;n=128 (37ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (195ms)
+    ✓ LayoutView;n=1024 (663ms)
+    ✓ LayoutView;n=2048 (701ms)
+    ✓ LayoutView;n=4096 (524ms)
+    ✓ LayoutView;n=8192 (2155ms)
+    ✓ LayoutView;n=16384 (6624ms)
+    ✓ LayoutView;n=32768 (25415ms)
+    ✓ LayoutView;n=65536 (111920ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (86ms)
+    ✓ LayoutSQL;n=1024 (253ms)
+    ✓ LayoutSQL;n=2048 (881ms)
+    ✓ LayoutSQL;n=4096 (4557ms)
+    ✓ LayoutSQL;n=8192 (2084ms)
+    ✓ LayoutSQL;n=16384 (7115ms)
+    ✓ LayoutSQL;n=32768 (32334ms)
+    ✓ LayoutSQL;n=65536 (114824ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..e6c39be58b39a91bccac2c22c86e1e970270ba93
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (66ms)
+    ✓ LayoutView;n=512 (160ms)
+    ✓ LayoutView;n=1024 (562ms)
+    ✓ LayoutView;n=2048 (763ms)
+    ✓ LayoutView;n=4096 (571ms)
+    ✓ LayoutView;n=8192 (1956ms)
+    ✓ LayoutView;n=16384 (6641ms)
+    ✓ LayoutView;n=32768 (25381ms)
+    ✓ LayoutView;n=65536 (105851ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (81ms)
+    ✓ LayoutSQL;n=1024 (245ms)
+    ✓ LayoutSQL;n=2048 (754ms)
+    ✓ LayoutSQL;n=4096 (3619ms)
+    ✓ LayoutSQL;n=8192 (2175ms)
+    ✓ LayoutSQL;n=16384 (6946ms)
+    ✓ LayoutSQL;n=32768 (30180ms)
+    ✓ LayoutSQL;n=65536 (110319ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..5a7f12a52ec5bb9007e6523fe551a7202487f24a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (76ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (9ms)
+    ✓ LayoutView;n=256 (29ms)
+    ✓ LayoutView;n=512 (32ms)
+    ✓ LayoutView;n=1024 (98ms)
+    ✓ LayoutView;n=2048 (197ms)
+    ✓ LayoutView;n=4096 (557ms)
+    ✓ LayoutView;n=8192 (1920ms)
+    ✓ LayoutView;n=16384 (6777ms)
+    ✓ LayoutView;n=32768 (27455ms)
+    ✓ LayoutView;n=65536 (124791ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (61ms)
+    ✓ LayoutSQL;n=1024 (227ms)
+    ✓ LayoutSQL;n=2048 (730ms)
+    ✓ LayoutSQL;n=4096 (4595ms)
+    ✓ LayoutSQL;n=8192 (2054ms)
+    ✓ LayoutSQL;n=16384 (6773ms)
+    ✓ LayoutSQL;n=32768 (31944ms)
+    ✓ LayoutSQL;n=65536 (129868ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..56726493d4aac7452424226ac245281e66ad39c5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (48ms)
+    ✓ LayoutView;n=128 (30ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (219ms)
+    ✓ LayoutView;n=1024 (647ms)
+    ✓ LayoutView;n=2048 (692ms)
+    ✓ LayoutView;n=4096 (512ms)
+    ✓ LayoutView;n=8192 (1723ms)
+    ✓ LayoutView;n=16384 (6290ms)
+    ✓ LayoutView;n=32768 (26059ms)
+    ✓ LayoutView;n=65536 (97588ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (53ms)
+    ✓ LayoutSQL;n=1024 (220ms)
+    ✓ LayoutSQL;n=2048 (714ms)
+    ✓ LayoutSQL;n=4096 (3755ms)
+    ✓ LayoutSQL;n=8192 (2220ms)
+    ✓ LayoutSQL;n=16384 (7146ms)
+    ✓ LayoutSQL;n=32768 (30347ms)
+    ✓ LayoutSQL;n=65536 (127328ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..609fc0dee81832c126613c5d563c919ab24aee03
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (57ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (192ms)
+    ✓ LayoutView;n=1024 (639ms)
+    ✓ LayoutView;n=2048 (873ms)
+    ✓ LayoutView;n=4096 (587ms)
+    ✓ LayoutView;n=8192 (1987ms)
+    ✓ LayoutView;n=16384 (6498ms)
+    ✓ LayoutView;n=32768 (26620ms)
+    ✓ LayoutView;n=65536 (105341ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (77ms)
+    ✓ LayoutSQL;n=1024 (218ms)
+    ✓ LayoutSQL;n=2048 (728ms)
+    ✓ LayoutSQL;n=4096 (3681ms)
+    ✓ LayoutSQL;n=8192 (2088ms)
+    ✓ LayoutSQL;n=16384 (6825ms)
+    ✓ LayoutSQL;n=32768 (32319ms)
+    ✓ LayoutSQL;n=65536 (139722ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..54194d7d6ea11222b4c2704d362e9929f9ffdbfa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (13ms)
+    ✓ LayoutView;n=64 (64ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (80ms)
+    ✓ LayoutView;n=512 (186ms)
+    ✓ LayoutView;n=1024 (623ms)
+    ✓ LayoutView;n=2048 (735ms)
+    ✓ LayoutView;n=4096 (623ms)
+    ✓ LayoutView;n=8192 (1910ms)
+    ✓ LayoutView;n=16384 (6606ms)
+    ✓ LayoutView;n=32768 (26181ms)
+    ✓ LayoutView;n=65536 (122922ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (240ms)
+    ✓ LayoutSQL;n=2048 (983ms)
+    ✓ LayoutSQL;n=4096 (4654ms)
+    ✓ LayoutSQL;n=8192 (2144ms)
+    ✓ LayoutSQL;n=16384 (7091ms)
+    ✓ LayoutSQL;n=32768 (32901ms)
+    ✓ LayoutSQL;n=65536 (129626ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..12818cb86b6bbbd6aef98b7bb09d0921fa55bdd4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (24ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (18ms)
+    ✓ LayoutView;n=128 (42ms)
+    ✓ LayoutView;n=256 (97ms)
+    ✓ LayoutView;n=512 (203ms)
+    ✓ LayoutView;n=1024 (649ms)
+    ✓ LayoutView;n=2048 (905ms)
+    ✓ LayoutView;n=4096 (592ms)
+    ✓ LayoutView;n=8192 (1807ms)
+    ✓ LayoutView;n=16384 (6315ms)
+    ✓ LayoutView;n=32768 (26806ms)
+    ✓ LayoutView;n=65536 (112587ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (70ms)
+    ✓ LayoutSQL;n=1024 (217ms)
+    ✓ LayoutSQL;n=2048 (723ms)
+    ✓ LayoutSQL;n=4096 (3771ms)
+    ✓ LayoutSQL;n=8192 (2137ms)
+    ✓ LayoutSQL;n=16384 (7291ms)
+    ✓ LayoutSQL;n=32768 (33048ms)
+    ✓ LayoutSQL;n=65536 (128618ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..e14567a652dd58c8ecfa388c9eea544b5e02f193
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (29ms)
+    ✓ LayoutView;n=256 (66ms)
+    ✓ LayoutView;n=512 (158ms)
+    ✓ LayoutView;n=1024 (574ms)
+    ✓ LayoutView;n=2048 (898ms)
+    ✓ LayoutView;n=4096 (679ms)
+    ✓ LayoutView;n=8192 (1973ms)
+    ✓ LayoutView;n=16384 (6648ms)
+    ✓ LayoutView;n=32768 (25121ms)
+    ✓ LayoutView;n=65536 (109375ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (89ms)
+    ✓ LayoutSQL;n=1024 (220ms)
+    ✓ LayoutSQL;n=2048 (774ms)
+    ✓ LayoutSQL;n=4096 (4025ms)
+    ✓ LayoutSQL;n=8192 (2101ms)
+    ✓ LayoutSQL;n=16384 (7053ms)
+    ✓ LayoutSQL;n=32768 (32937ms)
+    ✓ LayoutSQL;n=65536 (113758ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..50e8632539255392e9e504c356cb9edf6660226c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (22ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (196ms)
+    ✓ LayoutView;n=1024 (595ms)
+    ✓ LayoutView;n=2048 (971ms)
+    ✓ LayoutView;n=4096 (572ms)
+    ✓ LayoutView;n=8192 (2003ms)
+    ✓ LayoutView;n=16384 (6839ms)
+    ✓ LayoutView;n=32768 (28136ms)
+    ✓ LayoutView;n=65536 (123995ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (59ms)
+    ✓ LayoutSQL;n=1024 (217ms)
+    ✓ LayoutSQL;n=2048 (725ms)
+    ✓ LayoutSQL;n=4096 (3688ms)
+    ✓ LayoutSQL;n=8192 (2156ms)
+    ✓ LayoutSQL;n=16384 (7397ms)
+    ✓ LayoutSQL;n=32768 (32650ms)
+    ✓ LayoutSQL;n=65536 (142667ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..6020356d1692b425ed32f511cd25cb23fedc3980
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (56ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (78ms)
+    ✓ LayoutView;n=512 (198ms)
+    ✓ LayoutView;n=1024 (634ms)
+    ✓ LayoutView;n=2048 (994ms)
+    ✓ LayoutView;n=4096 (672ms)
+    ✓ LayoutView;n=8192 (1800ms)
+    ✓ LayoutView;n=16384 (6309ms)
+    ✓ LayoutView;n=32768 (25602ms)
+    ✓ LayoutView;n=65536 (121875ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (64ms)
+    ✓ LayoutSQL;n=1024 (265ms)
+    ✓ LayoutSQL;n=2048 (874ms)
+    ✓ LayoutSQL;n=4096 (4229ms)
+    ✓ LayoutSQL;n=8192 (2163ms)
+    ✓ LayoutSQL;n=16384 (7010ms)
+    ✓ LayoutSQL;n=32768 (31257ms)
+    ✓ LayoutSQL;n=65536 (124345ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..efb326ee8de81339fe3072a3927fda995eed2713
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (58ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (79ms)
+    ✓ LayoutView;n=512 (201ms)
+    ✓ LayoutView;n=1024 (591ms)
+    ✓ LayoutView;n=2048 (627ms)
+    ✓ LayoutView;n=4096 (530ms)
+    ✓ LayoutView;n=8192 (1888ms)
+    ✓ LayoutView;n=16384 (6410ms)
+    ✓ LayoutView;n=32768 (25285ms)
+    ✓ LayoutView;n=65536 (99696ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (77ms)
+    ✓ LayoutSQL;n=1024 (211ms)
+    ✓ LayoutSQL;n=2048 (715ms)
+    ✓ LayoutSQL;n=4096 (3744ms)
+    ✓ LayoutSQL;n=8192 (2216ms)
+    ✓ LayoutSQL;n=16384 (7076ms)
+    ✓ LayoutSQL;n=32768 (31660ms)
+    ✓ LayoutSQL;n=65536 (124400ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..b856af6a953b29611db4543c8567e00c7f7d53db
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (15ms)
+    ✓ LayoutView;n=64 (19ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (98ms)
+    ✓ LayoutView;n=512 (229ms)
+    ✓ LayoutView;n=1024 (975ms)
+    ✓ LayoutView;n=2048 (944ms)
+    ✓ LayoutView;n=4096 (564ms)
+    ✓ LayoutView;n=8192 (1949ms)
+    ✓ LayoutView;n=16384 (6694ms)
+    ✓ LayoutView;n=32768 (25858ms)
+    ✓ LayoutView;n=65536 (106536ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (245ms)
+    ✓ LayoutSQL;n=2048 (872ms)
+    ✓ LayoutSQL;n=4096 (4643ms)
+    ✓ LayoutSQL;n=8192 (2141ms)
+    ✓ LayoutSQL;n=16384 (7186ms)
+    ✓ LayoutSQL;n=32768 (32906ms)
+    ✓ LayoutSQL;n=65536 (124985ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..5e9a10478b248fd93a15c4903ae31204b756a11b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (21ms)
+    ✓ LayoutView;n=128 (42ms)
+    ✓ LayoutView;n=256 (95ms)
+    ✓ LayoutView;n=512 (253ms)
+    ✓ LayoutView;n=1024 (622ms)
+    ✓ LayoutView;n=2048 (728ms)
+    ✓ LayoutView;n=4096 (717ms)
+    ✓ LayoutView;n=8192 (1887ms)
+    ✓ LayoutView;n=16384 (6441ms)
+    ✓ LayoutView;n=32768 (26462ms)
+    ✓ LayoutView;n=65536 (102443ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (14ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (93ms)
+    ✓ LayoutSQL;n=1024 (242ms)
+    ✓ LayoutSQL;n=2048 (925ms)
+    ✓ LayoutSQL;n=4096 (4209ms)
+    ✓ LayoutSQL;n=8192 (2040ms)
+    ✓ LayoutSQL;n=16384 (6801ms)
+    ✓ LayoutSQL;n=32768 (30268ms)
+    ✓ LayoutSQL;n=65536 (123912ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..f1f6de34b58ac643a0ace5b7862d2f004ceebbc8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (20ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (199ms)
+    ✓ LayoutView;n=1024 (645ms)
+    ✓ LayoutView;n=2048 (875ms)
+    ✓ LayoutView;n=4096 (528ms)
+    ✓ LayoutView;n=8192 (1850ms)
+    ✓ LayoutView;n=16384 (6451ms)
+    ✓ LayoutView;n=32768 (27455ms)
+    ✓ LayoutView;n=65536 (123009ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (15ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (268ms)
+    ✓ LayoutSQL;n=2048 (948ms)
+    ✓ LayoutSQL;n=4096 (4842ms)
+    ✓ LayoutSQL;n=8192 (2063ms)
+    ✓ LayoutSQL;n=16384 (6830ms)
+    ✓ LayoutSQL;n=32768 (32627ms)
+    ✓ LayoutSQL;n=65536 (131390ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..83f04b055b50ccebf7ec36704ed93bfae6f8d35d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (61ms)
+    ✓ LayoutView;n=128 (37ms)
+    ✓ LayoutView;n=256 (83ms)
+    ✓ LayoutView;n=512 (191ms)
+    ✓ LayoutView;n=1024 (653ms)
+    ✓ LayoutView;n=2048 (677ms)
+    ✓ LayoutView;n=4096 (594ms)
+    ✓ LayoutView;n=8192 (2072ms)
+    ✓ LayoutView;n=16384 (7107ms)
+    ✓ LayoutView;n=32768 (29213ms)
+    ✓ LayoutView;n=65536 (122941ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (82ms)
+    ✓ LayoutSQL;n=1024 (213ms)
+    ✓ LayoutSQL;n=2048 (754ms)
+    ✓ LayoutSQL;n=4096 (4166ms)
+    ✓ LayoutSQL;n=8192 (2197ms)
+    ✓ LayoutSQL;n=16384 (7342ms)
+    ✓ LayoutSQL;n=32768 (34491ms)
+    ✓ LayoutSQL;n=65536 (123654ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..d95ec369cef8dd4e086b71c9849c759cc9723882
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (21ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (80ms)
+    ✓ LayoutView;n=512 (209ms)
+    ✓ LayoutView;n=1024 (562ms)
+    ✓ LayoutView;n=2048 (798ms)
+    ✓ LayoutView;n=4096 (586ms)
+    ✓ LayoutView;n=8192 (2006ms)
+    ✓ LayoutView;n=16384 (6646ms)
+    ✓ LayoutView;n=32768 (26544ms)
+    ✓ LayoutView;n=65536 (100163ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (72ms)
+    ✓ LayoutSQL;n=1024 (251ms)
+    ✓ LayoutSQL;n=2048 (1040ms)
+    ✓ LayoutSQL;n=4096 (4598ms)
+    ✓ LayoutSQL;n=8192 (2148ms)
+    ✓ LayoutSQL;n=16384 (7112ms)
+    ✓ LayoutSQL;n=32768 (31767ms)
+    ✓ LayoutSQL;n=65536 (127215ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..985a6ce22c367af20a1f46509ca38c5d4360a221
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (18ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (79ms)
+    ✓ LayoutView;n=512 (191ms)
+    ✓ LayoutView;n=1024 (631ms)
+    ✓ LayoutView;n=2048 (966ms)
+    ✓ LayoutView;n=4096 (616ms)
+    ✓ LayoutView;n=8192 (1955ms)
+    ✓ LayoutView;n=16384 (6628ms)
+    ✓ LayoutView;n=32768 (26702ms)
+    ✓ LayoutView;n=65536 (125042ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (59ms)
+    ✓ LayoutSQL;n=1024 (254ms)
+    ✓ LayoutSQL;n=2048 (998ms)
+    ✓ LayoutSQL;n=4096 (4615ms)
+    ✓ LayoutSQL;n=8192 (2226ms)
+    ✓ LayoutSQL;n=16384 (6918ms)
+    ✓ LayoutSQL;n=32768 (30228ms)
+    ✓ LayoutSQL;n=65536 (132519ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..fc14cd3df286416aa8305c2d8699b6dd6fb060fd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (8ms)
+    ✓ LayoutView;n=64 (14ms)
+    ✓ LayoutView;n=128 (29ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (110ms)
+    ✓ LayoutView;n=1024 (91ms)
+    ✓ LayoutView;n=2048 (187ms)
+    ✓ LayoutView;n=4096 (550ms)
+    ✓ LayoutView;n=8192 (1901ms)
+    ✓ LayoutView;n=16384 (6828ms)
+    ✓ LayoutView;n=32768 (27330ms)
+    ✓ LayoutView;n=65536 (118519ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (90ms)
+    ✓ LayoutSQL;n=1024 (258ms)
+    ✓ LayoutSQL;n=2048 (977ms)
+    ✓ LayoutSQL;n=4096 (4631ms)
+    ✓ LayoutSQL;n=8192 (2094ms)
+    ✓ LayoutSQL;n=16384 (7069ms)
+    ✓ LayoutSQL;n=32768 (32727ms)
+    ✓ LayoutSQL;n=65536 (136132ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..92f0d37f90c3c2505ae9e92907de058812cf92cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   99600 ms: Mark-sweep 1321.0 (1434.7) -> 1321.0 (1434.7) MB, 6077.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  106226 ms: Mark-sweep 1321.0 (1434.7) -> 1320.9 (1434.7) MB, 6626.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  111987 ms: Mark-sweep 1320.9 (1434.7) -> 1328.1 (1414.7) MB, 5760.1 / 0.0 ms [last resort gc].
+  117418 ms: Mark-sweep 1328.1 (1414.7) -> 1335.2 (1414.7) MB, 5430.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1fdb74acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x34e72caacf87] (this=0x1f66c80173f9 <a Graph with map 0x314e5f570891>,idV=0xd2606ee8c91 <String[9]: dim:12906>,idU=0x386c72723d99 <String[9]: dim:12907>,value=0x300bd5360cd9 <a View with map 0x314e5f5734e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x34e72ca903d5] (this=0x1f66c80173f9 <a Graph with map 0x314e5f5708...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x34e72c1079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..5e9de459b558d611935153e744c4635f029b7e12
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  122657 ms: Mark-sweep 1330.8 (1422.7) -> 1330.8 (1422.7) MB, 5856.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  126943 ms: Mark-sweep 1330.8 (1422.7) -> 1330.8 (1436.7) MB, 4285.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  131303 ms: Mark-sweep 1330.8 (1436.7) -> 1335.2 (1412.7) MB, 4359.1 / 0.0 ms [last resort gc].
+  135680 ms: Mark-sweep 1335.2 (1412.7) -> 1339.5 (1412.7) MB, 4377.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x37ea91dcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x223f93bcf758] (this=0x29f77a4f97f1 <a Graph with map 0x22e39d684371>,idV=0x20b97f63afc9 <String[9]: dim:13098>,idU=0x20b97f6a6121 <String[9]: dim:13099>,value=0x23a064413201 <a View with map 0x22e39d686fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x223f93bb3415] (this=0x29f77a4f97f1 <a Graph with map 0x22e39d684...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x223f932079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..ebbfd8b6e56cd78ffb08074c4925c5436967c589
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  100426 ms: Mark-sweep 1324.3 (1434.7) -> 1324.3 (1434.7) MB, 7792.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  108044 ms: Mark-sweep 1324.3 (1434.7) -> 1324.2 (1434.7) MB, 7617.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  114166 ms: Mark-sweep 1324.2 (1434.7) -> 1329.9 (1416.7) MB, 6122.0 / 0.0 ms [last resort gc].
+  120532 ms: Mark-sweep 1329.9 (1416.7) -> 1335.6 (1416.7) MB, 6366.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x17ae775cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1195c79b5238] (this=0x2df6278cd479 <a Graph with map 0x15bef9a84421>,idV=0xf7391660609 <String[9]: dim:13374>,idU=0xf7391672779 <String[9]: dim:13375>,value=0x2862987aa1a9 <a View with map 0x15bef9a87079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1195c799bdd5] (this=0x2df6278cd479 <a Graph with map 0x15bef9a8442...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1195c70079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..cdb03c491cab6fa7b06da4b713ecb54d299f3f78
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   88748 ms: Mark-sweep 1327.1 (1434.7) -> 1323.9 (1434.7) MB, 4952.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   93521 ms: Mark-sweep 1323.9 (1434.7) -> 1323.9 (1434.7) MB, 4772.5 / 0.0 ms [allocation failure] [GC in old space requested].
+   98244 ms: Mark-sweep 1323.9 (1434.7) -> 1327.8 (1418.7) MB, 4722.3 / 0.0 ms [last resort gc].
+  104511 ms: Mark-sweep 1327.8 (1418.7) -> 1331.8 (1417.7) MB, 6266.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2341ce7cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x66b0027ca18] (this=0x231e6c5c7551 <a Graph with map 0x3dd0a4570579>,idV=0x1e6ef2a6c639 <String[9]: dim:13354>,idU=0x1e6ef2a051a1 <String[9]: dim:13355>,value=0x3c87f89e1dd9 <a View with map 0x3dd0a45731d1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x66b002783d5] (this=0x231e6c5c7551 <a Graph with map 0x3dd0a457057...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x66aff9079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..4487fff0fc40f1cefa2ce86cf1346740d119fd14
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92088 ms: Mark-sweep 1320.3 (1434.7) -> 1320.2 (1434.7) MB, 6423.9 / 0.1 ms [allocation failure] [GC in old space requested].
+   98455 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 6366.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  104787 ms: Mark-sweep 1320.2 (1434.7) -> 1326.0 (1415.7) MB, 6330.8 / 0.0 ms [last resort gc].
+  110975 ms: Mark-sweep 1326.0 (1415.7) -> 1331.9 (1415.7) MB, 6188.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x39a73f9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1311548a0a67] (this=0x357e1dff23b9 <a Graph with map 0xe49cb170521>,idV=0x55594d98739 <String[9]: dim:12806>,idU=0x55594d5efb9 <String[9]: dim:12807>,value=0x13fe398065f1 <a View with map 0xe49cb173179>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x131154886435] (this=0x357e1dff23b9 <a Graph with map 0xe49cb170521>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x131153f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..9d6f542a992bcede96d1d9c53e9ce92fb206eb05
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   89486 ms: Mark-sweep 1324.2 (1436.7) -> 1322.3 (1436.7) MB, 5618.0 / 0.0 ms [allocation failure] [GC in old space requested].
+   95851 ms: Mark-sweep 1322.3 (1436.7) -> 1322.3 (1436.7) MB, 6364.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  102106 ms: Mark-sweep 1322.3 (1436.7) -> 1326.1 (1413.7) MB, 6254.4 / 0.0 ms [last resort gc].
+  108998 ms: Mark-sweep 1326.1 (1413.7) -> 1330.1 (1413.7) MB, 6891.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2f5b7dbcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x21e13ec899c7] (this=0x1ec2690d25e9 <a Graph with map 0x26bbf7770941>,idV=0x340afb385499 <String[9]: dim:13125>,idU=0x340afb316f79 <String[9]: dim:13126>,value=0x375e078e8931 <a View with map 0x26bbf7773599>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x21e13ec99715] (this=0x1ec2690d25e9 <a Graph with map 0x26bbf7770...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x21e13e3079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..4b627cb25b15444ba1b5d237083d87a14d1f3c0a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   95323 ms: Mark-sweep 1324.9 (1436.7) -> 1322.6 (1436.7) MB, 6909.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  101225 ms: Mark-sweep 1322.6 (1436.7) -> 1322.6 (1436.7) MB, 5902.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  107228 ms: Mark-sweep 1322.6 (1436.7) -> 1326.3 (1413.7) MB, 6001.8 / 0.0 ms [last resort gc].
+  113905 ms: Mark-sweep 1326.3 (1413.7) -> 1330.0 (1413.7) MB, 6676.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x195585ecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x30b34a6df4b2] (this=0x31ac909b0461 <a Graph with map 0x89978370839>,idV=0x70a8fc43061 <String[9]: dim:13175>,idU=0x70a8fc296a1 <String[9]: dim:13176>,value=0x14d368ec7519 <a View with map 0x89978373491>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x30b34a6b0455] (this=0x31ac909b0461 <a Graph with map 0x89978370839>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x30b349d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..0fb724fecddc6babf13bc8ffd5c239c6ad9179eb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   98756 ms: Mark-sweep 1324.4 (1434.7) -> 1324.4 (1434.7) MB, 5952.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  105461 ms: Mark-sweep 1324.4 (1434.7) -> 1324.4 (1434.7) MB, 6704.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  111934 ms: Mark-sweep 1324.4 (1434.7) -> 1329.8 (1417.7) MB, 6472.3 / 0.0 ms [last resort gc].
+  117964 ms: Mark-sweep 1329.8 (1417.7) -> 1335.4 (1417.7) MB, 6029.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2c9adc0cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xbc2d59c75c9] (this=0x33848b534901 <a Graph with map 0x1ec804684421>,idV=0x271938a7fd09 <String[9]: dim:13390>,idU=0x271938a816b1 <String[9]: dim:13397>,value=0x4d8cbddea11 <a View with map 0x1ec804687079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xbc2d599bff5] (this=0x33848b534901 <a Graph with map 0x1ec804684421...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xbc2d50079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..4fe598406a79032e2418db5fe5ac611dfe5b4fcc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   96778 ms: Mark-sweep 1322.4 (1437.7) -> 1322.4 (1437.7) MB, 5545.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  102206 ms: Mark-sweep 1322.4 (1437.7) -> 1322.3 (1437.7) MB, 5427.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  107521 ms: Mark-sweep 1322.3 (1437.7) -> 1328.0 (1414.7) MB, 5314.5 / 0.0 ms [last resort gc].
+  113982 ms: Mark-sweep 1328.0 (1414.7) -> 1333.7 (1414.7) MB, 6460.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x282e3bbcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12d1615a8978] (this=0x240a142be7f1 <a Graph with map 0x2e2e32770419>,idV=0x1ecdec4ff2b9 <String[9]: dim:13150>,idU=0x1ecdec4fe079 <String[9]: dim:13151>,value=0x6aff28d5191 <a View with map 0x2e2e32773071>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12d1615a4335] (this=0x240a142be7f1 <a Graph with map 0x2e2e327704...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x12d160c079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..1051f5232988ad75b1a7edf29c16a7c90b52bd74
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  104771 ms: Mark-sweep 1324.3 (1434.7) -> 1324.3 (1434.7) MB, 6197.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  110851 ms: Mark-sweep 1324.3 (1434.7) -> 1324.3 (1434.7) MB, 6079.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  116735 ms: Mark-sweep 1324.3 (1434.7) -> 1330.1 (1416.7) MB, 5884.4 / 0.0 ms [last resort gc].
+  120893 ms: Mark-sweep 1330.1 (1416.7) -> 1335.9 (1416.7) MB, 4157.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x8a6177cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x36829adbbb81] (this=0x3e57822cf1f9 <a Graph with map 0xa04ea670999>,idV=0xd1f4905fa41 <String[9]: dim:13402>,idU=0x176902135df1 <String[9]: dim:13403>,value=0x23c1babd3d11 <a View with map 0xa04ea6735f1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x36829ad91c95] (this=0x3e57822cf1f9 <a Graph with map 0xa04ea670999>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x36829a4079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..787e06d5e77896aea335da9f9bd685771edb8e4a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92295 ms: Mark-sweep 1320.5 (1436.7) -> 1320.3 (1436.7) MB, 5312.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   99329 ms: Mark-sweep 1320.3 (1436.7) -> 1320.3 (1436.7) MB, 7033.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  106084 ms: Mark-sweep 1320.3 (1436.7) -> 1325.1 (1411.7) MB, 6754.1 / 0.0 ms [last resort gc].
+  112978 ms: Mark-sweep 1325.1 (1411.7) -> 1330.1 (1411.7) MB, 6892.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xd877b8cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3a4adc6d6e18] (this=0x3133021dfe19 <a Graph with map 0x41ec1b70311>,idV=0xaa6b2eb3471 <String[9]: dim:12838>,idU=0xaa6b2eb81a9 <String[9]: dim:12841>,value=0x1aa153f0781 <a View with map 0x41ec1b72f69>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3a4adc6bbc55] (this=0x3133021dfe19 <a Graph with map 0x41ec1b70311>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3a4adbd079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..c1631bd17c4e3c55e8026624e064cfb3bf5c5ffd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  101663 ms: Mark-sweep 1322.7 (1437.7) -> 1322.6 (1437.7) MB, 6104.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  108163 ms: Mark-sweep 1322.6 (1437.7) -> 1322.6 (1437.7) MB, 6499.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  114431 ms: Mark-sweep 1322.6 (1437.7) -> 1328.2 (1414.7) MB, 6267.9 / 0.0 ms [last resort gc].
+  120334 ms: Mark-sweep 1328.2 (1414.7) -> 1333.9 (1414.7) MB, 5902.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xa03df1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x14de1f4bdf87] (this=0x319fd95b3619 <a Graph with map 0x3aa0fb970521>,idV=0x53d17742e49 <String[9]: dim:13172>,idU=0x53d177686c1 <String[9]: dim:13177>,value=0x14d8b68ca729 <a View with map 0x3aa0fb973179>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x14de1f4a6175] (this=0x319fd95b3619 <a Graph with map 0x3aa0fb970521...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x14de1eb079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..4d2db71f3ffbf0cc48250a123e18807ed7d2a24e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  100103 ms: Mark-sweep 1324.3 (1434.7) -> 1324.3 (1434.7) MB, 6971.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  105956 ms: Mark-sweep 1324.3 (1434.7) -> 1324.2 (1434.7) MB, 5852.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  111741 ms: Mark-sweep 1324.2 (1434.7) -> 1328.9 (1416.7) MB, 5783.5 / 0.0 ms [last resort gc].
+  118246 ms: Mark-sweep 1328.9 (1416.7) -> 1333.5 (1416.7) MB, 6505.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x27dfe9acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x140155bc0c27] (this=0x27220781fb99 <a Graph with map 0x87617770731>,idV=0x11a042a30659 <String[9]: dim:13395>,idU=0x34539e5f4a81 <String[9]: dim:13396>,value=0x2e1fa2272e99 <a View with map 0x87617773389>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x140155ba83f5] (this=0x27220781fb99 <a Graph with map 0x87617770731...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1401552079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..9a6829edd480f0d7ff07d1215e47b4f912b49acf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94867 ms: Mark-sweep 1329.8 (1434.7) -> 1322.4 (1434.7) MB, 6637.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  100561 ms: Mark-sweep 1322.4 (1434.7) -> 1322.4 (1434.7) MB, 5693.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  107402 ms: Mark-sweep 1322.4 (1434.7) -> 1328.3 (1415.7) MB, 6839.6 / 0.0 ms [last resort gc].
+  113866 ms: Mark-sweep 1328.3 (1415.7) -> 1334.3 (1415.7) MB, 6463.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2adb015cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x304fa8c9098] (this=0x298a9c654001 <a Graph with map 0xa3577870419>,idV=0x2dc989c70a51 <String[9]: dim:13122>,idU=0x2dc989c76741 <String[9]: dim:13123>,value=0x255ee1aa1c61 <a View with map 0xa3577873071>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x304fa8abd55] (this=0x298a9c654001 <a Graph with map 0xa3577870419>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x304f9f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..b70808bfb01192cb2c23eef1e635bfb6b8c492f6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93836 ms: Mark-sweep 1324.3 (1437.7) -> 1322.3 (1437.7) MB, 7136.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  100932 ms: Mark-sweep 1322.3 (1437.7) -> 1322.3 (1437.7) MB, 7094.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  107877 ms: Mark-sweep 1322.3 (1437.7) -> 1327.9 (1414.7) MB, 6944.6 / 0.0 ms [last resort gc].
+  114462 ms: Mark-sweep 1327.9 (1414.7) -> 1333.5 (1414.7) MB, 6585.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x62adc9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x18f49f57e547] (this=0x39231edc1bd9 <a Graph with map 0xcf265a70681>,idV=0x1f3db8d184f9 <String[9]: dim:13132>,idU=0x1f3db8da7299 <String[9]: dim:13133>,value=0x1b76ca5d8351 <a View with map 0xcf265a732d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x18f49f57a115] (this=0x39231edc1bd9 <a Graph with map 0xcf265a70681>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x18f49ec079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..8da3b20811b0b312b0b3ad608651f7746553f439
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   91764 ms: Mark-sweep 1323.8 (1437.7) -> 1322.1 (1437.7) MB, 5892.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   99344 ms: Mark-sweep 1322.1 (1437.7) -> 1322.1 (1437.7) MB, 7580.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  105416 ms: Mark-sweep 1322.1 (1437.7) -> 1327.0 (1414.7) MB, 6070.8 / 0.0 ms [last resort gc].
+  112520 ms: Mark-sweep 1327.0 (1414.7) -> 1331.9 (1414.7) MB, 7103.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3f24cafcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3ca63e0d8dc7] (this=0x20c93fff5aa9 <a Graph with map 0x3fad8f184421>,idV=0x2363a6751009 <String[9]: dim:13093>,idU=0x2363a67a3c29 <String[9]: dim:13095>,value=0x83ea760f831 <a View with map 0x3fad8f187079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3ca63e0bbf15] (this=0x20c93fff5aa9 <a Graph with map 0x3fad8f1844...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3ca63d7079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..ad2567d5ea9e9ec1ac8733ee61a9813a73b84b9c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   97449 ms: Mark-sweep 1322.6 (1437.7) -> 1322.6 (1437.7) MB, 6796.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  104027 ms: Mark-sweep 1322.6 (1437.7) -> 1322.5 (1437.7) MB, 6577.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  110143 ms: Mark-sweep 1322.5 (1437.7) -> 1327.6 (1414.7) MB, 6115.0 / 0.0 ms [last resort gc].
+  115075 ms: Mark-sweep 1327.6 (1414.7) -> 1332.8 (1414.7) MB, 4932.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3d81918cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x13d632ac5441] (this=0x36d66a8a8249 <a Graph with map 0x3ff82be70839>,idV=0x2f4fa5b6c1f1 <String[9]: dim:13173>,idU=0x2f4fa5b38ff9 <String[9]: dim:13174>,value=0x364e50cbf431 <a View with map 0x3ff82be73491>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x13d632a965f5] (this=0x36d66a8a8249 <a Graph with map 0x3ff82be70...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x13d6321079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..bb72bb177d709a30eb5c9c51c78d307ad1f7fe61
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  106707 ms: Mark-sweep 1322.5 (1436.7) -> 1322.4 (1436.7) MB, 6740.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  111344 ms: Mark-sweep 1322.4 (1436.7) -> 1322.4 (1436.7) MB, 4636.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  115968 ms: Mark-sweep 1322.4 (1436.7) -> 1326.5 (1413.7) MB, 4623.8 / 0.0 ms [last resort gc].
+  121521 ms: Mark-sweep 1326.5 (1413.7) -> 1330.8 (1413.7) MB, 5553.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1cf3835cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xfc5f19eee7] (this=0xe081a8c3ec9 <a Graph with map 0x86d0a0702b9>,idV=0x30e322c20399 <String[9]: dim:13152>,idU=0x30e322c5dc59 <String[9]: dim:13153>,value=0x279e9ffda839 <a View with map 0x86d0a072f11>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xfc5f19aab5] (this=0xe081a8c3ec9 <a Graph with map 0x86d0a0702b9>,view...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xfc5e8079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..d656b91c1a9ae9a04bbb6970e0fa278ce9a6df16
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92594 ms: Mark-sweep 1327.0 (1434.7) -> 1323.8 (1434.7) MB, 5938.6 / 0.0 ms [allocation failure] [GC in old space requested].
+   99119 ms: Mark-sweep 1323.8 (1434.7) -> 1323.8 (1434.7) MB, 6524.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  105778 ms: Mark-sweep 1323.8 (1434.7) -> 1328.1 (1417.7) MB, 6658.1 / 0.0 ms [last resort gc].
+  112336 ms: Mark-sweep 1328.1 (1417.7) -> 1332.5 (1417.7) MB, 6557.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x35306d8cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x5a21c7b49e7] (this=0x3a65064c63a9 <a Graph with map 0x3f0adf1700a9>,idV=0xa6bf1a26d11 <String[9]: dim:13346>,idU=0xa6bf1a695c9 <String[9]: dim:13347>,value=0x2b8b474e0c99 <a View with map 0x3f0adf172d01>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x5a21c7b05b5] (this=0x3a65064c63a9 <a Graph with map 0x3f0adf1700a9>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x5a21be079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-04/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..c7687445a865c48d5ec54c6cc11be88fdab517dc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/run9.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90305 ms: Mark-sweep 1318.7 (1434.7) -> 1318.7 (1434.7) MB, 5437.9 / 0.0 ms [allocation failure] [GC in old space requested].
+   96652 ms: Mark-sweep 1318.7 (1434.7) -> 1318.7 (1434.7) MB, 6347.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  103170 ms: Mark-sweep 1318.7 (1434.7) -> 1323.4 (1411.7) MB, 6516.7 / 0.0 ms [last resort gc].
+  109707 ms: Mark-sweep 1323.4 (1411.7) -> 1328.2 (1411.7) MB, 6536.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x992442cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3e854da524c] (this=0x166064493461 <a Graph with map 0x4a4b2170579>,idV=0xa1d59b8ede1 <String[9]: dim:12614>,idU=0xa1d59b74b61 <String[9]: dim:12616>,value=0x218d61b67121 <a View with map 0x4a4b21731d1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3e854aed795] (this=0x166064493461 <a Graph with map 0x4a4b2170579>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x3e8544092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e835023073648fc8bc417bb5a18ce5369290bf0f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 334.25
+Mediana        = 328
+Variancia      = 674.62
+Desvio Padrao  = 25.97
+Coef. Variacao = 0.08
+Min            = 311
+Max            = 424
+Esq, Dir.      = 324.697 , 343.803
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5288fb33baf029f97991da6ba22ef96e3534fa17
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 317
+1024 339
+1024 320
+1024 311
+1024 347
+1024 374
+1024 315
+1024 312
+1024 321
+1024 347
+1024 327
+1024 331
+1024 346
+1024 323
+1024 319
+1024 329
+1024 331
+1024 329
+1024 424
+1024 323
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..9312f1ab01b297e28d3516d3b2dd50744cbe02e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 242.05
+Mediana        = 243
+Variancia      = 67.31
+Desvio Padrao  = 8.2
+Coef. Variacao = 0.03
+Min            = 225
+Max            = 253
+Esq, Dir.      = 239.0324 , 245.0676
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5cbad655244ad97a3efe604ce6af9e384a39244b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 237
+1024 247
+1024 253
+1024 237
+1024 238
+1024 243
+1024 239
+1024 243
+1024 227
+1024 250
+1024 237
+1024 250
+1024 251
+1024 253
+1024 246
+1024 234
+1024 251
+1024 225
+1024 237
+1024 243
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e460c8723c5b886d81f9ae5c4c8bd82aa71a8829
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 23.35
+Mediana        = 23
+Variancia      = 3.4
+Desvio Padrao  = 1.84
+Coef. Variacao = 0.08
+Min            = 21
+Max            = 29
+Esq, Dir.      = 22.6721 , 24.0279
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..70847ee1d2dbde4798265e1b9968712f854e5f1b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 22
+128 23
+128 23
+128 21
+128 23
+128 25
+128 21
+128 22
+128 22
+128 29
+128 24
+128 23
+128 23
+128 22
+128 23
+128 23
+128 24
+128 23
+128 25
+128 26
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0a161a9d4f35fb84b598fd5d51061142997b8370
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 19.5
+Mediana        = 18
+Variancia      = 65.63
+Desvio Padrao  = 8.1
+Coef. Variacao = 0.42
+Min            = 13
+Max            = 51
+Esq, Dir.      = 16.5203 , 22.4797
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..926131fcad1c70fb65fe92ab556be08d8721471b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 19
+128 19
+128 18
+128 13
+128 19
+128 51
+128 14
+128 23
+128 18
+128 18
+128 25
+128 14
+128 15
+128 18
+128 16
+128 14
+128 14
+128 20
+128 20
+128 22
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..90a9e83329fcbbc0b037f3c04b5a346b420dbe52
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11
+Mediana        = 11
+Variancia      = 0.63
+Desvio Padrao  = 0.79
+Coef. Variacao = 0.07
+Min            = 10
+Max            = 13
+Esq, Dir.      = 10.7077 , 11.2923
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..298d29e53c9a676c4b1369d0c181e9bbfc89b31d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 10
+16 12
+16 12
+16 10
+16 11
+16 11
+16 11
+16 11
+16 10
+16 10
+16 11
+16 10
+16 12
+16 11
+16 11
+16 11
+16 11
+16 11
+16 11
+16 13
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..822e70d8601a3b6c6f8ade130d483187c9e00b60
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 16.1
+Mediana        = 16
+Variancia      = 1.99
+Desvio Padrao  = 1.41
+Coef. Variacao = 0.09
+Min            = 14
+Max            = 19
+Esq, Dir.      = 15.5812 , 16.6188
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..a285fae70e452d250685b25a2dd805b9d4bafc37
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 17
+16 15
+16 14
+16 15
+16 16
+16 19
+16 15
+16 17
+16 14
+16 18
+16 17
+16 16
+16 15
+16 17
+16 18
+16 15
+16 17
+16 15
+16 15
+16 17
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ac034f85cf29da85e82fe2a7d0b553bddae09f0d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 77283.5
+Mediana        = 77838.5
+Variancia      = 33625358.26
+Desvio Padrao  = 5798.74
+Coef. Variacao = 0.08
+Min            = 67944
+Max            = 89623
+Esq, Dir.      = 75150.7217 , 79416.2783
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..aed607d3a8b8862265b556dc82e15e6817b0a261
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 82278
+16384 68422
+16384 77158
+16384 84585
+16384 80917
+16384 89623
+16384 70646
+16384 76797
+16384 79216
+16384 76996
+16384 79130
+16384 83239
+16384 80873
+16384 78380
+16384 74701
+16384 70248
+16384 78185
+16384 68840
+16384 77492
+16384 67944
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..73599648b2763fe8130134ef7cc325d664c13a28
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 57858.4
+Mediana        = 58493
+Variancia      = 6174980.88
+Desvio Padrao  = 2484.95
+Coef. Variacao = 0.04
+Min            = 53731
+Max            = 61568
+Esq, Dir.      = 56944.4339 , 58772.3661
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..bdc65eb4e766c36572f39db72be8feb7be6b558e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 55997
+16384 56911
+16384 60251
+16384 53906
+16384 60470
+16384 60185
+16384 57426
+16384 59989
+16384 53731
+16384 61568
+16384 54543
+16384 60161
+16384 57198
+16384 59923
+16384 59347
+16384 58562
+16384 58872
+16384 58424
+16384 55457
+16384 54247
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..754970905ea4dec0c031b56ecc4575af4afe8bc6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1195
+Mediana        = 1205.5
+Variancia      = 3467.89
+Desvio Padrao  = 58.89
+Coef. Variacao = 0.05
+Min            = 1105
+Max            = 1342
+Esq, Dir.      = 1173.3407 , 1216.6593
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..15e4e304a27c892e6bdbbe689ee4e96ef6bd4b66
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1138
+2048 1228
+2048 1138
+2048 1202
+2048 1226
+2048 1342
+2048 1105
+2048 1143
+2048 1209
+2048 1145
+2048 1213
+2048 1217
+2048 1221
+2048 1145
+2048 1128
+2048 1220
+2048 1176
+2048 1228
+2048 1301
+2048 1175
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..7ee4beb06a40e87759956e0146f9793c245a5715
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 939
+Mediana        = 935.5
+Variancia      = 829.16
+Desvio Padrao  = 28.8
+Coef. Variacao = 0.03
+Min            = 871
+Max            = 991
+Esq, Dir.      = 928.4091 , 949.5909
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1cf30bb854de727ebc8697011f2348553991a0b5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 919
+2048 967
+2048 935
+2048 923
+2048 905
+2048 946
+2048 927
+2048 936
+2048 871
+2048 973
+2048 909
+2048 965
+2048 978
+2048 991
+2048 949
+2048 929
+2048 964
+2048 925
+2048 922
+2048 946
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..3adab3b7e85315f07fdb1cf9edb1ff020cafd935
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 34
+Mediana        = 34
+Variancia      = 2.11
+Desvio Padrao  = 1.45
+Coef. Variacao = 0.04
+Min            = 31
+Max            = 37
+Esq, Dir.      = 33.4663 , 34.5337
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b6bf795d6127d27a75f430902074f515b115abc1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 32
+256 34
+256 34
+256 32
+256 34
+256 36
+256 31
+256 33
+256 33
+256 34
+256 37
+256 34
+256 36
+256 34
+256 34
+256 34
+256 34
+256 34
+256 36
+256 34
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..323bce9dc2198e904c037d84841f41f1b5a5ee65
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 43.2
+Mediana        = 45
+Variancia      = 127.43
+Desvio Padrao  = 11.29
+Coef. Variacao = 0.26
+Min            = 25
+Max            = 67
+Esq, Dir.      = 39.0481 , 47.3519
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..b5854c4da36e445d06ab12ffa4dd8c6c2b786721
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 53
+256 25
+256 40
+256 43
+256 46
+256 32
+256 28
+256 53
+256 40
+256 67
+256 46
+256 44
+256 27
+256 56
+256 46
+256 25
+256 53
+256 42
+256 47
+256 51
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2fc783d0a761fe407d013ff0d1f0fb82031408f5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 6.15
+Mediana        = 5.5
+Variancia      = 4.56
+Desvio Padrao  = 2.13
+Coef. Variacao = 0.35
+Min            = 4
+Max            = 12
+Esq, Dir.      = 5.365 , 6.935
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..692e96fa7b718128870daf2c283ff38cc7961a0d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 5
+32 5
+32 6
+32 5
+32 6
+32 7
+32 5
+32 5
+32 12
+32 12
+32 5
+32 5
+32 5
+32 4
+32 7
+32 6
+32 6
+32 5
+32 6
+32 6
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..29832b1dcadd63972b072cfb1eb3d996b2e3426f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 5.2
+Mediana        = 5
+Variancia      = 2.69
+Desvio Padrao  = 1.64
+Coef. Variacao = 0.32
+Min            = 4
+Max            = 9
+Esq, Dir.      = 4.5962 , 5.8038
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..3231e7e83317bbde7457b5e2c62a203aa4d858c1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 5
+32 6
+32 4
+32 5
+32 4
+32 4
+32 5
+32 6
+32 5
+32 9
+32 4
+32 4
+32 5
+32 5
+32 4
+32 4
+32 9
+32 4
+32 8
+32 4
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..41e4eb3c2d9eb6dc59e831acb45a0cba7de37924
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 323997.65
+Mediana        = 324141.5
+Variancia      = 763880981.08
+Desvio Padrao  = 27638.4
+Coef. Variacao = 0.09
+Min            = 269336
+Max            = 378239
+Esq, Dir.      = 313832.2351 , 334163.0649
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..10b987f3c04ac8a3751754bb5460d376b70c1d41
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 318256
+32768 317073
+32768 326236
+32768 358641
+32768 329954
+32768 378239
+32768 284436
+32768 284464
+32768 339424
+32768 316604
+32768 318622
+32768 336626
+32768 327041
+32768 322047
+32768 299434
+32768 308278
+32768 343561
+32768 328866
+32768 372815
+32768 269336
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ae678237723f70928621ab51b3b28b29cf9e253c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 239950.3
+Mediana        = 240968
+Variancia      = 98012624.22
+Desvio Padrao  = 9900.13
+Coef. Variacao = 0.04
+Min            = 218303
+Max            = 255336
+Esq, Dir.      = 236309.0268 , 243591.5732
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5b554c4596b87685c1657712bc2a9e009119413c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 218303
+32768 247952
+32768 233251
+32768 235978
+32768 243083
+32768 251813
+32768 230828
+32768 238853
+32768 225432
+32768 249091
+32768 243654
+32768 245015
+32768 246180
+32768 253800
+32768 229919
+32768 255336
+32768 234351
+32768 231945
+32768 238400
+32768 245822
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ff229ac84f6a4848e89d2e6faab40a16ffd43de6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4539.5
+Mediana        = 4469.5
+Variancia      = 62113.63
+Desvio Padrao  = 249.23
+Coef. Variacao = 0.05
+Min            = 4219
+Max            = 5166
+Esq, Dir.      = 4447.8345 , 4631.1655
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7fb3f14b41508f9e8a04625193725fbb744c81e6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4349
+4096 4290
+4096 4354
+4096 4479
+4096 4614
+4096 5166
+4096 4267
+4096 4219
+4096 4537
+4096 4473
+4096 4371
+4096 4763
+4096 4725
+4096 4933
+4096 4396
+4096 4466
+4096 4434
+4096 4417
+4096 4909
+4096 4628
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c0a22c1a022113ac6ffa9b71837127e6abf93930
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3318.25
+Mediana        = 3332
+Variancia      = 5730.51
+Desvio Padrao  = 75.7
+Coef. Variacao = 0.02
+Min            = 3132
+Max            = 3407
+Esq, Dir.      = 3290.4074 , 3346.0926
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..e274697c10b9b0826eed1460ea886713dc0fa856
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 3343
+4096 3368
+4096 3407
+4096 3263
+4096 3261
+4096 3326
+4096 3260
+4096 3338
+4096 3132
+4096 3359
+4096 3159
+4096 3373
+4096 3392
+4096 3384
+4096 3378
+4096 3306
+4096 3407
+4096 3320
+4096 3278
+4096 3311
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f97677ede697d16d165e15aab5a92dba06f677f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 98.95
+Mediana        = 99
+Variancia      = 18.79
+Desvio Padrao  = 4.33
+Coef. Variacao = 0.04
+Min            = 93
+Max            = 110
+Esq, Dir.      = 97.3558 , 100.5442
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..86583cafc9e104aaf55a38a579131509c81e5253
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 93
+512 100
+512 97
+512 95
+512 105
+512 110
+512 94
+512 94
+512 95
+512 103
+512 101
+512 99
+512 102
+512 96
+512 94
+512 99
+512 101
+512 100
+512 102
+512 99
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..11ec386cd2d09365df383f5c1f32e034f1aaed9b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 84
+Mediana        = 83
+Variancia      = 47.05
+Desvio Padrao  = 6.86
+Coef. Variacao = 0.08
+Min            = 76
+Max            = 99
+Esq, Dir.      = 81.4771 , 86.5229
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d65bcdbb496af84207a4ecf4efd03512392cb3de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 83
+512 99
+512 91
+512 76
+512 80
+512 88
+512 90
+512 81
+512 76
+512 87
+512 77
+512 83
+512 94
+512 85
+512 77
+512 92
+512 87
+512 76
+512 76
+512 82
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..33c61d936ddf94ba25b2f694304150a50cf58df1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.5
+Mediana        = 7
+Variancia      = 0.58
+Desvio Padrao  = 0.76
+Coef. Variacao = 0.1
+Min            = 6
+Max            = 9
+Esq, Dir.      = 7.2201 , 7.7799
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..993cd35ad082c483b328eb94fdff74784302d280
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 7
+64 7
+64 7
+64 7
+64 7
+64 8
+64 6
+64 7
+64 8
+64 9
+64 8
+64 7
+64 8
+64 7
+64 7
+64 8
+64 7
+64 8
+64 8
+64 9
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..80baabdbd591fe48bb65dfffd5684f2243d48025
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 7.25
+Mediana        = 7
+Variancia      = 3.46
+Desvio Padrao  = 1.86
+Coef. Variacao = 0.26
+Min            = 5
+Max            = 13
+Esq, Dir.      = 6.5658 , 7.9342
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..f12b4545cba8ca88f29159b409cf426bcf265d93
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 13
+64 6
+64 5
+64 7
+64 7
+64 8
+64 6
+64 6
+64 6
+64 10
+64 6
+64 6
+64 7
+64 8
+64 6
+64 6
+64 9
+64 7
+64 9
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f14a4b7555b37e1f7e995b7e7f60f5b831d61387
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1313081.65
+Mediana        = 1319906.5
+Variancia      = 4058974435.19
+Desvio Padrao  = 63710.08
+Coef. Variacao = 0.05
+Min            = 1170986
+Max            = 1404333
+Esq, Dir.      = 1289649.0534 , 1336514.2466
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a10bee87f647d1babcd9797e3de75186e9881e0e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 1397925
+65536 1170986
+65536 1353141
+65536 1404333
+65536 1390394
+65536 1353556
+65536 1342395
+65536 1283566
+65536 1267506
+65536 1271031
+65536 1183970
+65536 1339833
+65536 1305147
+65536 1319282
+65536 1249128
+65536 1320531
+65536 1374757
+65536 1284867
+65536 1317276
+65536 1332009
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..fee47be0f3631ab6599680bf363a650338916ea5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1136256.3
+Mediana        = 1137121
+Variancia      = 1354420086.33
+Desvio Padrao  = 36802.45
+Coef. Variacao = 0.03
+Min            = 1071196
+Max            = 1210829
+Esq, Dir.      = 1122720.3434 , 1149792.2566
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..47e41cd2b284d785859643e3de0c04143411af19
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 1107067
+65536 1128134
+65536 1210829
+65536 1142527
+65536 1153172
+65536 1202523
+65536 1141369
+65536 1132873
+65536 1079523
+65536 1150578
+65536 1113994
+65536 1128071
+65536 1161757
+65536 1080173
+65536 1172089
+65536 1148909
+65536 1127453
+65536 1158400
+65536 1071196
+65536 1114489
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..327a28ab3c00b24efcc7079f77306064ef17f34e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18297.9
+Mediana        = 18058.5
+Variancia      = 1083202.62
+Desvio Padrao  = 1040.77
+Coef. Variacao = 0.06
+Min            = 16841
+Max            = 21591
+Esq, Dir.      = 17915.1042 , 18680.6958
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a264466c05861b8415dcec334693b94937355f2c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 18041
+8192 16841
+8192 17788
+8192 18909
+8192 18992
+8192 21591
+8192 17289
+8192 17400
+8192 17762
+8192 18418
+8192 17559
+8192 19000
+8192 19430
+8192 18727
+8192 17264
+8192 18075
+8192 18369
+8192 18042
+8192 18780
+8192 17681
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ec5846d24d0ca4b6606e98dd11b93eeb1444255f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 13355.45
+Mediana        = 13402
+Variancia      = 125835.63
+Desvio Padrao  = 354.73
+Coef. Variacao = 0.03
+Min            = 12544
+Max            = 13858
+Esq, Dir.      = 13224.979 , 13485.921
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c5cb5da0dca8913a183157f77b8ac2ce4f2faeaa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 12993
+8192 13447
+8192 13838
+8192 13076
+8192 13483
+8192 13226
+8192 13495
+8192 13358
+8192 12544
+8192 13703
+8192 12930
+8192 13858
+8192 13674
+8192 13748
+8192 13417
+8192 13001
+8192 13719
+8192 13387
+8192 13233
+8192 12979
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..418360081afe7efb24728cf3448c0636df892361
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (25ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (909ms)
+    ✓ LayoutView;n=4096 (3159ms)
+    ✓ LayoutView;n=8192 (12930ms)
+    ✓ LayoutView;n=16384 (54543ms)
+    ✓ LayoutView;n=32768 (243654ms)
+    ✓ LayoutView;n=65536 (1113994ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (327ms)
+    ✓ LayoutSQL;n=2048 (1213ms)
+    ✓ LayoutSQL;n=4096 (4371ms)
+    ✓ LayoutSQL;n=8192 (17559ms)
+    ✓ LayoutSQL;n=16384 (79130ms)
+    ✓ LayoutSQL;n=32768 (318622ms)
+    ✓ LayoutSQL;n=65536 (1183970ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..6652d2bb9da09d5397c6aa2d10a8ba219ab06b33
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (10ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (67ms)
+    ✓ LayoutView;n=512 (87ms)
+    ✓ LayoutView;n=1024 (250ms)
+    ✓ LayoutView;n=2048 (973ms)
+    ✓ LayoutView;n=4096 (3359ms)
+    ✓ LayoutView;n=8192 (13703ms)
+    ✓ LayoutView;n=16384 (61568ms)
+    ✓ LayoutView;n=32768 (249091ms)
+    ✓ LayoutView;n=65536 (1150578ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (29ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (347ms)
+    ✓ LayoutSQL;n=2048 (1145ms)
+    ✓ LayoutSQL;n=4096 (4473ms)
+    ✓ LayoutSQL;n=8192 (18418ms)
+    ✓ LayoutSQL;n=16384 (76996ms)
+    ✓ LayoutSQL;n=32768 (316604ms)
+    ✓ LayoutSQL;n=65536 (1271031ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..18dba45f2fd27b480ddee1a6c06214bc14c58f2b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (22ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (82ms)
+    ✓ LayoutView;n=1024 (243ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3311ms)
+    ✓ LayoutView;n=8192 (12979ms)
+    ✓ LayoutView;n=16384 (54247ms)
+    ✓ LayoutView;n=32768 (245822ms)
+    ✓ LayoutView;n=65536 (1114489ms)
+    ✓ LayoutSQL;n=16 (13ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (26ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (323ms)
+    ✓ LayoutSQL;n=2048 (1175ms)
+    ✓ LayoutSQL;n=4096 (4628ms)
+    ✓ LayoutSQL;n=8192 (17681ms)
+    ✓ LayoutSQL;n=16384 (67944ms)
+    ✓ LayoutSQL;n=32768 (269336ms)
+    ✓ LayoutSQL;n=65536 (1332009ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..1400b9bd78a062449aa93c16e1b40fd7fd2cd044
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (6ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (23ms)
+    ✓ LayoutView;n=256 (53ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (243ms)
+    ✓ LayoutView;n=2048 (936ms)
+    ✓ LayoutView;n=4096 (3338ms)
+    ✓ LayoutView;n=8192 (13358ms)
+    ✓ LayoutView;n=16384 (59989ms)
+    ✓ LayoutView;n=32768 (238853ms)
+    ✓ LayoutView;n=65536 (1132873ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (312ms)
+    ✓ LayoutSQL;n=2048 (1143ms)
+    ✓ LayoutSQL;n=4096 (4219ms)
+    ✓ LayoutSQL;n=8192 (17400ms)
+    ✓ LayoutSQL;n=16384 (76797ms)
+    ✓ LayoutSQL;n=32768 (284464ms)
+    ✓ LayoutSQL;n=65536 (1283566ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..50bddad5aeb232e9c6d6e56b24ba4527e93e4a53
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (92ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (929ms)
+    ✓ LayoutView;n=4096 (3306ms)
+    ✓ LayoutView;n=8192 (13001ms)
+    ✓ LayoutView;n=16384 (58562ms)
+    ✓ LayoutView;n=32768 (255336ms)
+    ✓ LayoutView;n=65536 (1148909ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (329ms)
+    ✓ LayoutSQL;n=2048 (1220ms)
+    ✓ LayoutSQL;n=4096 (4466ms)
+    ✓ LayoutSQL;n=8192 (18075ms)
+    ✓ LayoutSQL;n=16384 (70248ms)
+    ✓ LayoutSQL;n=32768 (308278ms)
+    ✓ LayoutSQL;n=65536 (1320531ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..40a5e6c51a054ed3ef62602ef1d6a95e7e9d1d9b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (43ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (923ms)
+    ✓ LayoutView;n=4096 (3263ms)
+    ✓ LayoutView;n=8192 (13076ms)
+    ✓ LayoutView;n=16384 (53906ms)
+    ✓ LayoutView;n=32768 (235978ms)
+    ✓ LayoutView;n=65536 (1142527ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (95ms)
+    ✓ LayoutSQL;n=1024 (311ms)
+    ✓ LayoutSQL;n=2048 (1202ms)
+    ✓ LayoutSQL;n=4096 (4479ms)
+    ✓ LayoutSQL;n=8192 (18909ms)
+    ✓ LayoutSQL;n=16384 (84585ms)
+    ✓ LayoutSQL;n=32768 (358641ms)
+    ✓ LayoutSQL;n=65536 (1404333ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..701d062feb159d4c0bdadc1d4e65dab846a87aea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (28ms)
+    ✓ LayoutView;n=512 (90ms)
+    ✓ LayoutView;n=1024 (239ms)
+    ✓ LayoutView;n=2048 (927ms)
+    ✓ LayoutView;n=4096 (3260ms)
+    ✓ LayoutView;n=8192 (13495ms)
+    ✓ LayoutView;n=16384 (57426ms)
+    ✓ LayoutView;n=32768 (230828ms)
+    ✓ LayoutView;n=65536 (1141369ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (315ms)
+    ✓ LayoutSQL;n=2048 (1105ms)
+    ✓ LayoutSQL;n=4096 (4267ms)
+    ✓ LayoutSQL;n=8192 (17289ms)
+    ✓ LayoutSQL;n=16384 (70646ms)
+    ✓ LayoutSQL;n=32768 (284436ms)
+    ✓ LayoutSQL;n=65536 (1342395ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..f0904b7eade07da6d84220322df7d1f7ef71794e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (8ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (922ms)
+    ✓ LayoutView;n=4096 (3278ms)
+    ✓ LayoutView;n=8192 (13233ms)
+    ✓ LayoutView;n=16384 (55457ms)
+    ✓ LayoutView;n=32768 (238400ms)
+    ✓ LayoutView;n=65536 (1071196ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (424ms)
+    ✓ LayoutSQL;n=2048 (1301ms)
+    ✓ LayoutSQL;n=4096 (4909ms)
+    ✓ LayoutSQL;n=8192 (18780ms)
+    ✓ LayoutSQL;n=16384 (77492ms)
+    ✓ LayoutSQL;n=32768 (372815ms)
+    ✓ LayoutSQL;n=65536 (1317276ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..a0a5f810f5fe6931878b4e0fb6f76c9d7aa2a435
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (83ms)
+    ✓ LayoutView;n=1024 (250ms)
+    ✓ LayoutView;n=2048 (965ms)
+    ✓ LayoutView;n=4096 (3373ms)
+    ✓ LayoutView;n=8192 (13858ms)
+    ✓ LayoutView;n=16384 (60161ms)
+    ✓ LayoutView;n=32768 (245015ms)
+    ✓ LayoutView;n=65536 (1128071ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (331ms)
+    ✓ LayoutSQL;n=2048 (1217ms)
+    ✓ LayoutSQL;n=4096 (4763ms)
+    ✓ LayoutSQL;n=8192 (19000ms)
+    ✓ LayoutSQL;n=16384 (83239ms)
+    ✓ LayoutSQL;n=32768 (336626ms)
+    ✓ LayoutSQL;n=65536 (1339833ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..a71be04a5334bba806e30df6537bd0efd3ddff4f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (42ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (225ms)
+    ✓ LayoutView;n=2048 (925ms)
+    ✓ LayoutView;n=4096 (3320ms)
+    ✓ LayoutView;n=8192 (13387ms)
+    ✓ LayoutView;n=16384 (58424ms)
+    ✓ LayoutView;n=32768 (231945ms)
+    ✓ LayoutView;n=65536 (1158400ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (329ms)
+    ✓ LayoutSQL;n=2048 (1228ms)
+    ✓ LayoutSQL;n=4096 (4417ms)
+    ✓ LayoutSQL;n=8192 (18042ms)
+    ✓ LayoutSQL;n=16384 (68840ms)
+    ✓ LayoutSQL;n=32768 (328866ms)
+    ✓ LayoutSQL;n=65536 (1284867ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..70c4532116ea25fad8234564d21e08d1564189aa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (13ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (53ms)
+    ✓ LayoutView;n=512 (83ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (919ms)
+    ✓ LayoutView;n=4096 (3343ms)
+    ✓ LayoutView;n=8192 (12993ms)
+    ✓ LayoutView;n=16384 (55997ms)
+    ✓ LayoutView;n=32768 (218303ms)
+    ✓ LayoutView;n=65536 (1107067ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (93ms)
+    ✓ LayoutSQL;n=1024 (317ms)
+    ✓ LayoutSQL;n=2048 (1138ms)
+    ✓ LayoutSQL;n=4096 (4349ms)
+    ✓ LayoutSQL;n=8192 (18041ms)
+    ✓ LayoutSQL;n=16384 (82278ms)
+    ✓ LayoutSQL;n=32768 (318256ms)
+    ✓ LayoutSQL;n=65536 (1397925ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..2717fd9ac1690e53980597ecc7c35d1e6991bb58
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (40ms)
+    ✓ LayoutView;n=512 (91ms)
+    ✓ LayoutView;n=1024 (253ms)
+    ✓ LayoutView;n=2048 (935ms)
+    ✓ LayoutView;n=4096 (3407ms)
+    ✓ LayoutView;n=8192 (13838ms)
+    ✓ LayoutView;n=16384 (60251ms)
+    ✓ LayoutView;n=32768 (233251ms)
+    ✓ LayoutView;n=65536 (1210829ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (97ms)
+    ✓ LayoutSQL;n=1024 (320ms)
+    ✓ LayoutSQL;n=2048 (1138ms)
+    ✓ LayoutSQL;n=4096 (4354ms)
+    ✓ LayoutSQL;n=8192 (17788ms)
+    ✓ LayoutSQL;n=16384 (77158ms)
+    ✓ LayoutSQL;n=32768 (326236ms)
+    ✓ LayoutSQL;n=65536 (1353141ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..66b29aded6aeb7ea3b4b227510267ced4abe549a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (6ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (99ms)
+    ✓ LayoutView;n=1024 (247ms)
+    ✓ LayoutView;n=2048 (967ms)
+    ✓ LayoutView;n=4096 (3368ms)
+    ✓ LayoutView;n=8192 (13447ms)
+    ✓ LayoutView;n=16384 (56911ms)
+    ✓ LayoutView;n=32768 (247952ms)
+    ✓ LayoutView;n=65536 (1128134ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (339ms)
+    ✓ LayoutSQL;n=2048 (1228ms)
+    ✓ LayoutSQL;n=4096 (4290ms)
+    ✓ LayoutSQL;n=8192 (16841ms)
+    ✓ LayoutSQL;n=16384 (68422ms)
+    ✓ LayoutSQL;n=32768 (317073ms)
+    ✓ LayoutSQL;n=65536 (1170986ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..6507fb937a0e31f433ace2af3fe07c7e291d6479
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (53ms)
+    ✓ LayoutView;n=512 (87ms)
+    ✓ LayoutView;n=1024 (251ms)
+    ✓ LayoutView;n=2048 (964ms)
+    ✓ LayoutView;n=4096 (3407ms)
+    ✓ LayoutView;n=8192 (13719ms)
+    ✓ LayoutView;n=16384 (58872ms)
+    ✓ LayoutView;n=32768 (234351ms)
+    ✓ LayoutView;n=65536 (1127453ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (331ms)
+    ✓ LayoutSQL;n=2048 (1176ms)
+    ✓ LayoutSQL;n=4096 (4434ms)
+    ✓ LayoutSQL;n=8192 (18369ms)
+    ✓ LayoutSQL;n=16384 (78185ms)
+    ✓ LayoutSQL;n=32768 (343561ms)
+    ✓ LayoutSQL;n=65536 (1374757ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..fdf26af4f975e3d7fc5b4a6452b233c976b0e22a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (16ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (246ms)
+    ✓ LayoutView;n=2048 (949ms)
+    ✓ LayoutView;n=4096 (3378ms)
+    ✓ LayoutView;n=8192 (13417ms)
+    ✓ LayoutView;n=16384 (59347ms)
+    ✓ LayoutView;n=32768 (229919ms)
+    ✓ LayoutView;n=65536 (1172089ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (319ms)
+    ✓ LayoutSQL;n=2048 (1128ms)
+    ✓ LayoutSQL;n=4096 (4396ms)
+    ✓ LayoutSQL;n=8192 (17264ms)
+    ✓ LayoutSQL;n=16384 (74701ms)
+    ✓ LayoutSQL;n=32768 (299434ms)
+    ✓ LayoutSQL;n=65536 (1249128ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..aab18162cd24ce522a1cc1f107378993a1ce4893
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (905ms)
+    ✓ LayoutView;n=4096 (3261ms)
+    ✓ LayoutView;n=8192 (13483ms)
+    ✓ LayoutView;n=16384 (60470ms)
+    ✓ LayoutView;n=32768 (243083ms)
+    ✓ LayoutView;n=65536 (1153172ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (105ms)
+    ✓ LayoutSQL;n=1024 (347ms)
+    ✓ LayoutSQL;n=2048 (1226ms)
+    ✓ LayoutSQL;n=4096 (4614ms)
+    ✓ LayoutSQL;n=8192 (18992ms)
+    ✓ LayoutSQL;n=16384 (80917ms)
+    ✓ LayoutSQL;n=32768 (329954ms)
+    ✓ LayoutSQL;n=65536 (1390394ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..26b659140cea0c818943ad8912ce8824cb4f25ec
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (19ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (51ms)
+    ✓ LayoutView;n=256 (32ms)
+    ✓ LayoutView;n=512 (88ms)
+    ✓ LayoutView;n=1024 (243ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3326ms)
+    ✓ LayoutView;n=8192 (13226ms)
+    ✓ LayoutView;n=16384 (60185ms)
+    ✓ LayoutView;n=32768 (251813ms)
+    ✓ LayoutView;n=65536 (1202523ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (7ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (110ms)
+    ✓ LayoutSQL;n=1024 (374ms)
+    ✓ LayoutSQL;n=2048 (1342ms)
+    ✓ LayoutSQL;n=4096 (5166ms)
+    ✓ LayoutSQL;n=8192 (21591ms)
+    ✓ LayoutSQL;n=16384 (89623ms)
+    ✓ LayoutSQL;n=32768 (378239ms)
+    ✓ LayoutSQL;n=65536 (1353556ms)
+
+
+  26 passing (56m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..8e50397e1c0eaad9f29706df07ed9ccd773e5b8e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (94ms)
+    ✓ LayoutView;n=1024 (251ms)
+    ✓ LayoutView;n=2048 (978ms)
+    ✓ LayoutView;n=4096 (3392ms)
+    ✓ LayoutView;n=8192 (13674ms)
+    ✓ LayoutView;n=16384 (57198ms)
+    ✓ LayoutView;n=32768 (246180ms)
+    ✓ LayoutView;n=65536 (1161757ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (346ms)
+    ✓ LayoutSQL;n=2048 (1221ms)
+    ✓ LayoutSQL;n=4096 (4725ms)
+    ✓ LayoutSQL;n=8192 (19430ms)
+    ✓ LayoutSQL;n=16384 (80873ms)
+    ✓ LayoutSQL;n=32768 (327041ms)
+    ✓ LayoutSQL;n=65536 (1305147ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..b3eb1eef26e49b10f8a0f3ee1be6edf60fe00930
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (40ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (227ms)
+    ✓ LayoutView;n=2048 (871ms)
+    ✓ LayoutView;n=4096 (3132ms)
+    ✓ LayoutView;n=8192 (12544ms)
+    ✓ LayoutView;n=16384 (53731ms)
+    ✓ LayoutView;n=32768 (225432ms)
+    ✓ LayoutView;n=65536 (1079523ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (95ms)
+    ✓ LayoutSQL;n=1024 (321ms)
+    ✓ LayoutSQL;n=2048 (1209ms)
+    ✓ LayoutSQL;n=4096 (4537ms)
+    ✓ LayoutSQL;n=8192 (17762ms)
+    ✓ LayoutSQL;n=16384 (79216ms)
+    ✓ LayoutSQL;n=32768 (339424ms)
+    ✓ LayoutSQL;n=65536 (1267506ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-05/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..0937d5732ca47fe954443e1467eb41e0cfc3eff4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (56ms)
+    ✓ LayoutView;n=512 (85ms)
+    ✓ LayoutView;n=1024 (253ms)
+    ✓ LayoutView;n=2048 (991ms)
+    ✓ LayoutView;n=4096 (3384ms)
+    ✓ LayoutView;n=8192 (13748ms)
+    ✓ LayoutView;n=16384 (59923ms)
+    ✓ LayoutView;n=32768 (253800ms)
+    ✓ LayoutView;n=65536 (1080173ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (96ms)
+    ✓ LayoutSQL;n=1024 (323ms)
+    ✓ LayoutSQL;n=2048 (1145ms)
+    ✓ LayoutSQL;n=4096 (4933ms)
+    ✓ LayoutSQL;n=8192 (18727ms)
+    ✓ LayoutSQL;n=16384 (78380ms)
+    ✓ LayoutSQL;n=32768 (322047ms)
+    ✓ LayoutSQL;n=65536 (1319282ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f2228ae13ba908c3789558a60311bdc7ef28bb6e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 235.05
+Mediana        = 240.5
+Variancia      = 335.63
+Desvio Padrao  = 18.32
+Coef. Variacao = 0.08
+Min            = 206
+Max            = 276
+Esq, Dir.      = 228.3118 , 241.7882
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4eefc12011a74c03d3efdd44867720130f915f69
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 240
+1024 276
+1024 224
+1024 243
+1024 222
+1024 228
+1024 250
+1024 242
+1024 213
+1024 218
+1024 214
+1024 245
+1024 241
+1024 206
+1024 253
+1024 226
+1024 243
+1024 250
+1024 257
+1024 210
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..bbece3e50fed4db56c52bd3316821a5e04b4fa97
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 567.7
+Mediana        = 598
+Variancia      = 28687.91
+Desvio Padrao  = 169.38
+Coef. Variacao = 0.3
+Min            = 108
+Max            = 767
+Esq, Dir.      = 505.4038 , 629.9962
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..acdf38a563e095018be51bc1e2eb0d4891b9e969
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 651
+1024 651
+1024 173
+1024 683
+1024 595
+1024 682
+1024 699
+1024 601
+1024 515
+1024 396
+1024 507
+1024 686
+1024 571
+1024 578
+1024 568
+1024 583
+1024 108
+1024 608
+1024 767
+1024 732
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e150952f6256010563ae814167eea855006451ba
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 19.85
+Mediana        = 18.5
+Variancia      = 14.66
+Desvio Padrao  = 3.83
+Coef. Variacao = 0.19
+Min            = 16
+Max            = 27
+Esq, Dir.      = 18.4417 , 21.2583
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..51e7445388b51362b23138eab78013c54e719c0c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 17
+128 17
+128 19
+128 27
+128 23
+128 17
+128 16
+128 17
+128 17
+128 27
+128 23
+128 21
+128 21
+128 18
+128 16
+128 19
+128 27
+128 22
+128 17
+128 16
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..47121deabedda82d23be4d5f37c6dec52e1196ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 35.7
+Mediana        = 34.5
+Variancia      = 61.48
+Desvio Padrao  = 7.84
+Coef. Variacao = 0.22
+Min            = 14
+Max            = 54
+Esq, Dir.      = 32.816 , 38.584
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..679cd0ecec6a84619e240c1c84598b571b33840b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 39
+128 40
+128 14
+128 32
+128 39
+128 40
+128 41
+128 33
+128 33
+128 30
+128 30
+128 38
+128 35
+128 33
+128 43
+128 31
+128 54
+128 31
+128 44
+128 34
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0a2c784700c23413b5ea823b3a21a33fde28fb99
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.3
+Mediana        = 9
+Variancia      = 0.33
+Desvio Padrao  = 0.57
+Coef. Variacao = 0.06
+Min            = 8
+Max            = 10
+Esq, Dir.      = 9.0899 , 9.5101
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8c80c9af8e8e7354b582f5afa47ef194c43dbdab
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 9
+16 10
+16 10
+16 9
+16 10
+16 10
+16 9
+16 10
+16 8
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
+16 9
+16 10
+16 9
+16 9
+16 9
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..8bd9add8bff78f5942fa7fafdde28ea125abc848
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 31.6
+Mediana        = 27.5
+Variancia      = 347.83
+Desvio Padrao  = 18.65
+Coef. Variacao = 0.59
+Min            = 18
+Max            = 109
+Esq, Dir.      = 24.7404 , 38.4596
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ffd999d8851d5fa9256631fe6095938f7e1d5f16
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 33
+16 31
+16 109
+16 26
+16 30
+16 30
+16 33
+16 27
+16 26
+16 28
+16 21
+16 33
+16 29
+16 26
+16 24
+16 27
+16 18
+16 27
+16 31
+16 23
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ec97193d83cc1b564b50d97f644562bde68a62aa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7009.95
+Mediana        = 6980
+Variancia      = 35860.05
+Desvio Padrao  = 189.37
+Coef. Variacao = 0.03
+Min            = 6687
+Max            = 7407
+Esq, Dir.      = 6940.3005 , 7079.5995
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4a80a393842d5dc9d6684e5f73dc4e9f39a4119f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 6880
+16384 6920
+16384 7115
+16384 6932
+16384 6744
+16384 7178
+16384 7407
+16384 6957
+16384 7184
+16384 6980
+16384 7396
+16384 6980
+16384 6864
+16384 6903
+16384 6805
+16384 7007
+16384 7061
+16384 7077
+16384 7122
+16384 6687
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ed6677e7669971dd0021d1427a7e582c10fc8dee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6567.95
+Mediana        = 6518
+Variancia      = 150561.42
+Desvio Padrao  = 388.02
+Coef. Variacao = 0.06
+Min            = 6118
+Max            = 8021
+Esq, Dir.      = 6425.2352 , 6710.6648
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..53094725cd9cee71a786072a81e5381eb4383b50
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 6694
+16384 6470
+16384 6477
+16384 6517
+16384 6393
+16384 6549
+16384 6610
+16384 6662
+16384 6209
+16384 8021
+16384 6480
+16384 6519
+16384 6208
+16384 6526
+16384 6118
+16384 6620
+16384 6825
+16384 6753
+16384 6399
+16384 6309
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f6594677f3ac89b0ea941ff9fb0523f40931230f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 846.8
+Mediana        = 870
+Variancia      = 12044.91
+Desvio Padrao  = 109.75
+Coef. Variacao = 0.13
+Min            = 700
+Max            = 1052
+Esq, Dir.      = 806.4342 , 887.1658
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b32d9c6270f8ab8b40251079a75f1ee02a021316
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 842
+2048 1052
+2048 726
+2048 876
+2048 739
+2048 883
+2048 951
+2048 989
+2048 702
+2048 833
+2048 715
+2048 995
+2048 876
+2048 727
+2048 967
+2048 734
+2048 884
+2048 864
+2048 881
+2048 700
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..cc09243d7d54e0debc98719fb37d23a6a48148bc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 798.95
+Mediana        = 849.5
+Variancia      = 89790.26
+Desvio Padrao  = 299.65
+Coef. Variacao = 0.38
+Min            = 194
+Max            = 1223
+Esq, Dir.      = 688.7385 , 909.1615
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..58cdb61a25146ac78aa9d10fbf4e976feef1f8af
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 886
+2048 863
+2048 201
+2048 1062
+2048 957
+2048 1068
+2048 655
+2048 831
+2048 757
+2048 215
+2048 646
+2048 1223
+2048 1083
+2048 876
+2048 1179
+2048 785
+2048 194
+2048 799
+2048 859
+2048 840
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9bbc3b17444bca3b7293c9da4cffd766a55f4d88
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 29.3
+Mediana        = 29
+Variancia      = 7.38
+Desvio Padrao  = 2.72
+Coef. Variacao = 0.09
+Min            = 27
+Max            = 40
+Esq, Dir.      = 28.3009 , 30.2991
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a67c1258e4dabfc0c61b4cd8ada81e9523bb50f2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 29
+256 29
+256 31
+256 30
+256 30
+256 30
+256 28
+256 29
+256 27
+256 40
+256 29
+256 28
+256 28
+256 29
+256 28
+256 29
+256 29
+256 28
+256 27
+256 28
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b04ce7bb60d245626988ebc130e3ab8770617ad9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 80.05
+Mediana        = 82.5
+Variancia      = 418.05
+Desvio Padrao  = 20.45
+Coef. Variacao = 0.26
+Min            = 19
+Max            = 109
+Esq, Dir.      = 72.5299 , 87.5701
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ca4c9254e8b1183dcc61e95b5ffa343af9f53dfb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 81
+256 87
+256 51
+256 83
+256 82
+256 99
+256 99
+256 94
+256 70
+256 105
+256 64
+256 91
+256 83
+256 75
+256 93
+256 67
+256 19
+256 71
+256 109
+256 78
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b6e1dc6cc4f7ccaa3753f6af0d67c3bcea9a8eb9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.35
+Mediana        = 4
+Variancia      = 0.24
+Desvio Padrao  = 0.49
+Coef. Variacao = 0.11
+Min            = 4
+Max            = 5
+Esq, Dir.      = 4.17 , 4.53
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e2639700c66a1a6a624fa732bd9f974d52276841
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
+32 4
+32 4
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f603b0cf11281088a9615a63285757128fbfd67f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 10.15
+Mediana        = 10
+Variancia      = 5.61
+Desvio Padrao  = 2.37
+Coef. Variacao = 0.23
+Min            = 3
+Max            = 14
+Esq, Dir.      = 9.279 , 11.021
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..99e1652ce48418abd180e68189de4185482cfb64
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 12
+32 12
+32 9
+32 9
+32 12
+32 11
+32 12
+32 11
+32 9
+32 9
+32 10
+32 14
+32 10
+32 9
+32 10
+32 9
+32 3
+32 9
+32 14
+32 9
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d454fe18310658aa4273a80f57a4ad4e9df144d5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 31815.45
+Mediana        = 31843.5
+Variancia      = 1754968.68
+Desvio Padrao  = 1324.75
+Coef. Variacao = 0.04
+Min            = 29096
+Max            = 34368
+Esq, Dir.      = 31328.2055 , 32302.6945
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..375c21047a782bd03b6dcc0cd658d50ce9d00a62
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 31536
+32768 32774
+32768 32265
+32768 31489
+32768 30013
+32768 32653
+32768 34368
+32768 32088
+32768 32439
+32768 30001
+32768 33635
+32768 33254
+32768 31247
+32768 29096
+32768 31230
+32768 32822
+32768 31204
+32768 31599
+32768 32395
+32768 30201
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ffa7d21a4e48230b710b6400be2298aec58cacf1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 26249.65
+Mediana        = 26093
+Variancia      = 4073358.03
+Desvio Padrao  = 2018.26
+Coef. Variacao = 0.08
+Min            = 23452
+Max            = 32384
+Esq, Dir.      = 25507.3345 , 26991.9655
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..e3d1da7461d83d97d3801bef2289bc2e9b618dd7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 27347
+32768 25426
+32768 26589
+32768 24691
+32768 26097
+32768 25791
+32768 28308
+32768 28222
+32768 24133
+32768 32384
+32768 25352
+32768 26092
+32768 24239
+32768 27911
+32768 23452
+32768 24952
+32768 27331
+32768 26368
+32768 26094
+32768 24214
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f143b3bb60ae0dfbdc2de9259df1e51674fcfc77
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4121.25
+Mediana        = 4180
+Variancia      = 166357.67
+Desvio Padrao  = 407.87
+Coef. Variacao = 0.1
+Min            = 3439
+Max            = 4732
+Esq, Dir.      = 3971.2353 , 4271.2647
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4949939d8e884183b3363293f2f56b9e10dce190
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4306
+4096 4541
+4096 4003
+4096 4239
+4096 4014
+4096 4558
+4096 4584
+4096 4608
+4096 3439
+4096 4328
+4096 3442
+4096 4732
+4096 4085
+4096 3612
+4096 4377
+4096 3493
+4096 3975
+4096 4255
+4096 4121
+4096 3713
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b1746b13990f23b51e526f1c84b4a4ff9556e0ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 593.7
+Mediana        = 571
+Variancia      = 4709.59
+Desvio Padrao  = 68.63
+Coef. Variacao = 0.12
+Min            = 513
+Max            = 796
+Esq, Dir.      = 568.4592 , 618.9408
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..49a5396710c53aeb391aec9c0afc1e8400eb3ce1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 796
+4096 626
+4096 602
+4096 572
+4096 700
+4096 570
+4096 538
+4096 686
+4096 513
+4096 645
+4096 531
+4096 570
+4096 547
+4096 558
+4096 601
+4096 564
+4096 569
+4096 579
+4096 527
+4096 580
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1f65712fe34b214838d5244e05b542da26f9f84f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 67.7
+Mediana        = 64.5
+Variancia      = 102.85
+Desvio Padrao  = 10.14
+Coef. Variacao = 0.15
+Min            = 56
+Max            = 86
+Esq, Dir.      = 63.9699 , 71.4301
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b56f0dc668f198cf7fdc05389bdc88e527246236
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 82
+512 74
+512 62
+512 78
+512 62
+512 72
+512 80
+512 70
+512 59
+512 81
+512 76
+512 86
+512 56
+512 58
+512 67
+512 62
+512 56
+512 58
+512 59
+512 56
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..2138fa53517273d1e3e99aa8e8ab80a5487d12ed
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 178
+Mediana        = 194
+Variancia      = 3656.42
+Desvio Padrao  = 60.47
+Coef. Variacao = 0.34
+Min            = 32
+Max            = 310
+Esq, Dir.      = 155.7597 , 200.2403
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d5fd758917f19dc7542311d69ee9a9e865812621
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 203
+512 210
+512 58
+512 225
+512 227
+512 204
+512 310
+512 200
+512 150
+512 149
+512 149
+512 188
+512 156
+512 202
+512 153
+512 156
+512 32
+512 150
+512 223
+512 215
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f71e0db58946d33c6a5169b955b13dab0f201050
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.8
+Mediana        = 10
+Variancia      = 0.59
+Desvio Padrao  = 0.77
+Coef. Variacao = 0.08
+Min            = 9
+Max            = 11
+Esq, Dir.      = 9.5176 , 10.0824
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7caa731227e1c78acb478971e8a17dbd6c31f8ce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 9
+64 10
+64 11
+64 10
+64 11
+64 9
+64 9
+64 9
+64 10
+64 9
+64 10
+64 11
+64 10
+64 10
+64 9
+64 10
+64 11
+64 10
+64 9
+64 9
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..8d07c1cd87ea00bbd8bb5c06dac0b120102c2b23
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 33.75
+Mediana        = 21
+Variancia      = 494.93
+Desvio Padrao  = 22.25
+Coef. Variacao = 0.66
+Min            = 12
+Max            = 73
+Esq, Dir.      = 25.5675 , 41.9325
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c456975bb4a23cdbb6ac9414593587d6d3111ba7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 65
+64 68
+64 22
+64 17
+64 20
+64 73
+64 22
+64 20
+64 16
+64 15
+64 15
+64 60
+64 60
+64 17
+64 19
+64 59
+64 12
+64 54
+64 23
+64 18
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..506e29f96d3a174f72e9aad8db929091908ce3fc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 124026.95
+Mediana        = 123707
+Variancia      = 78128079.84
+Desvio Padrao  = 8839.01
+Coef. Variacao = 0.07
+Min            = 112572
+Max            = 146575
+Esq, Dir.      = 120775.9585 , 127277.9415
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e4263866773e547f45eeb15c8808992918d1ed1f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 118206
+65536 129307
+65536 117369
+65536 133113
+65536 112572
+65536 130272
+65536 118792
+65536 112934
+65536 115826
+65536 114913
+65536 127790
+65536 122183
+65536 119381
+65536 146575
+65536 125231
+65536 130902
+65536 129874
+65536 113997
+65536 132379
+65536 128923
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c4174d93e1ea8f6956c5155164dbe998b7c47b92
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 114981.9
+Mediana        = 114255.5
+Variancia      = 88804151.78
+Desvio Padrao  = 9423.6
+Coef. Variacao = 0.08
+Min            = 97609
+Max            = 134801
+Esq, Dir.      = 111515.8973 , 118447.9027
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4929d7a88a1ddf948377848bbd17041b969641c3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 126668
+65536 113160
+65536 113527
+65536 110595
+65536 116257
+65536 113473
+65536 126603
+65536 116929
+65536 101192
+65536 134801
+65536 105069
+65536 125382
+65536 121862
+65536 112807
+65536 106934
+65536 103323
+65536 117966
+65536 114984
+65536 120497
+65536 97609
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..27a49548c74ee6cb6accb5725866dd0b8e4ef29b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2111.75
+Mediana        = 2097
+Variancia      = 6373.46
+Desvio Padrao  = 79.83
+Coef. Variacao = 0.04
+Min            = 1984
+Max            = 2269
+Esq, Dir.      = 2082.387 , 2141.113
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bdcfa4f5271c843126628d784ce60099c6c84d52
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 2053
+8192 2071
+8192 2138
+8192 2076
+8192 2016
+8192 2195
+8192 2205
+8192 2137
+8192 2112
+8192 2269
+8192 2218
+8192 2104
+8192 2064
+8192 1991
+8192 2072
+8192 2170
+8192 2215
+8192 2055
+8192 2090
+8192 1984
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..160ce91195a6ea3d0c38d643265cf357e6627e60
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1948.5
+Mediana        = 1889
+Variancia      = 19871.74
+Desvio Padrao  = 140.97
+Coef. Variacao = 0.07
+Min            = 1786
+Max            = 2404
+Esq, Dir.      = 1896.6522 , 2000.3478
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..dfa9bd06538f3029b63ef4e3e8e0a0df7d3cd911
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 1932
+8192 1883
+8192 1923
+8192 1950
+8192 1871
+8192 1888
+8192 1871
+8192 1936
+8192 1847
+8192 2404
+8192 2105
+8192 1885
+8192 1890
+8192 1872
+8192 1786
+8192 1989
+8192 2102
+8192 2126
+8192 1842
+8192 1868
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..6f73f810d03fe1c9ae6d8584b4db0a078a4e6fcc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (21ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (15ms)
+    ✓ LayoutView;n=128 (30ms)
+    ✓ LayoutView;n=256 (64ms)
+    ✓ LayoutView;n=512 (149ms)
+    ✓ LayoutView;n=1024 (507ms)
+    ✓ LayoutView;n=2048 (646ms)
+    ✓ LayoutView;n=4096 (531ms)
+    ✓ LayoutView;n=8192 (2105ms)
+    ✓ LayoutView;n=16384 (6480ms)
+    ✓ LayoutView;n=32768 (25352ms)
+    ✓ LayoutView;n=65536 (105069ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (76ms)
+    ✓ LayoutSQL;n=1024 (214ms)
+    ✓ LayoutSQL;n=2048 (715ms)
+    ✓ LayoutSQL;n=4096 (3442ms)
+    ✓ LayoutSQL;n=8192 (2218ms)
+    ✓ LayoutSQL;n=16384 (7396ms)
+    ✓ LayoutSQL;n=32768 (33635ms)
+    ✓ LayoutSQL;n=65536 (127790ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..8c8f34aec4e10aaf001fe0438c692c8fb19a480c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (15ms)
+    ✓ LayoutView;n=128 (30ms)
+    ✓ LayoutView;n=256 (105ms)
+    ✓ LayoutView;n=512 (149ms)
+    ✓ LayoutView;n=1024 (396ms)
+    ✓ LayoutView;n=2048 (215ms)
+    ✓ LayoutView;n=4096 (645ms)
+    ✓ LayoutView;n=8192 (2404ms)
+    ✓ LayoutView;n=16384 (8021ms)
+    ✓ LayoutView;n=32768 (32384ms)
+    ✓ LayoutView;n=65536 (134801ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (40ms)
+    ✓ LayoutSQL;n=512 (81ms)
+    ✓ LayoutSQL;n=1024 (218ms)
+    ✓ LayoutSQL;n=2048 (833ms)
+    ✓ LayoutSQL;n=4096 (4328ms)
+    ✓ LayoutSQL;n=8192 (2269ms)
+    ✓ LayoutSQL;n=16384 (6980ms)
+    ✓ LayoutSQL;n=32768 (30001ms)
+    ✓ LayoutSQL;n=65536 (114913ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..d6a72d29d6662771b842263310298b4df340ef64
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (18ms)
+    ✓ LayoutView;n=128 (34ms)
+    ✓ LayoutView;n=256 (78ms)
+    ✓ LayoutView;n=512 (215ms)
+    ✓ LayoutView;n=1024 (732ms)
+    ✓ LayoutView;n=2048 (840ms)
+    ✓ LayoutView;n=4096 (580ms)
+    ✓ LayoutView;n=8192 (1868ms)
+    ✓ LayoutView;n=16384 (6309ms)
+    ✓ LayoutView;n=32768 (24214ms)
+    ✓ LayoutView;n=65536 (97609ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (56ms)
+    ✓ LayoutSQL;n=1024 (210ms)
+    ✓ LayoutSQL;n=2048 (700ms)
+    ✓ LayoutSQL;n=4096 (3713ms)
+    ✓ LayoutSQL;n=8192 (1984ms)
+    ✓ LayoutSQL;n=16384 (6687ms)
+    ✓ LayoutSQL;n=32768 (30201ms)
+    ✓ LayoutSQL;n=65536 (128923ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ee7fc9cb98e2c3f735625a592a6921e37fc0cf80
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (20ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (94ms)
+    ✓ LayoutView;n=512 (200ms)
+    ✓ LayoutView;n=1024 (601ms)
+    ✓ LayoutView;n=2048 (831ms)
+    ✓ LayoutView;n=4096 (686ms)
+    ✓ LayoutView;n=8192 (1936ms)
+    ✓ LayoutView;n=16384 (6662ms)
+    ✓ LayoutView;n=32768 (28222ms)
+    ✓ LayoutView;n=65536 (116929ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (70ms)
+    ✓ LayoutSQL;n=1024 (242ms)
+    ✓ LayoutSQL;n=2048 (989ms)
+    ✓ LayoutSQL;n=4096 (4608ms)
+    ✓ LayoutSQL;n=8192 (2137ms)
+    ✓ LayoutSQL;n=16384 (6957ms)
+    ✓ LayoutSQL;n=32768 (32088ms)
+    ✓ LayoutSQL;n=65536 (112934ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..197ab756a17d7e5e5b96cb4285ebe56ca4f5ae85
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (59ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (67ms)
+    ✓ LayoutView;n=512 (156ms)
+    ✓ LayoutView;n=1024 (583ms)
+    ✓ LayoutView;n=2048 (785ms)
+    ✓ LayoutView;n=4096 (564ms)
+    ✓ LayoutView;n=8192 (1989ms)
+    ✓ LayoutView;n=16384 (6620ms)
+    ✓ LayoutView;n=32768 (24952ms)
+    ✓ LayoutView;n=65536 (103323ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (62ms)
+    ✓ LayoutSQL;n=1024 (226ms)
+    ✓ LayoutSQL;n=2048 (734ms)
+    ✓ LayoutSQL;n=4096 (3493ms)
+    ✓ LayoutSQL;n=8192 (2170ms)
+    ✓ LayoutSQL;n=16384 (7007ms)
+    ✓ LayoutSQL;n=32768 (32822ms)
+    ✓ LayoutSQL;n=65536 (130902ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..3d7c445e3ca2fd4d639635b94c9acad856140a13
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (83ms)
+    ✓ LayoutView;n=512 (225ms)
+    ✓ LayoutView;n=1024 (683ms)
+    ✓ LayoutView;n=2048 (1062ms)
+    ✓ LayoutView;n=4096 (572ms)
+    ✓ LayoutView;n=8192 (1950ms)
+    ✓ LayoutView;n=16384 (6517ms)
+    ✓ LayoutView;n=32768 (24691ms)
+    ✓ LayoutView;n=65536 (110595ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (78ms)
+    ✓ LayoutSQL;n=1024 (243ms)
+    ✓ LayoutSQL;n=2048 (876ms)
+    ✓ LayoutSQL;n=4096 (4239ms)
+    ✓ LayoutSQL;n=8192 (2076ms)
+    ✓ LayoutSQL;n=16384 (6932ms)
+    ✓ LayoutSQL;n=32768 (31489ms)
+    ✓ LayoutSQL;n=65536 (133113ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..7ac72f30b4802bc260d483fda48181353bf45ecd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (33ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (22ms)
+    ✓ LayoutView;n=128 (41ms)
+    ✓ LayoutView;n=256 (99ms)
+    ✓ LayoutView;n=512 (310ms)
+    ✓ LayoutView;n=1024 (699ms)
+    ✓ LayoutView;n=2048 (655ms)
+    ✓ LayoutView;n=4096 (538ms)
+    ✓ LayoutView;n=8192 (1871ms)
+    ✓ LayoutView;n=16384 (6610ms)
+    ✓ LayoutView;n=32768 (28308ms)
+    ✓ LayoutView;n=65536 (126603ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (80ms)
+    ✓ LayoutSQL;n=1024 (250ms)
+    ✓ LayoutSQL;n=2048 (951ms)
+    ✓ LayoutSQL;n=4096 (4584ms)
+    ✓ LayoutSQL;n=8192 (2205ms)
+    ✓ LayoutSQL;n=16384 (7407ms)
+    ✓ LayoutSQL;n=32768 (34368ms)
+    ✓ LayoutSQL;n=65536 (118792ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..f549ba6bb6486d9aaa12ad3f0df487fbee07a76b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (23ms)
+    ✓ LayoutView;n=128 (44ms)
+    ✓ LayoutView;n=256 (109ms)
+    ✓ LayoutView;n=512 (223ms)
+    ✓ LayoutView;n=1024 (767ms)
+    ✓ LayoutView;n=2048 (859ms)
+    ✓ LayoutView;n=4096 (527ms)
+    ✓ LayoutView;n=8192 (1842ms)
+    ✓ LayoutView;n=16384 (6399ms)
+    ✓ LayoutView;n=32768 (26094ms)
+    ✓ LayoutView;n=65536 (120497ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (59ms)
+    ✓ LayoutSQL;n=1024 (257ms)
+    ✓ LayoutSQL;n=2048 (881ms)
+    ✓ LayoutSQL;n=4096 (4121ms)
+    ✓ LayoutSQL;n=8192 (2090ms)
+    ✓ LayoutSQL;n=16384 (7122ms)
+    ✓ LayoutSQL;n=32768 (32395ms)
+    ✓ LayoutSQL;n=65536 (132379ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..e83a34b375515bc65101064c9352c552049824ea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (33ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (91ms)
+    ✓ LayoutView;n=512 (188ms)
+    ✓ LayoutView;n=1024 (686ms)
+    ✓ LayoutView;n=2048 (1223ms)
+    ✓ LayoutView;n=4096 (570ms)
+    ✓ LayoutView;n=8192 (1885ms)
+    ✓ LayoutView;n=16384 (6519ms)
+    ✓ LayoutView;n=32768 (26092ms)
+    ✓ LayoutView;n=65536 (125382ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (86ms)
+    ✓ LayoutSQL;n=1024 (245ms)
+    ✓ LayoutSQL;n=2048 (995ms)
+    ✓ LayoutSQL;n=4096 (4732ms)
+    ✓ LayoutSQL;n=8192 (2104ms)
+    ✓ LayoutSQL;n=16384 (6980ms)
+    ✓ LayoutSQL;n=32768 (33254ms)
+    ✓ LayoutSQL;n=65536 (122183ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..73e75d7982115863f60a7ba89383adf44455bb5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (54ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (71ms)
+    ✓ LayoutView;n=512 (150ms)
+    ✓ LayoutView;n=1024 (608ms)
+    ✓ LayoutView;n=2048 (799ms)
+    ✓ LayoutView;n=4096 (579ms)
+    ✓ LayoutView;n=8192 (2126ms)
+    ✓ LayoutView;n=16384 (6753ms)
+    ✓ LayoutView;n=32768 (26368ms)
+    ✓ LayoutView;n=65536 (114984ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (58ms)
+    ✓ LayoutSQL;n=1024 (250ms)
+    ✓ LayoutSQL;n=2048 (864ms)
+    ✓ LayoutSQL;n=4096 (4255ms)
+    ✓ LayoutSQL;n=8192 (2055ms)
+    ✓ LayoutSQL;n=16384 (7077ms)
+    ✓ LayoutSQL;n=32768 (31599ms)
+    ✓ LayoutSQL;n=65536 (113997ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..244007229c969951801d1c9cc70aaec77c061893
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (33ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (65ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (81ms)
+    ✓ LayoutView;n=512 (203ms)
+    ✓ LayoutView;n=1024 (651ms)
+    ✓ LayoutView;n=2048 (886ms)
+    ✓ LayoutView;n=4096 (796ms)
+    ✓ LayoutView;n=8192 (1932ms)
+    ✓ LayoutView;n=16384 (6694ms)
+    ✓ LayoutView;n=32768 (27347ms)
+    ✓ LayoutView;n=65536 (126668ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (82ms)
+    ✓ LayoutSQL;n=1024 (240ms)
+    ✓ LayoutSQL;n=2048 (842ms)
+    ✓ LayoutSQL;n=4096 (4306ms)
+    ✓ LayoutSQL;n=8192 (2053ms)
+    ✓ LayoutSQL;n=16384 (6880ms)
+    ✓ LayoutSQL;n=32768 (31536ms)
+    ✓ LayoutSQL;n=65536 (118206ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..360ae48cc7e64f6cb7541132953c15236e592652
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (109ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (22ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (58ms)
+    ✓ LayoutView;n=1024 (173ms)
+    ✓ LayoutView;n=2048 (201ms)
+    ✓ LayoutView;n=4096 (602ms)
+    ✓ LayoutView;n=8192 (1923ms)
+    ✓ LayoutView;n=16384 (6477ms)
+    ✓ LayoutView;n=32768 (26589ms)
+    ✓ LayoutView;n=65536 (113527ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (62ms)
+    ✓ LayoutSQL;n=1024 (224ms)
+    ✓ LayoutSQL;n=2048 (726ms)
+    ✓ LayoutSQL;n=4096 (4003ms)
+    ✓ LayoutSQL;n=8192 (2138ms)
+    ✓ LayoutSQL;n=16384 (7115ms)
+    ✓ LayoutSQL;n=32768 (32265ms)
+    ✓ LayoutSQL;n=65536 (117369ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..e5ae49de7396b49870b473615d09c86d40dd5612
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (68ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (87ms)
+    ✓ LayoutView;n=512 (210ms)
+    ✓ LayoutView;n=1024 (651ms)
+    ✓ LayoutView;n=2048 (863ms)
+    ✓ LayoutView;n=4096 (626ms)
+    ✓ LayoutView;n=8192 (1883ms)
+    ✓ LayoutView;n=16384 (6470ms)
+    ✓ LayoutView;n=32768 (25426ms)
+    ✓ LayoutView;n=65536 (113160ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (276ms)
+    ✓ LayoutSQL;n=2048 (1052ms)
+    ✓ LayoutSQL;n=4096 (4541ms)
+    ✓ LayoutSQL;n=8192 (2071ms)
+    ✓ LayoutSQL;n=16384 (6920ms)
+    ✓ LayoutSQL;n=32768 (32774ms)
+    ✓ LayoutSQL;n=65536 (129307ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..413e1160f89ceaeea77f61566751ef74f00588c3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (12ms)
+    ✓ LayoutView;n=128 (54ms)
+    ✓ LayoutView;n=256 (19ms)
+    ✓ LayoutView;n=512 (32ms)
+    ✓ LayoutView;n=1024 (108ms)
+    ✓ LayoutView;n=2048 (194ms)
+    ✓ LayoutView;n=4096 (569ms)
+    ✓ LayoutView;n=8192 (2102ms)
+    ✓ LayoutView;n=16384 (6825ms)
+    ✓ LayoutView;n=32768 (27331ms)
+    ✓ LayoutView;n=65536 (117966ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (56ms)
+    ✓ LayoutSQL;n=1024 (243ms)
+    ✓ LayoutSQL;n=2048 (884ms)
+    ✓ LayoutSQL;n=4096 (3975ms)
+    ✓ LayoutSQL;n=8192 (2215ms)
+    ✓ LayoutSQL;n=16384 (7061ms)
+    ✓ LayoutSQL;n=32768 (31204ms)
+    ✓ LayoutSQL;n=65536 (129874ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..0f4f747543ad8764978bc70fa5f60ce550749334
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (24ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (19ms)
+    ✓ LayoutView;n=128 (43ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (153ms)
+    ✓ LayoutView;n=1024 (568ms)
+    ✓ LayoutView;n=2048 (1179ms)
+    ✓ LayoutView;n=4096 (601ms)
+    ✓ LayoutView;n=8192 (1786ms)
+    ✓ LayoutView;n=16384 (6118ms)
+    ✓ LayoutView;n=32768 (23452ms)
+    ✓ LayoutView;n=65536 (106934ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (67ms)
+    ✓ LayoutSQL;n=1024 (253ms)
+    ✓ LayoutSQL;n=2048 (967ms)
+    ✓ LayoutSQL;n=4096 (4377ms)
+    ✓ LayoutSQL;n=8192 (2072ms)
+    ✓ LayoutSQL;n=16384 (6805ms)
+    ✓ LayoutSQL;n=32768 (31230ms)
+    ✓ LayoutSQL;n=65536 (125231ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..3f9ad6d78c78ff38ddb88fca75dd6a600ec99ac2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (20ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (227ms)
+    ✓ LayoutView;n=1024 (595ms)
+    ✓ LayoutView;n=2048 (957ms)
+    ✓ LayoutView;n=4096 (700ms)
+    ✓ LayoutView;n=8192 (1871ms)
+    ✓ LayoutView;n=16384 (6393ms)
+    ✓ LayoutView;n=32768 (26097ms)
+    ✓ LayoutView;n=65536 (116257ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (62ms)
+    ✓ LayoutSQL;n=1024 (222ms)
+    ✓ LayoutSQL;n=2048 (739ms)
+    ✓ LayoutSQL;n=4096 (4014ms)
+    ✓ LayoutSQL;n=8192 (2016ms)
+    ✓ LayoutSQL;n=16384 (6744ms)
+    ✓ LayoutSQL;n=32768 (30013ms)
+    ✓ LayoutSQL;n=65536 (112572ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..24872ef518d237b0cf3a0d37495ca0eda0f37a59
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (73ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (99ms)
+    ✓ LayoutView;n=512 (204ms)
+    ✓ LayoutView;n=1024 (682ms)
+    ✓ LayoutView;n=2048 (1068ms)
+    ✓ LayoutView;n=4096 (570ms)
+    ✓ LayoutView;n=8192 (1888ms)
+    ✓ LayoutView;n=16384 (6549ms)
+    ✓ LayoutView;n=32768 (25791ms)
+    ✓ LayoutView;n=65536 (113473ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (72ms)
+    ✓ LayoutSQL;n=1024 (228ms)
+    ✓ LayoutSQL;n=2048 (883ms)
+    ✓ LayoutSQL;n=4096 (4558ms)
+    ✓ LayoutSQL;n=8192 (2195ms)
+    ✓ LayoutSQL;n=16384 (7178ms)
+    ✓ LayoutSQL;n=32768 (32653ms)
+    ✓ LayoutSQL;n=65536 (130272ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..ca551b7b8457af0b9938d4fed28f54eee4db2557
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (83ms)
+    ✓ LayoutView;n=512 (156ms)
+    ✓ LayoutView;n=1024 (571ms)
+    ✓ LayoutView;n=2048 (1083ms)
+    ✓ LayoutView;n=4096 (547ms)
+    ✓ LayoutView;n=8192 (1890ms)
+    ✓ LayoutView;n=16384 (6208ms)
+    ✓ LayoutView;n=32768 (24239ms)
+    ✓ LayoutView;n=65536 (121862ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (56ms)
+    ✓ LayoutSQL;n=1024 (241ms)
+    ✓ LayoutSQL;n=2048 (876ms)
+    ✓ LayoutSQL;n=4096 (4085ms)
+    ✓ LayoutSQL;n=8192 (2064ms)
+    ✓ LayoutSQL;n=16384 (6864ms)
+    ✓ LayoutSQL;n=32768 (31247ms)
+    ✓ LayoutSQL;n=65536 (119381ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..e8d3a907deb173e62ee3999fc4c0e89e25a50982
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (16ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (70ms)
+    ✓ LayoutView;n=512 (150ms)
+    ✓ LayoutView;n=1024 (515ms)
+    ✓ LayoutView;n=2048 (757ms)
+    ✓ LayoutView;n=4096 (513ms)
+    ✓ LayoutView;n=8192 (1847ms)
+    ✓ LayoutView;n=16384 (6209ms)
+    ✓ LayoutView;n=32768 (24133ms)
+    ✓ LayoutView;n=65536 (101192ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (59ms)
+    ✓ LayoutSQL;n=1024 (213ms)
+    ✓ LayoutSQL;n=2048 (702ms)
+    ✓ LayoutSQL;n=4096 (3439ms)
+    ✓ LayoutSQL;n=8192 (2112ms)
+    ✓ LayoutSQL;n=16384 (7184ms)
+    ✓ LayoutSQL;n=32768 (32439ms)
+    ✓ LayoutSQL;n=65536 (115826ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-05/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..b77746678c557d6018c4b7498e40aa9d502e8d02
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (75ms)
+    ✓ LayoutView;n=512 (202ms)
+    ✓ LayoutView;n=1024 (578ms)
+    ✓ LayoutView;n=2048 (876ms)
+    ✓ LayoutView;n=4096 (558ms)
+    ✓ LayoutView;n=8192 (1872ms)
+    ✓ LayoutView;n=16384 (6526ms)
+    ✓ LayoutView;n=32768 (27911ms)
+    ✓ LayoutView;n=65536 (112807ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (58ms)
+    ✓ LayoutSQL;n=1024 (206ms)
+    ✓ LayoutSQL;n=2048 (727ms)
+    ✓ LayoutSQL;n=4096 (3612ms)
+    ✓ LayoutSQL;n=8192 (1991ms)
+    ✓ LayoutSQL;n=16384 (6903ms)
+    ✓ LayoutSQL;n=32768 (29096ms)
+    ✓ LayoutSQL;n=65536 (146575ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..25648ba0e3fc70fafa0a1a65a0bf7d42438c76a5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   96284 ms: Mark-sweep 1324.8 (1434.7) -> 1324.8 (1434.7) MB, 5924.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  103871 ms: Mark-sweep 1324.8 (1434.7) -> 1324.7 (1434.7) MB, 7585.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  110657 ms: Mark-sweep 1324.7 (1434.7) -> 1329.1 (1415.7) MB, 6786.1 / 0.0 ms [last resort gc].
+  117115 ms: Mark-sweep 1329.1 (1415.7) -> 1333.5 (1415.7) MB, 6457.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3916139cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1458178b8347] (this=0x8ef5c6129f9 <a Graph with map 0x17d732670681>,idV=0xea23a012819 <String[9]: dim:13467>,idU=0x1321111c6901 <String[9]: dim:13468>,value=0x2f3416466fb9 <a View with map 0x17d7326732d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1458178a3a35] (this=0x8ef5c6129f9 <a Graph with map 0x17d732670681...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x145816f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..c4f270367b771a853fbee23985d4548d011da60f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93720 ms: Mark-sweep 1324.6 (1436.7) -> 1322.5 (1436.7) MB, 6238.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   99297 ms: Mark-sweep 1322.5 (1436.7) -> 1322.5 (1436.7) MB, 5576.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  105185 ms: Mark-sweep 1322.5 (1436.7) -> 1326.6 (1413.7) MB, 5887.0 / 0.0 ms [last resort gc].
+  110852 ms: Mark-sweep 1326.6 (1413.7) -> 1330.8 (1413.7) MB, 5666.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x11f0a5acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x29b9f13d9a38] (this=0x3f3ab4fb3801 <a Graph with map 0xd1a78e707e1>,idV=0x183f368f2bb1 <String[9]: dim:13158>,idU=0x3978ee73b8d1 <String[9]: dim:13161>,value=0x1683f35ca599 <a View with map 0xd1a78e73439>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x29b9f13acb75] (this=0x3f3ab4fb3801 <a Graph with map 0xd1a78e707e1...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x29b9f0a079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..073b3733f5c193ebc7b9631d73fcf972370f542e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  101987 ms: Mark-sweep 1322.5 (1436.7) -> 1322.5 (1436.7) MB, 6221.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  108133 ms: Mark-sweep 1322.5 (1436.7) -> 1322.4 (1436.7) MB, 6146.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  114100 ms: Mark-sweep 1322.4 (1436.7) -> 1326.7 (1413.7) MB, 5965.9 / 0.0 ms [last resort gc].
+  119778 ms: Mark-sweep 1326.7 (1413.7) -> 1331.1 (1413.7) MB, 5678.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x32df4aecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe73d48c69f8] (this=0x7eeb4bcf3f9 <a Graph with map 0x3c079984479>,idV=0x329463f21101 <String[9]: dim:13143>,idU=0x329463f7e6e9 <String[9]: dim:13145>,value=0x3e71b33e5b09 <a View with map 0x3c0799870d1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe73d4898555] (this=0x7eeb4bcf3f9 <a Graph with map 0x3c079984479>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xe73d3f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ec6ff0463d7919973ef8206dedc6b2c40e74bea2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   86596 ms: Mark-sweep 1328.8 (1434.7) -> 1319.9 (1434.7) MB, 5993.2 / 0.0 ms [allocation failure] [GC in old space requested].
+   93859 ms: Mark-sweep 1319.9 (1434.7) -> 1319.9 (1434.7) MB, 7262.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  100191 ms: Mark-sweep 1319.9 (1434.7) -> 1326.9 (1416.7) MB, 6331.6 / 0.0 ms [last resort gc].
+  106915 ms: Mark-sweep 1326.9 (1416.7) -> 1334.0 (1416.7) MB, 6723.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1a514bccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12a8858c5621] (this=0x16345bcb4799 <a Graph with map 0x31c3a5870839>,idV=0x78bb523b1d1 <String[9]: dim:12760>,idU=0x78bb5246e51 <String[9]: dim:12765>,value=0x31b8fabc37d9 <a View with map 0x31c3a5873491>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12a885897335] (this=0x16345bcb4799 <a Graph with map 0x31c3a587083...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x12a884f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..640f8321b38f895d7ea3e9b73d6e3a54fc5641d5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  107252 ms: Mark-sweep 1320.9 (1436.7) -> 1320.8 (1436.7) MB, 5524.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  113120 ms: Mark-sweep 1320.8 (1436.7) -> 1320.8 (1436.7) MB, 5867.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  118199 ms: Mark-sweep 1320.8 (1436.7) -> 1326.3 (1412.7) MB, 5078.7 / 0.0 ms [last resort gc].
+  122992 ms: Mark-sweep 1326.3 (1412.7) -> 1331.9 (1412.7) MB, 4792.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x118143ccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3309ee1969e7] (this=0x55d77e94b99 <a Graph with map 0x1b4ae1c702b9>,idV=0x24c55c65ab29 <String[9]: dim:12916>,idU=0x24c55c61c3b1 <String[9]: dim:12917>,value=0x10888a7a6c41 <a View with map 0x1b4ae1c72f11>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3309ee1925b5] (this=0x55d77e94b99 <a Graph with map 0x1b4ae1c702b...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3309ed8079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..660fe7fedfcb96f8343009ee6c19510088d967be
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   91845 ms: Mark-sweep 1330.8 (1434.7) -> 1323.0 (1434.7) MB, 6286.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   98718 ms: Mark-sweep 1323.0 (1434.7) -> 1323.0 (1434.7) MB, 6872.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  105463 ms: Mark-sweep 1323.0 (1434.7) -> 1328.9 (1416.7) MB, 6743.4 / 0.0 ms [last resort gc].
+  111430 ms: Mark-sweep 1328.9 (1416.7) -> 1335.0 (1416.7) MB, 5966.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x277942fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xca59e8b703a] (this=0x37f8a4f09bf1 <a Graph with map 0x19e485870261>,idV=0x1a91099d6af9 <String[9]: dim:13200>,idU=0x1a91099bfa01 <String[9]: dim:13204>,value=0x2690dac58ea9 <a View with map 0x19e485872eb9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xca59e8a0b95] (this=0x37f8a4f09bf1 <a Graph with map 0x19e48587026...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xca59df079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..452eb870fd572008121cd92ab585328cc673ccff
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   99595 ms: Mark-sweep 1323.7 (1434.7) -> 1323.7 (1434.7) MB, 5061.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  104951 ms: Mark-sweep 1323.7 (1434.7) -> 1323.6 (1434.7) MB, 5356.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  110524 ms: Mark-sweep 1323.6 (1434.7) -> 1329.4 (1416.7) MB, 5571.5 / 0.0 ms [last resort gc].
+  116185 ms: Mark-sweep 1329.4 (1416.7) -> 1335.3 (1416.7) MB, 5661.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2cacd0ecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x379d622d7627] (this=0x2e055b1c5ad1 <a Graph with map 0xdffc06e1b9>,idV=0x1073a0afb3a1 <String[9]: dim:13391>,idU=0x1073a0abe1a1 <String[9]: dim:13392>,value=0x266cc1375ae1 <a View with map 0xdffc070e11>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x379d622acc55] (this=0x2e055b1c5ad1 <a Graph with map 0xdffc06e1b9>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x379d619079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..462bd20f12eb0af15c48e8e87bfbfc998d7b6256
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   86867 ms: Mark-sweep 1325.2 (1436.7) -> 1322.9 (1436.7) MB, 4427.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   91529 ms: Mark-sweep 1322.9 (1436.7) -> 1322.9 (1436.7) MB, 4661.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   96623 ms: Mark-sweep 1322.9 (1436.7) -> 1327.9 (1413.7) MB, 5092.8 / 0.0 ms [last resort gc].
+  101759 ms: Mark-sweep 1327.9 (1413.7) -> 1333.1 (1413.7) MB, 5135.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3bb8c74cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2029b65c9907] (this=0x2126e5587ec9 <a Graph with map 0x336ed4870789>,idV=0x24f91f94d599 <String[9]: dim:13202>,idU=0x2a9e9e6ca161 <String[9]: dim:13205>,value=0x2d5239a9f8b9 <a View with map 0x336ed48733e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2029b6dead35] (this=0x2126e5587ec9 <a Graph with map 0x336ed4870...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2029b64079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..7ee9de8831f5e7f16103d190946fd7cad7f3f15c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   96454 ms: Mark-sweep 1324.3 (1434.7) -> 1324.3 (1434.7) MB, 5076.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  103110 ms: Mark-sweep 1324.3 (1434.7) -> 1324.2 (1434.7) MB, 6655.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  108311 ms: Mark-sweep 1324.2 (1434.7) -> 1329.3 (1416.7) MB, 5200.8 / 0.0 ms [last resort gc].
+  112931 ms: Mark-sweep 1329.3 (1416.7) -> 1334.5 (1416.7) MB, 4619.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x14d462ccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x7efdf0bd507] (this=0xc19e71f7d19 <a Graph with map 0x2faaa46707e1>,idV=0x305b6d4ac741 <String[9]: dim:13392>,idU=0x305b6d4ca121 <String[9]: dim:13393>,value=0x1c58f634ef99 <a View with map 0x2faaa4673439>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x7efdf0a7055] (this=0xc19e71f7d19 <a Graph with map 0x2faaa46707e1>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x7efde7079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..70f3eb23de96aa3ac23c177215706c074090a212
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run18.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94070 ms: Mark-sweep 1328.7 (1434.7) -> 1324.6 (1434.7) MB, 5782.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  100237 ms: Mark-sweep 1324.6 (1434.7) -> 1324.6 (1434.7) MB, 6166.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  106297 ms: Mark-sweep 1324.6 (1434.7) -> 1328.7 (1418.7) MB, 6053.8 / 0.0 ms [last resort gc].
+  113151 ms: Mark-sweep 1328.7 (1418.7) -> 1332.9 (1418.7) MB, 6853.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x73bec1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x162462cab6cc] (this=0x2955caeb0489 <a Graph with map 0x3a9fbb084371>,idV=0x1eccea8ec7e1 <String[9]: dim:13440>,idU=0xf7c94409871 <String[9]: dim:13446>,value=0x20fdbd5cc979 <a View with map 0x3a9fbb086fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x162462ca7bf5] (this=0x2955caeb0489 <a Graph with map 0x3a9fbb08437...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x1624623092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..262827d1d858d489a2d2cda0dfff96f60808ded8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94100 ms: Mark-sweep 1324.0 (1436.7) -> 1322.2 (1436.7) MB, 6311.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  100623 ms: Mark-sweep 1322.2 (1436.7) -> 1322.2 (1436.7) MB, 6522.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  107026 ms: Mark-sweep 1322.2 (1436.7) -> 1326.7 (1413.7) MB, 6402.5 / 0.0 ms [last resort gc].
+  113050 ms: Mark-sweep 1326.7 (1413.7) -> 1331.3 (1413.7) MB, 6023.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x29668c9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xafa40aba087] (this=0x1885baffd0c1 <a Graph with map 0x2ed3ddb84319>,idV=0x63aa937e0a9 <String[9]: dim:13099>,idU=0x63aa9369e99 <String[9]: dim:13101>,value=0xf85ba916fc9 <a View with map 0x2ed3ddb86f71>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xafa40a9a955] (this=0x1885baffd0c1 <a Graph with map 0x2ed3ddb84319>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xafa401079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..9779f0c8a1888142ad0840d5862119151bb730ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   88492 ms: Mark-sweep 1326.9 (1434.7) -> 1319.7 (1434.7) MB, 5902.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   94529 ms: Mark-sweep 1319.7 (1434.7) -> 1319.7 (1434.7) MB, 6036.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  100719 ms: Mark-sweep 1319.7 (1434.7) -> 1324.7 (1415.7) MB, 6189.1 / 0.0 ms [last resort gc].
+  107009 ms: Mark-sweep 1324.7 (1415.7) -> 1329.8 (1415.7) MB, 6290.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x26724f5cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x16f5eecdaf01] (this=0x229f6a8965a9 <a Graph with map 0xb306a270681>,idV=0xc2bbb266319 <String[9]: dim:12764>,idU=0xc2bbb245829 <String[9]: dim:12770>,value=0x26a534fa51f9 <a View with map 0xb306a2732d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x16f5eecacd55] (this=0x229f6a8965a9 <a Graph with map 0xb306a270681>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x16f5ee3079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..c360fc742d23040222fff64655bf800379c6cd97
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94925 ms: Mark-sweep 1322.4 (1434.7) -> 1320.7 (1434.7) MB, 6051.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  100844 ms: Mark-sweep 1320.7 (1434.7) -> 1320.8 (1434.7) MB, 5918.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  106761 ms: Mark-sweep 1320.8 (1434.7) -> 1325.5 (1414.7) MB, 5916.7 / 0.0 ms [last resort gc].
+  112397 ms: Mark-sweep 1325.5 (1414.7) -> 1330.4 (1414.7) MB, 5635.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3ac00e8cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fe030595298] (this=0x7f1ce1d2269 <a Graph with map 0x3a3cee1702b9>,idV=0x16e4f5f7b1a1 <String[9]: dim:12887>,idU=0x16e4f5f64fb1 <String[9]: dim:12890>,value=0x29bf916e39a1 <a View with map 0x3a3cee172f11>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fe0305a0435] (this=0x7f1ce1d2269 <a Graph with map 0x3a3cee1702b...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3fe02fc079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..f0225c70ab12188561682e990ce2e0ecc61d59f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   99886 ms: Mark-sweep 1322.2 (1436.7) -> 1322.1 (1436.7) MB, 6439.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  105698 ms: Mark-sweep 1322.1 (1436.7) -> 1322.1 (1436.7) MB, 5811.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  110485 ms: Mark-sweep 1322.1 (1436.7) -> 1326.0 (1413.7) MB, 4786.5 / 0.0 ms [last resort gc].
+  115988 ms: Mark-sweep 1326.0 (1413.7) -> 1329.9 (1413.7) MB, 5502.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x32eee4ccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2862f48c8e27] (this=0x3114a40ec0d9 <a Graph with map 0x3f9368d843c9>,idV=0x176c4eec5079 <String[9]: dim:13107>,idU=0x176c4eeb2271 <String[9]: dim:13108>,value=0x3cf6c1905e71 <a View with map 0x3f9368d87021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2862f48abf75] (this=0x3114a40ec0d9 <a Graph with map 0x3f9368d84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2862f3f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..7c43560b6f767d0ecf9bf7e503fd525d71610c33
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   89549 ms: Mark-sweep 1333.2 (1434.7) -> 1324.2 (1434.7) MB, 5153.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   96792 ms: Mark-sweep 1324.2 (1434.7) -> 1324.2 (1434.7) MB, 7243.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  103174 ms: Mark-sweep 1324.2 (1434.7) -> 1330.2 (1417.7) MB, 6380.8 / 0.0 ms [last resort gc].
+  108581 ms: Mark-sweep 1330.2 (1417.7) -> 1336.2 (1416.7) MB, 5407.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x38253f1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x38108acb8ae7] (this=0x20a0ac113ee1 <a Graph with map 0x61fe8c707e1>,idV=0xbcf0b2d929 <String[9]: dim:13383>,idU=0xbcf0b781e9 <String[9]: dim:13384>,value=0x1397ce12eef9 <a View with map 0x61fe8c73439>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x38108acb46b5] (this=0x20a0ac113ee1 <a Graph with map 0x61fe8c707e1>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x38108a3079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..287d6c8af9ed9e93c0eec345fc6271b1244f349d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   87281 ms: Mark-sweep 1327.7 (1434.7) -> 1319.4 (1434.7) MB, 6119.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   92834 ms: Mark-sweep 1319.4 (1434.7) -> 1319.3 (1434.7) MB, 5552.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   98777 ms: Mark-sweep 1319.3 (1434.7) -> 1325.9 (1416.7) MB, 5942.2 / 0.0 ms [last resort gc].
+  106373 ms: Mark-sweep 1325.9 (1416.7) -> 1332.5 (1416.7) MB, 7595.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1554d35cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c8ac3b72c7] (this=0x310a7e8e8d39 <a Graph with map 0x353621c706d9>,idV=0x29394fc56cb1 <String[9]: dim:12675>,idU=0x29394fc97d61 <String[9]: dim:12680>,value=0x1cce1ddf63b9 <a View with map 0x353621c73331>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c8ac3975f5] (this=0x310a7e8e8d39 <a Graph with map 0x353621c706d...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3c8aba079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..fcd28019d635973ea7c579c06535ff990c265cdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94263 ms: Mark-sweep 1323.8 (1437.7) -> 1322.1 (1437.7) MB, 6383.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  100753 ms: Mark-sweep 1322.1 (1437.7) -> 1322.1 (1437.7) MB, 6489.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  107085 ms: Mark-sweep 1322.1 (1437.7) -> 1326.9 (1414.7) MB, 6332.0 / 0.0 ms [last resort gc].
+  111434 ms: Mark-sweep 1326.9 (1414.7) -> 1331.9 (1414.7) MB, 4348.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2587d05cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35e05a4c9218] (this=0x1ec92fcfc289 <a Graph with map 0x99f33d84479>,idV=0x1e87fc5600b9 <String[9]: dim:13092>,idU=0x1e87fc5892e9 <String[9]: dim:13098>,value=0x32101415e99 <a View with map 0x99f33d870d1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35e05a4b1115] (this=0x1ec92fcfc289 <a Graph with map 0x99f33d84479>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x35e059b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..e314545e3ce315350eaf55bbef3fef7c7c5e88ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   98564 ms: Mark-sweep 1322.8 (1436.7) -> 1322.7 (1436.7) MB, 4292.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  102911 ms: Mark-sweep 1322.7 (1436.7) -> 1322.7 (1436.7) MB, 4347.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  107388 ms: Mark-sweep 1322.7 (1436.7) -> 1326.6 (1413.7) MB, 4475.6 / 0.0 ms [last resort gc].
+  113422 ms: Mark-sweep 1326.6 (1413.7) -> 1330.6 (1413.7) MB, 6034.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1ac59d4cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xde472ad3a21] (this=0x3967fb2ba759 <a Graph with map 0x27e0de707e1>,idV=0x13ed4c1771c9 <String[9]: dim:13192>,idU=0x13ed4c135221 <String[9]: dim:13193>,value=0x3cfbf70d1ed1 <a View with map 0x27e0de73439>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xde472aa5875] (this=0x3967fb2ba759 <a Graph with map 0x27e0de707e1>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xde4721079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..4b21bdc8aead1c6a1fe5a837b85585dce3cf7409
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   87609 ms: Mark-sweep 1324.6 (1437.7) -> 1322.5 (1437.7) MB, 6016.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   93264 ms: Mark-sweep 1322.5 (1437.7) -> 1322.5 (1437.7) MB, 5654.6 / 0.0 ms [allocation failure] [GC in old space requested].
+   99338 ms: Mark-sweep 1322.5 (1437.7) -> 1327.3 (1414.7) MB, 6073.3 / 0.0 ms [last resort gc].
+  103499 ms: Mark-sweep 1327.3 (1414.7) -> 1332.2 (1414.7) MB, 4160.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1a7c422cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2ac6787d5101] (this=0x3e8e31cc8329 <a Graph with map 0x3ad149e84841>,idV=0x3f078ae850b9 <String[9]: dim:13151>,idU=0x3f078ae26319 <String[9]: dim:13152>,value=0x386e1f1dee51 <a View with map 0x3ad149e87499>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2ac6787a68b5] (this=0x3e8e31cc8329 <a Graph with map 0x3ad149e84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2ac677e079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-05/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-05/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..4cfcfd19a948f9e30b1a47ca0ae0f76caa68e8b5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-05/linear8/run9.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   85692 ms: Mark-sweep 1370.8 (1430.5) -> 1359.3 (1431.5) MB, 6404.7 / 0.0 ms [allocation failure] [GC in old space requested].
+   92330 ms: Mark-sweep 1359.3 (1431.5) -> 1359.2 (1434.5) MB, 6637.2 / 0.0 ms [allocation failure] [GC in old space requested].
+   99575 ms: Mark-sweep 1359.2 (1434.5) -> 1363.5 (1401.5) MB, 7245.1 / 0.0 ms [last resort gc].
+  105759 ms: Mark-sweep 1363.5 (1401.5) -> 1363.5 (1397.5) MB, 6183.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2c1a642cf781 <JS Object>
+    1: charCodeAt [native string.js:~50] [pc=0x144903a28873] (this=0x2bc0a71495a9 <Very long string[16598090]>,t=0)
+    2: loadDocuments(aka loadDocuments) [/home/blendb/blendb/node_modules/js-yaml/lib/js-yaml/loader.js:1542] [pc=0x144903ab5d54] (this=0x2c1a64204381 <undefined>,input=0x208a58204201 <Very long string[16598089]>,options=0x2bc0a7149499 <an Object with map 0x38cdde584421>)
+    3: l...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewRawOneByteString(int, v8::internal::PretenureFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::String::SlowFlatten(v8::internal::Handle<v8::internal::ConsString>, v8::internal::PretenureFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Runtime_StringCharCodeAtRT(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: 0x1449015079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8f7a6c4189fe4e6987a6c37d1711a5e4d9d850f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 341.9
+Mediana        = 339
+Variancia      = 368.31
+Desvio Padrao  = 19.19
+Coef. Variacao = 0.06
+Min            = 309
+Max            = 395
+Esq, Dir.      = 334.8414 , 348.9586
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..faf29e42e6b276e8596f44f05336fe73d17c0d75
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 324
+1024 353
+1024 357
+1024 339
+1024 333
+1024 366
+1024 336
+1024 339
+1024 395
+1024 321
+1024 328
+1024 327
+1024 332
+1024 362
+1024 342
+1024 309
+1024 342
+1024 334
+1024 340
+1024 359
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..d8d212dfaa42bbc057007340ade98d7291a85499
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 240.85
+Mediana        = 242.5
+Variancia      = 81.92
+Desvio Padrao  = 9.05
+Coef. Variacao = 0.04
+Min            = 223
+Max            = 253
+Esq, Dir.      = 237.521 , 244.179
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..3bfa1e98ecf382f3573b8b9f3388d658a4f68d48
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 246
+1024 239
+1024 223
+1024 250
+1024 250
+1024 243
+1024 243
+1024 249
+1024 237
+1024 241
+1024 245
+1024 253
+1024 234
+1024 251
+1024 232
+1024 242
+1024 226
+1024 224
+1024 241
+1024 248
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c54767834c9ef3b64269393afa40c2bd754b355c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 23.55
+Mediana        = 23
+Variancia      = 7.52
+Desvio Padrao  = 2.74
+Coef. Variacao = 0.12
+Min            = 21
+Max            = 31
+Esq, Dir.      = 22.5411 , 24.5589
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..70ca67d4a1f3f96f8ba7dc4eb9fd7361c1fc7e87
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 22
+128 22
+128 24
+128 23
+128 24
+128 21
+128 21
+128 23
+128 31
+128 23
+128 22
+128 22
+128 23
+128 24
+128 23
+128 21
+128 21
+128 24
+128 29
+128 28
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f5b2ea21281e3008d758458c67b94266ade0fb4d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 16.05
+Mediana        = 14.5
+Variancia      = 28.47
+Desvio Padrao  = 5.34
+Coef. Variacao = 0.33
+Min            = 12
+Max            = 36
+Esq, Dir.      = 14.0875 , 18.0125
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1510da2d9525cad1d1923603fd134589fde72254
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 15
+128 14
+128 12
+128 12
+128 19
+128 21
+128 16
+128 16
+128 13
+128 14
+128 14
+128 14
+128 19
+128 15
+128 13
+128 18
+128 12
+128 36
+128 13
+128 15
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5eb030f861becb4abf1bc324c8637457f84ca603
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.95
+Mediana        = 11
+Variancia      = 0.47
+Desvio Padrao  = 0.69
+Coef. Variacao = 0.06
+Min            = 10
+Max            = 13
+Esq, Dir.      = 10.6976 , 11.2024
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b696ac2af78242b8f22877931b3aa9528bf63af9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 11
+16 10
+16 13
+16 11
+16 11
+16 11
+16 11
+16 11
+16 12
+16 11
+16 10
+16 11
+16 11
+16 10
+16 11
+16 11
+16 11
+16 11
+16 11
+16 10
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..a7a8b7ec6124fed7d8e169c8f8bd5c9f9f052dac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 16.2
+Mediana        = 16
+Variancia      = 3.33
+Desvio Padrao  = 1.82
+Coef. Variacao = 0.11
+Min            = 14
+Max            = 21
+Esq, Dir.      = 15.5292 , 16.8708
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d65d2cf951a4ff6d49293dafb28687e81cea18aa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 20
+16 14
+16 14
+16 16
+16 17
+16 18
+16 17
+16 21
+16 15
+16 16
+16 16
+16 17
+16 15
+16 16
+16 14
+16 15
+16 15
+16 16
+16 16
+16 16
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ea5715f6e5087c5acf3f60005f69390e21f4b413
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 79335.5
+Mediana        = 79663.5
+Variancia      = 37570478.79
+Desvio Padrao  = 6129.48
+Coef. Variacao = 0.08
+Min            = 68395
+Max            = 89740
+Esq, Dir.      = 77081.0759 , 81589.9241
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..014dff7372115081bf9af6b4dca37b53d8cc2fc0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 69347
+16384 84424
+16384 87198
+16384 84464
+16384 79739
+16384 89740
+16384 79588
+16384 80480
+16384 87967
+16384 70867
+16384 76621
+16384 77505
+16384 76809
+16384 84578
+16384 81276
+16384 68395
+16384 73001
+16384 77110
+16384 82696
+16384 74905
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1c1712ddbcfc1dbd1e730cbf36a867011681f69b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 57145.35
+Mediana        = 57623.5
+Variancia      = 10312538.24
+Desvio Padrao  = 3211.31
+Coef. Variacao = 0.06
+Min            = 50567
+Max            = 61662
+Esq, Dir.      = 55964.2272 , 58326.4728
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..05a0f41245e71380fbc896b61e3f73a173f7bca0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 58032
+16384 58651
+16384 50567
+16384 58785
+16384 61195
+16384 56235
+16384 57215
+16384 55399
+16384 54746
+16384 57010
+16384 55822
+16384 61020
+16384 58883
+16384 60986
+16384 55897
+16384 61662
+16384 51340
+16384 52087
+16384 58284
+16384 59091
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9ccf7c1d1be9b9fbb6604492fb6656c1bdd2ad82
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1223.3
+Mediana        = 1224.5
+Variancia      = 4739.8
+Desvio Padrao  = 68.85
+Coef. Variacao = 0.06
+Min            = 1086
+Max            = 1416
+Esq, Dir.      = 1197.9783 , 1248.6217
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..75557ca144d3953085576f37edcf1d9ed61cd0b0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1146
+2048 1274
+2048 1270
+2048 1230
+2048 1167
+2048 1302
+2048 1223
+2048 1240
+2048 1416
+2048 1144
+2048 1232
+2048 1216
+2048 1205
+2048 1284
+2048 1226
+2048 1086
+2048 1193
+2048 1189
+2048 1232
+2048 1191
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6ca3945753c949853d3f07178d776ed6fca627bd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 934
+Mediana        = 943
+Variancia      = 1395.37
+Desvio Padrao  = 37.35
+Coef. Variacao = 0.04
+Min            = 866
+Max            = 985
+Esq, Dir.      = 920.261 , 947.739
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ab1718021e16c8072c938be768d75340b894dc0e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 951
+2048 929
+2048 866
+2048 931
+2048 979
+2048 950
+2048 948
+2048 976
+2048 915
+2048 950
+2048 938
+2048 985
+2048 894
+2048 973
+2048 902
+2048 950
+2048 869
+2048 874
+2048 924
+2048 976
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..fb36ccd09f367c5dcd6ff78f4b0bdc16ffc2b576
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 34.25
+Mediana        = 34
+Variancia      = 2.93
+Desvio Padrao  = 1.71
+Coef. Variacao = 0.05
+Min            = 32
+Max            = 38
+Esq, Dir.      = 33.62 , 34.88
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c7ae6dc53fa1c17a0b8339db35a0400b270c6638
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 33
+256 35
+256 37
+256 35
+256 34
+256 36
+256 33
+256 34
+256 37
+256 32
+256 34
+256 34
+256 34
+256 38
+256 34
+256 32
+256 32
+256 35
+256 33
+256 33
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1a80eb1659be3c110e5718ba15657ca2c99ae2ff
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 38.3
+Mediana        = 42.5
+Variancia      = 116.85
+Desvio Padrao  = 10.81
+Coef. Variacao = 0.28
+Min            = 24
+Max            = 52
+Esq, Dir.      = 34.3241 , 42.2759
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8f331d1e5e4ae610c5a911cd0cf121a8513b91ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 27
+256 25
+256 41
+256 41
+256 29
+256 51
+256 44
+256 52
+256 25
+256 46
+256 47
+256 51
+256 46
+256 48
+256 25
+256 25
+256 45
+256 24
+256 47
+256 27
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a3cb4472222b117582fc46be4ab11a4b5cddf40e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 5.25
+Mediana        = 5
+Variancia      = 0.51
+Desvio Padrao  = 0.72
+Coef. Variacao = 0.14
+Min            = 4
+Max            = 6
+Esq, Dir.      = 4.9865 , 5.5135
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..08763128bb220684f1bf4ac3a6aca598f1f221bb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 6
+32 6
+32 6
+32 5
+32 5
+32 4
+32 6
+32 5
+32 5
+32 5
+32 6
+32 5
+32 5
+32 6
+32 6
+32 4
+32 4
+32 6
+32 5
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..4cc956c4d8c8bf3d752c7c1d3d7ede1f58208148
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 4.95
+Mediana        = 4
+Variancia      = 4.05
+Desvio Padrao  = 2.01
+Coef. Variacao = 0.41
+Min            = 3
+Max            = 11
+Esq, Dir.      = 4.2098 , 5.6902
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..fc87449df28ebc0b789fe49c0be27d28c81f9e25
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 4
+32 4
+32 4
+32 4
+32 6
+32 4
+32 4
+32 11
+32 5
+32 5
+32 7
+32 4
+32 4
+32 4
+32 3
+32 9
+32 3
+32 4
+32 4
+32 6
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0b05a946348a15fa4db86baeb7d66553f67903d1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 324633.45
+Mediana        = 326217.5
+Variancia      = 598030807.94
+Desvio Padrao  = 24454.67
+Coef. Variacao = 0.08
+Min            = 267872
+Max            = 360009
+Esq, Dir.      = 315639.0119 , 333627.8881
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d5f6690abc48ec2bd213335d9d58cf9d6270fa74
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 317792
+32768 343379
+32768 353088
+32768 320261
+32768 320711
+32768 360009
+32768 329482
+32768 336690
+32768 352026
+32768 277433
+32768 325614
+32768 326821
+32768 313121
+32768 358097
+32768 334558
+32768 267872
+32768 296838
+32768 333280
+32768 315605
+32768 309992
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..af89e871c76fe8d6b82a4d43a5b4558e53a8b2ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 233783.7
+Mediana        = 237407.5
+Variancia      = 212197959.48
+Desvio Padrao  = 14567.02
+Coef. Variacao = 0.06
+Min            = 207035
+Max            = 258535
+Esq, Dir.      = 228425.9449 , 239141.4551
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..2a37a0e0da20168e9bd2c4c7d6e9eb7f8075be3d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 244798
+32768 258535
+32768 207035
+32768 237876
+32768 220016
+32768 236939
+32768 249124
+32768 224389
+32768 252615
+32768 231380
+32768 218639
+32768 240112
+32768 242514
+32768 216549
+32768 229600
+32768 240120
+32768 227101
+32768 208296
+32768 249206
+32768 240830
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..50ade9aab9dbe39960acb61ccb0c9f25abd1a670
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4696.05
+Mediana        = 4648.5
+Variancia      = 112346.89
+Desvio Padrao  = 335.18
+Coef. Variacao = 0.07
+Min            = 4091
+Max            = 5337
+Esq, Dir.      = 4572.77 , 4819.33
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..29fd41de388ed29b568b56680d373304fda734ab
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4327
+4096 4857
+4096 5323
+4096 4853
+4096 4384
+4096 5044
+4096 4643
+4096 4652
+4096 5337
+4096 4424
+4096 4828
+4096 4327
+4096 4486
+4096 5072
+4096 4741
+4096 4091
+4096 4645
+4096 4466
+4096 4915
+4096 4506
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..acd07d4664b66a324219edf7195ac71e58124c0a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3304.5
+Mediana        = 3334.5
+Variancia      = 15988.37
+Desvio Padrao  = 126.45
+Coef. Variacao = 0.04
+Min            = 3050
+Max            = 3504
+Esq, Dir.      = 3257.9934 , 3351.0066
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c9015196dcfb8a8f02ac7552445c25c2f42b6f11
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 3336
+4096 3333
+4096 3050
+4096 3348
+4096 3421
+4096 3296
+4096 3326
+4096 3353
+4096 3191
+4096 3301
+4096 3378
+4096 3451
+4096 3339
+4096 3504
+4096 3234
+4096 3374
+4096 3069
+4096 3066
+4096 3290
+4096 3430
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..484eaef214689a40c5a8858d6952f326dc72e3c5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 102.05
+Mediana        = 101.5
+Variancia      = 37.84
+Desvio Padrao  = 6.15
+Coef. Variacao = 0.06
+Min            = 92
+Max            = 117
+Esq, Dir.      = 99.7875 , 104.3125
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6a6d9c72543cc72a3c18f154e15ec502820da5e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 95
+512 105
+512 112
+512 102
+512 97
+512 110
+512 99
+512 104
+512 117
+512 96
+512 99
+512 100
+512 102
+512 109
+512 101
+512 92
+512 99
+512 102
+512 103
+512 97
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1269c693469242bc1692c5d8110720ebe20a9e3b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 83.85
+Mediana        = 82.5
+Variancia      = 64.77
+Desvio Padrao  = 8.05
+Coef. Variacao = 0.1
+Min            = 72
+Max            = 99
+Esq, Dir.      = 80.89 , 86.81
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..f946cb32781730ab3ebb34bd0d4f2c306d172fc6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 85
+512 90
+512 72
+512 83
+512 99
+512 85
+512 85
+512 81
+512 89
+512 78
+512 78
+512 82
+512 81
+512 78
+512 88
+512 99
+512 74
+512 77
+512 75
+512 98
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..dcbd40fc97a8e80ace61122d5ff4aaca9d74f6cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.65
+Mediana        = 7
+Variancia      = 3.5
+Desvio Padrao  = 1.87
+Coef. Variacao = 0.24
+Min            = 6
+Max            = 15
+Esq, Dir.      = 6.9616 , 8.3384
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5e47dda4fc51edebf94abc7659e234c0d0cf8331
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 8
+64 6
+64 8
+64 8
+64 8
+64 7
+64 7
+64 15
+64 8
+64 7
+64 7
+64 7
+64 7
+64 8
+64 8
+64 7
+64 6
+64 7
+64 8
+64 6
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c7943eaa0a7879bfc3d95abec561b1e0b03953cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 8.25
+Mediana        = 6.5
+Variancia      = 41.46
+Desvio Padrao  = 6.44
+Coef. Variacao = 0.78
+Min            = 5
+Max            = 35
+Esq, Dir.      = 5.8817 , 10.6183
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c63becfbc31b4d7900e02843a8cd594dcbcc17ff
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 35
+64 6
+64 6
+64 6
+64 6
+64 7
+64 11
+64 8
+64 6
+64 7
+64 9
+64 6
+64 7
+64 6
+64 6
+64 8
+64 5
+64 6
+64 7
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..87e4d0401ea2d23be3e599526b2fa01601752bb4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1324766.05
+Mediana        = 1329201.5
+Variancia      = 6396437995.42
+Desvio Padrao  = 79977.73
+Coef. Variacao = 0.06
+Min            = 1138802
+Max            = 1521791
+Esq, Dir.      = 1295350.2031 , 1354181.8969
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..652a3fb1ea17b49114b50dbabd28cc983cbfb3ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 1345035
+65536 1388940
+65536 1521791
+65536 1325232
+65536 1357110
+65536 1419414
+65536 1286648
+65536 1338210
+65536 1327919
+65536 1138802
+65536 1356258
+65536 1263253
+65536 1277587
+65536 1330484
+65536 1320636
+65536 1171679
+65536 1315097
+65536 1360540
+65536 1318535
+65536 1332151
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..75978785db30f3310ec7be5e1e73c08610774c97
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1131564.6
+Mediana        = 1125111.5
+Variancia      = 1855121078.99
+Desvio Padrao  = 43071.12
+Coef. Variacao = 0.04
+Min            = 1054568
+Max            = 1232487
+Esq, Dir.      = 1115723.0239 , 1147406.1761
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..dad824f0fc12a328d63e5371f8b6cc103378402f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 1139196
+65536 1232487
+65536 1091649
+65536 1170822
+65536 1100895
+65536 1182120
+65536 1138328
+65536 1099012
+65536 1179171
+65536 1092450
+65536 1095768
+65536 1122625
+65536 1179842
+65536 1054568
+65536 1127598
+65536 1091893
+65536 1146895
+65536 1104872
+65536 1164551
+65536 1116550
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..3d5be09540bc3ba21aa3be50985c0d5d00796d23
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 19005.55
+Mediana        = 18868
+Variancia      = 1515693.31
+Desvio Padrao  = 1231.13
+Coef. Variacao = 0.06
+Min            = 17127
+Max            = 21705
+Esq, Dir.      = 18552.738 , 19458.362
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c463c69b25f1ac1d16e8b402b887430c6320af6b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 17127
+8192 19608
+8192 19839
+8192 19259
+8192 18145
+8192 21705
+8192 18499
+8192 19237
+8192 21111
+8192 17948
+8192 19605
+8192 18348
+8192 18032
+8192 20829
+8192 19433
+8192 17221
+8192 18278
+8192 18444
+8192 19362
+8192 18081
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6409dc48762a8643563e0556c569b4ff0e2e2456
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 13362.55
+Mediana        = 13383.5
+Variancia      = 304463.1
+Desvio Padrao  = 551.78
+Coef. Variacao = 0.04
+Min            = 12204
+Max            = 14284
+Esq, Dir.      = 13159.6044 , 13565.4956
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c77ddd78a68eba133128f36497577b807b88e42e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 14025
+8192 13407
+8192 12204
+8192 13284
+8192 13965
+8192 13309
+8192 13548
+8192 13523
+8192 13193
+8192 13151
+8192 13360
+8192 13919
+8192 13549
+8192 14284
+8192 13210
+8192 13659
+8192 12287
+8192 12460
+8192 13139
+8192 13775
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..bdd07023d5bbb9fd769e5559470b6389ed8f90f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (7ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (245ms)
+    ✓ LayoutView;n=2048 (938ms)
+    ✓ LayoutView;n=4096 (3378ms)
+    ✓ LayoutView;n=8192 (13360ms)
+    ✓ LayoutView;n=16384 (55822ms)
+    ✓ LayoutView;n=32768 (218639ms)
+    ✓ LayoutView;n=65536 (1095768ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (328ms)
+    ✓ LayoutSQL;n=2048 (1232ms)
+    ✓ LayoutSQL;n=4096 (4828ms)
+    ✓ LayoutSQL;n=8192 (19605ms)
+    ✓ LayoutSQL;n=16384 (76621ms)
+    ✓ LayoutSQL;n=32768 (325614ms)
+    ✓ LayoutSQL;n=65536 (1356258ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..fd99328304a51c3e864756b82b4d38a4e2c915b1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (950ms)
+    ✓ LayoutView;n=4096 (3301ms)
+    ✓ LayoutView;n=8192 (13151ms)
+    ✓ LayoutView;n=16384 (57010ms)
+    ✓ LayoutView;n=32768 (231380ms)
+    ✓ LayoutView;n=65536 (1092450ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (96ms)
+    ✓ LayoutSQL;n=1024 (321ms)
+    ✓ LayoutSQL;n=2048 (1144ms)
+    ✓ LayoutSQL;n=4096 (4424ms)
+    ✓ LayoutSQL;n=8192 (17948ms)
+    ✓ LayoutSQL;n=16384 (70867ms)
+    ✓ LayoutSQL;n=32768 (277433ms)
+    ✓ LayoutSQL;n=65536 (1138802ms)
+
+
+  26 passing (48m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..8e2424ac29682c49636fe5244a88396864a28bd0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (6ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (98ms)
+    ✓ LayoutView;n=1024 (248ms)
+    ✓ LayoutView;n=2048 (976ms)
+    ✓ LayoutView;n=4096 (3430ms)
+    ✓ LayoutView;n=8192 (13775ms)
+    ✓ LayoutView;n=16384 (59091ms)
+    ✓ LayoutView;n=32768 (240830ms)
+    ✓ LayoutView;n=65536 (1116550ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (28ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (97ms)
+    ✓ LayoutSQL;n=1024 (359ms)
+    ✓ LayoutSQL;n=2048 (1191ms)
+    ✓ LayoutSQL;n=4096 (4506ms)
+    ✓ LayoutSQL;n=8192 (18081ms)
+    ✓ LayoutSQL;n=16384 (74905ms)
+    ✓ LayoutSQL;n=32768 (309992ms)
+    ✓ LayoutSQL;n=65536 (1332151ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..78898c32b40d8f173aa1ae067690ee70d13216ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (21ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (16ms)
+    ✓ LayoutView;n=256 (52ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (249ms)
+    ✓ LayoutView;n=2048 (976ms)
+    ✓ LayoutView;n=4096 (3353ms)
+    ✓ LayoutView;n=8192 (13523ms)
+    ✓ LayoutView;n=16384 (55399ms)
+    ✓ LayoutView;n=32768 (224389ms)
+    ✓ LayoutView;n=65536 (1099012ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (15ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (339ms)
+    ✓ LayoutSQL;n=2048 (1240ms)
+    ✓ LayoutSQL;n=4096 (4652ms)
+    ✓ LayoutSQL;n=8192 (19237ms)
+    ✓ LayoutSQL;n=16384 (80480ms)
+    ✓ LayoutSQL;n=32768 (336690ms)
+    ✓ LayoutSQL;n=65536 (1338210ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..1f5cdcfa6e9353b2172bedda6e7e894fee3787f9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (99ms)
+    ✓ LayoutView;n=1024 (242ms)
+    ✓ LayoutView;n=2048 (950ms)
+    ✓ LayoutView;n=4096 (3374ms)
+    ✓ LayoutView;n=8192 (13659ms)
+    ✓ LayoutView;n=16384 (61662ms)
+    ✓ LayoutView;n=32768 (240120ms)
+    ✓ LayoutView;n=65536 (1091893ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (92ms)
+    ✓ LayoutSQL;n=1024 (309ms)
+    ✓ LayoutSQL;n=2048 (1086ms)
+    ✓ LayoutSQL;n=4096 (4091ms)
+    ✓ LayoutSQL;n=8192 (17221ms)
+    ✓ LayoutSQL;n=16384 (68395ms)
+    ✓ LayoutSQL;n=32768 (267872ms)
+    ✓ LayoutSQL;n=65536 (1171679ms)
+
+
+  26 passing (49m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..6d3f04038f4ccf06167de5058af743a7391f26a7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (12ms)
+    ✓ LayoutView;n=256 (41ms)
+    ✓ LayoutView;n=512 (83ms)
+    ✓ LayoutView;n=1024 (250ms)
+    ✓ LayoutView;n=2048 (931ms)
+    ✓ LayoutView;n=4096 (3348ms)
+    ✓ LayoutView;n=8192 (13284ms)
+    ✓ LayoutView;n=16384 (58785ms)
+    ✓ LayoutView;n=32768 (237876ms)
+    ✓ LayoutView;n=65536 (1170822ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (339ms)
+    ✓ LayoutSQL;n=2048 (1230ms)
+    ✓ LayoutSQL;n=4096 (4853ms)
+    ✓ LayoutSQL;n=8192 (19259ms)
+    ✓ LayoutSQL;n=16384 (84464ms)
+    ✓ LayoutSQL;n=32768 (320261ms)
+    ✓ LayoutSQL;n=65536 (1325232ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..062ba092f5d9af738ffeb23e19cc24f410c5a5ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (11ms)
+    ✓ LayoutView;n=128 (16ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (85ms)
+    ✓ LayoutView;n=1024 (243ms)
+    ✓ LayoutView;n=2048 (948ms)
+    ✓ LayoutView;n=4096 (3326ms)
+    ✓ LayoutView;n=8192 (13548ms)
+    ✓ LayoutView;n=16384 (57215ms)
+    ✓ LayoutView;n=32768 (249124ms)
+    ✓ LayoutView;n=65536 (1138328ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (336ms)
+    ✓ LayoutSQL;n=2048 (1223ms)
+    ✓ LayoutSQL;n=4096 (4643ms)
+    ✓ LayoutSQL;n=8192 (18499ms)
+    ✓ LayoutSQL;n=16384 (79588ms)
+    ✓ LayoutSQL;n=32768 (329482ms)
+    ✓ LayoutSQL;n=65536 (1286648ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..cbc38edd67a4cfae927d916b7771024fb741a4d8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (75ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (924ms)
+    ✓ LayoutView;n=4096 (3290ms)
+    ✓ LayoutView;n=8192 (13139ms)
+    ✓ LayoutView;n=16384 (58284ms)
+    ✓ LayoutView;n=32768 (249206ms)
+    ✓ LayoutView;n=65536 (1164551ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (29ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (340ms)
+    ✓ LayoutSQL;n=2048 (1232ms)
+    ✓ LayoutSQL;n=4096 (4915ms)
+    ✓ LayoutSQL;n=8192 (19362ms)
+    ✓ LayoutSQL;n=16384 (82696ms)
+    ✓ LayoutSQL;n=32768 (315605ms)
+    ✓ LayoutSQL;n=65536 (1318535ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..bd7a8708d433c7675d43d7c7d35eda053fbd5e57
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (82ms)
+    ✓ LayoutView;n=1024 (253ms)
+    ✓ LayoutView;n=2048 (985ms)
+    ✓ LayoutView;n=4096 (3451ms)
+    ✓ LayoutView;n=8192 (13919ms)
+    ✓ LayoutView;n=16384 (61020ms)
+    ✓ LayoutView;n=32768 (240112ms)
+    ✓ LayoutView;n=65536 (1122625ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (327ms)
+    ✓ LayoutSQL;n=2048 (1216ms)
+    ✓ LayoutSQL;n=4096 (4327ms)
+    ✓ LayoutSQL;n=8192 (18348ms)
+    ✓ LayoutSQL;n=16384 (77505ms)
+    ✓ LayoutSQL;n=32768 (326821ms)
+    ✓ LayoutSQL;n=65536 (1263253ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..7a2fe874ce87f91917a5992dbf83475df8e45fc1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (24ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (224ms)
+    ✓ LayoutView;n=2048 (874ms)
+    ✓ LayoutView;n=4096 (3066ms)
+    ✓ LayoutView;n=8192 (12460ms)
+    ✓ LayoutView;n=16384 (52087ms)
+    ✓ LayoutView;n=32768 (208296ms)
+    ✓ LayoutView;n=65536 (1104872ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (334ms)
+    ✓ LayoutSQL;n=2048 (1189ms)
+    ✓ LayoutSQL;n=4096 (4466ms)
+    ✓ LayoutSQL;n=8192 (18444ms)
+    ✓ LayoutSQL;n=16384 (77110ms)
+    ✓ LayoutSQL;n=32768 (333280ms)
+    ✓ LayoutSQL;n=65536 (1360540ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..310d3194c7b362eadb7cc149f7c2157bf3efd2f6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (20ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (35ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (85ms)
+    ✓ LayoutView;n=1024 (246ms)
+    ✓ LayoutView;n=2048 (951ms)
+    ✓ LayoutView;n=4096 (3336ms)
+    ✓ LayoutView;n=8192 (14025ms)
+    ✓ LayoutView;n=16384 (58032ms)
+    ✓ LayoutView;n=32768 (244798ms)
+    ✓ LayoutView;n=65536 (1139196ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (95ms)
+    ✓ LayoutSQL;n=1024 (324ms)
+    ✓ LayoutSQL;n=2048 (1146ms)
+    ✓ LayoutSQL;n=4096 (4327ms)
+    ✓ LayoutSQL;n=8192 (17127ms)
+    ✓ LayoutSQL;n=16384 (69347ms)
+    ✓ LayoutSQL;n=32768 (317792ms)
+    ✓ LayoutSQL;n=65536 (1345035ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..86e3d0b26ff4253194b332f0cbe56530356fb0de
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (12ms)
+    ✓ LayoutView;n=256 (41ms)
+    ✓ LayoutView;n=512 (72ms)
+    ✓ LayoutView;n=1024 (223ms)
+    ✓ LayoutView;n=2048 (866ms)
+    ✓ LayoutView;n=4096 (3050ms)
+    ✓ LayoutView;n=8192 (12204ms)
+    ✓ LayoutView;n=16384 (50567ms)
+    ✓ LayoutView;n=32768 (207035ms)
+    ✓ LayoutView;n=65536 (1091649ms)
+    ✓ LayoutSQL;n=16 (13ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (112ms)
+    ✓ LayoutSQL;n=1024 (357ms)
+    ✓ LayoutSQL;n=2048 (1270ms)
+    ✓ LayoutSQL;n=4096 (5323ms)
+    ✓ LayoutSQL;n=8192 (19839ms)
+    ✓ LayoutSQL;n=16384 (87198ms)
+    ✓ LayoutSQL;n=32768 (353088ms)
+    ✓ LayoutSQL;n=65536 (1521791ms)
+
+
+  26 passing (56m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..bccab1e78125ac7962f1f379aa9f479ea0344a8b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (90ms)
+    ✓ LayoutView;n=1024 (239ms)
+    ✓ LayoutView;n=2048 (929ms)
+    ✓ LayoutView;n=4096 (3333ms)
+    ✓ LayoutView;n=8192 (13407ms)
+    ✓ LayoutView;n=16384 (58651ms)
+    ✓ LayoutView;n=32768 (258535ms)
+    ✓ LayoutView;n=65536 (1232487ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (105ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1274ms)
+    ✓ LayoutSQL;n=4096 (4857ms)
+    ✓ LayoutSQL;n=8192 (19608ms)
+    ✓ LayoutSQL;n=16384 (84424ms)
+    ✓ LayoutSQL;n=32768 (343379ms)
+    ✓ LayoutSQL;n=65536 (1388940ms)
+
+
+  26 passing (57m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..ec4f02eac7310e27643465ed0949508755640028
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (12ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (74ms)
+    ✓ LayoutView;n=1024 (226ms)
+    ✓ LayoutView;n=2048 (869ms)
+    ✓ LayoutView;n=4096 (3069ms)
+    ✓ LayoutView;n=8192 (12287ms)
+    ✓ LayoutView;n=16384 (51340ms)
+    ✓ LayoutView;n=32768 (227101ms)
+    ✓ LayoutView;n=65536 (1146895ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (342ms)
+    ✓ LayoutSQL;n=2048 (1193ms)
+    ✓ LayoutSQL;n=4096 (4645ms)
+    ✓ LayoutSQL;n=8192 (18278ms)
+    ✓ LayoutSQL;n=16384 (73001ms)
+    ✓ LayoutSQL;n=32768 (296838ms)
+    ✓ LayoutSQL;n=65536 (1315097ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..c366571461de91c933d064b56ece467c86baf1f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (88ms)
+    ✓ LayoutView;n=1024 (232ms)
+    ✓ LayoutView;n=2048 (902ms)
+    ✓ LayoutView;n=4096 (3234ms)
+    ✓ LayoutView;n=8192 (13210ms)
+    ✓ LayoutView;n=16384 (55897ms)
+    ✓ LayoutView;n=32768 (229600ms)
+    ✓ LayoutView;n=65536 (1127598ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (342ms)
+    ✓ LayoutSQL;n=2048 (1226ms)
+    ✓ LayoutSQL;n=4096 (4741ms)
+    ✓ LayoutSQL;n=8192 (19433ms)
+    ✓ LayoutSQL;n=16384 (81276ms)
+    ✓ LayoutSQL;n=32768 (334558ms)
+    ✓ LayoutSQL;n=65536 (1320636ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..e700d2a841cc28f22cc39173f7d692404f836182
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (6ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (29ms)
+    ✓ LayoutView;n=512 (99ms)
+    ✓ LayoutView;n=1024 (250ms)
+    ✓ LayoutView;n=2048 (979ms)
+    ✓ LayoutView;n=4096 (3421ms)
+    ✓ LayoutView;n=8192 (13965ms)
+    ✓ LayoutView;n=16384 (61195ms)
+    ✓ LayoutView;n=32768 (220016ms)
+    ✓ LayoutView;n=65536 (1100895ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (97ms)
+    ✓ LayoutSQL;n=1024 (333ms)
+    ✓ LayoutSQL;n=2048 (1167ms)
+    ✓ LayoutSQL;n=4096 (4384ms)
+    ✓ LayoutSQL;n=8192 (18145ms)
+    ✓ LayoutSQL;n=16384 (79739ms)
+    ✓ LayoutSQL;n=32768 (320711ms)
+    ✓ LayoutSQL;n=65536 (1357110ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..050cdd95ed67916ef57d7e2a368149f451d2a625
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (21ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (85ms)
+    ✓ LayoutView;n=1024 (243ms)
+    ✓ LayoutView;n=2048 (950ms)
+    ✓ LayoutView;n=4096 (3296ms)
+    ✓ LayoutView;n=8192 (13309ms)
+    ✓ LayoutView;n=16384 (56235ms)
+    ✓ LayoutView;n=32768 (236939ms)
+    ✓ LayoutView;n=65536 (1182120ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (110ms)
+    ✓ LayoutSQL;n=1024 (366ms)
+    ✓ LayoutSQL;n=2048 (1302ms)
+    ✓ LayoutSQL;n=4096 (5044ms)
+    ✓ LayoutSQL;n=8192 (21705ms)
+    ✓ LayoutSQL;n=16384 (89740ms)
+    ✓ LayoutSQL;n=32768 (360009ms)
+    ✓ LayoutSQL;n=65536 (1419414ms)
+
+
+  26 passing (57m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..7b3f291d4a277826dadac69da4452a274ec1b6f9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (894ms)
+    ✓ LayoutView;n=4096 (3339ms)
+    ✓ LayoutView;n=8192 (13549ms)
+    ✓ LayoutView;n=16384 (58883ms)
+    ✓ LayoutView;n=32768 (242514ms)
+    ✓ LayoutView;n=65536 (1179842ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (332ms)
+    ✓ LayoutSQL;n=2048 (1205ms)
+    ✓ LayoutSQL;n=4096 (4486ms)
+    ✓ LayoutSQL;n=8192 (18032ms)
+    ✓ LayoutSQL;n=16384 (76809ms)
+    ✓ LayoutSQL;n=32768 (313121ms)
+    ✓ LayoutSQL;n=65536 (1277587ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..2b3102246cfaefa68e1219bf6621c5dab5ff17b4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (89ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (915ms)
+    ✓ LayoutView;n=4096 (3191ms)
+    ✓ LayoutView;n=8192 (13193ms)
+    ✓ LayoutView;n=16384 (54746ms)
+    ✓ LayoutView;n=32768 (252615ms)
+    ✓ LayoutView;n=65536 (1179171ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (31ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (117ms)
+    ✓ LayoutSQL;n=1024 (395ms)
+    ✓ LayoutSQL;n=2048 (1416ms)
+    ✓ LayoutSQL;n=4096 (5337ms)
+    ✓ LayoutSQL;n=8192 (21111ms)
+    ✓ LayoutSQL;n=16384 (87967ms)
+    ✓ LayoutSQL;n=32768 (352026ms)
+    ✓ LayoutSQL;n=65536 (1327919ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-06/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..5cfdd03a289aee20cab5923a85a7865e313abb9a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (251ms)
+    ✓ LayoutView;n=2048 (973ms)
+    ✓ LayoutView;n=4096 (3504ms)
+    ✓ LayoutView;n=8192 (14284ms)
+    ✓ LayoutView;n=16384 (60986ms)
+    ✓ LayoutView;n=32768 (216549ms)
+    ✓ LayoutView;n=65536 (1054568ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (38ms)
+    ✓ LayoutSQL;n=512 (109ms)
+    ✓ LayoutSQL;n=1024 (362ms)
+    ✓ LayoutSQL;n=2048 (1284ms)
+    ✓ LayoutSQL;n=4096 (5072ms)
+    ✓ LayoutSQL;n=8192 (20829ms)
+    ✓ LayoutSQL;n=16384 (84578ms)
+    ✓ LayoutSQL;n=32768 (358097ms)
+    ✓ LayoutSQL;n=65536 (1330484ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..56b67ebd3e08056b820d4e90154f4f70d9c67298
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 245.35
+Mediana        = 249.5
+Variancia      = 572.34
+Desvio Padrao  = 23.92
+Coef. Variacao = 0.1
+Min            = 191
+Max            = 289
+Esq, Dir.      = 236.5508 , 254.1492
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..58987bd6c253b9f7df1f326294b44b2f37fca462
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 239
+1024 267
+1024 213
+1024 282
+1024 249
+1024 253
+1024 232
+1024 289
+1024 208
+1024 265
+1024 248
+1024 263
+1024 236
+1024 250
+1024 252
+1024 242
+1024 253
+1024 191
+1024 252
+1024 223
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..7d2676497cda62c194447ff2c3800a5be7dc5a70
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 640.45
+Mediana        = 657.5
+Variancia      = 7378.79
+Desvio Padrao  = 85.9
+Coef. Variacao = 0.13
+Min            = 458
+Max            = 814
+Esq, Dir.      = 608.856 , 672.044
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..060c86ee3e2c232d8cdee11a2baaf71f516f7e1b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 689
+1024 684
+1024 656
+1024 702
+1024 564
+1024 708
+1024 556
+1024 511
+1024 538
+1024 591
+1024 725
+1024 679
+1024 659
+1024 732
+1024 814
+1024 684
+1024 605
+1024 458
+1024 613
+1024 641
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9fab28a903ade3fedd540707623e9a577c774d8a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 20.15
+Mediana        = 18
+Variancia      = 16.87
+Desvio Padrao  = 4.11
+Coef. Variacao = 0.2
+Min            = 15
+Max            = 31
+Esq, Dir.      = 18.6393 , 21.6607
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f97c0cc9367ec552842a0fe1b3a2fbcf95f29fea
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 31
+128 18
+128 17
+128 18
+128 18
+128 17
+128 25
+128 18
+128 21
+128 23
+128 19
+128 18
+128 17
+128 20
+128 24
+128 27
+128 23
+128 15
+128 17
+128 17
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1803d4271404501fcb6b763c84d6fab3535bd8d6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 35.4
+Mediana        = 35
+Variancia      = 21.73
+Desvio Padrao  = 4.66
+Coef. Variacao = 0.13
+Min            = 27
+Max            = 42
+Esq, Dir.      = 33.6856 , 37.1144
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..7d7a852e5d8badad1a619919966814eec8c1b31e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 41
+128 38
+128 40
+128 31
+128 39
+128 37
+128 31
+128 32
+128 30
+128 32
+128 31
+128 33
+128 32
+128 42
+128 38
+128 42
+128 34
+128 27
+128 42
+128 36
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..3ae8ef2c9dcbd54faa857e364aec11a6fda54e95
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.85
+Mediana        = 10
+Variancia      = 2.03
+Desvio Padrao  = 1.42
+Coef. Variacao = 0.14
+Min            = 8
+Max            = 15
+Esq, Dir.      = 9.3261 , 10.3739
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7388b94fea53e74a70003452fc2275751c7e9d4b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 11
+16 10
+16 9
+16 10
+16 9
+16 10
+16 10
+16 10
+16 15
+16 9
+16 10
+16 10
+16 9
+16 9
+16 9
+16 10
+16 9
+16 8
+16 9
+16 11
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..74266638ea1e5cbb73a19aca4d495287d7a6d7af
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 30.55
+Mediana        = 28
+Variancia      = 79.94
+Desvio Padrao  = 8.94
+Coef. Variacao = 0.29
+Min            = 23
+Max            = 66
+Esq, Dir.      = 27.2614 , 33.8386
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..aaa02ec5252049c70598192a702e2611b6329215
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 32
+16 34
+16 31
+16 28
+16 27
+16 33
+16 26
+16 27
+16 30
+16 27
+16 26
+16 28
+16 23
+16 34
+16 29
+16 66
+16 28
+16 23
+16 27
+16 32
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1f86355585e8e6ab63859959a270beebf54f1791
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7080.05
+Mediana        = 7041
+Variancia      = 47800.89
+Desvio Padrao  = 218.63
+Coef. Variacao = 0.03
+Min            = 6802
+Max            = 7475
+Esq, Dir.      = 6999.6363 , 7160.4637
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b60a5a7fad764e7e2f41fb47b7b18d83f22028a1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 7137
+16384 6935
+16384 7117
+16384 6822
+16384 7321
+16384 6984
+16384 7062
+16384 6853
+16384 6913
+16384 6868
+16384 7287
+16384 7458
+16384 7142
+16384 7396
+16384 7020
+16384 7475
+16384 6802
+16384 6846
+16384 7228
+16384 6935
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..5009024596e79032fcec3d6bd18eb13fc55e5180
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6581.85
+Mediana        = 6609
+Variancia      = 39265.5
+Desvio Padrao  = 198.16
+Coef. Variacao = 0.03
+Min            = 6032
+Max            = 6989
+Esq, Dir.      = 6508.9684 , 6654.7316
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1ea3025a2b0b9a3997e4da9c6e1ad6f874887277
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 6749
+16384 6699
+16384 6511
+16384 6661
+16384 6767
+16384 6696
+16384 6646
+16384 6516
+16384 6461
+16384 6607
+16384 6487
+16384 6537
+16384 6989
+16384 6756
+16384 6611
+16384 6415
+16384 6678
+16384 6032
+16384 6497
+16384 6322
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7a491654f991cad148bba8c62fe87cdd7f397ce4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 896.5
+Mediana        = 897.5
+Variancia      = 10958.47
+Desvio Padrao  = 104.68
+Coef. Variacao = 0.12
+Min            = 694
+Max            = 1092
+Esq, Dir.      = 857.9976 , 935.0024
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bea89f7c92625ad75266c139b7654dbd04ad28c6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 908
+2048 994
+2048 725
+2048 1029
+2048 884
+2048 959
+2048 870
+2048 1002
+2048 730
+2048 941
+2048 775
+2048 910
+2048 855
+2048 954
+2048 1092
+2048 886
+2048 971
+2048 694
+2048 887
+2048 864
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..684568e1ec368105a6937bdb829ece31cccfd8e2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 858.5
+Mediana        = 875
+Variancia      = 13566.89
+Desvio Padrao  = 116.48
+Coef. Variacao = 0.14
+Min            = 602
+Max            = 1099
+Esq, Dir.      = 815.6597 , 901.3403
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..2fe7ef6e0f87a6a320760a6b048de5748fa2ce03
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 875
+2048 706
+2048 907
+2048 951
+2048 968
+2048 816
+2048 731
+2048 778
+2048 746
+2048 1099
+2048 786
+2048 995
+2048 875
+2048 1000
+2048 884
+2048 912
+2048 829
+2048 602
+2048 824
+2048 886
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d4eadce2a98c3c3c9a440d294a571c5a1b0c75a0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 30.25
+Mediana        = 30
+Variancia      = 7.04
+Desvio Padrao  = 2.65
+Coef. Variacao = 0.09
+Min            = 25
+Max            = 39
+Esq, Dir.      = 29.2742 , 31.2258
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..19f0d9390f73b51b564014f3c5c3d4bd42241d8e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 39
+256 30
+256 27
+256 32
+256 31
+256 30
+256 30
+256 31
+256 28
+256 30
+256 30
+256 30
+256 30
+256 33
+256 30
+256 29
+256 30
+256 25
+256 30
+256 30
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..429123a2a15a4da45302947c258fea7407ca36b6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 83.7
+Mediana        = 85
+Variancia      = 116.96
+Desvio Padrao  = 10.81
+Coef. Variacao = 0.13
+Min            = 62
+Max            = 109
+Esq, Dir.      = 79.7223 , 87.6777
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..10c4de5c192535d90b6c015e3988dc64b4ed64ed
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 89
+256 87
+256 85
+256 76
+256 85
+256 85
+256 82
+256 72
+256 70
+256 77
+256 86
+256 82
+256 78
+256 109
+256 86
+256 98
+256 74
+256 62
+256 98
+256 93
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5d5c86d600c3d18e234492c5da914ea49fa6bd0c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.75
+Mediana        = 5
+Variancia      = 0.3
+Desvio Padrao  = 0.55
+Coef. Variacao = 0.12
+Min            = 4
+Max            = 6
+Esq, Dir.      = 4.5477 , 4.9523
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4880806c4dc08d26f1b179762fedaf9a0ae1ac16
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 5
+32 6
+32 5
+32 5
+32 4
+32 5
+32 5
+32 5
+32 4
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 5
+32 5
+32 4
+32 5
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b5376ce1ef6c3d970ce517f976040af32bf38409
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 11.35
+Mediana        = 10
+Variancia      = 22.34
+Desvio Padrao  = 4.73
+Coef. Variacao = 0.42
+Min            = 8
+Max            = 30
+Esq, Dir.      = 9.6114 , 13.0886
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ce5f4288e6f9704145a75a39f3e89e46734653f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 12
+32 14
+32 9
+32 9
+32 8
+32 11
+32 9
+32 9
+32 12
+32 9
+32 9
+32 10
+32 9
+32 12
+32 12
+32 30
+32 10
+32 8
+32 12
+32 13
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4758ca83d1803c5cff04eab733f1bcb141402fb5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 32244.1
+Mediana        = 31983
+Variancia      = 2297800.83
+Desvio Padrao  = 1515.85
+Coef. Variacao = 0.05
+Min            = 29811
+Max            = 35580
+Esq, Dir.      = 31686.5697 , 32801.6303
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..89e5518385f7f623f65099f2bab71b5312145c7f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 32825
+32768 32387
+32768 31259
+32768 30542
+32768 32915
+32768 31111
+32768 32856
+32768 33213
+32768 32226
+32768 31740
+32768 33772
+32768 34827
+32768 31196
+32768 35580
+32768 31689
+32768 33966
+32768 29811
+32768 30183
+32768 31341
+32768 31443
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ed152c9f3b381c457659e4b58872a5437a9f42ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 26291.65
+Mediana        = 26250
+Variancia      = 1435383.29
+Desvio Padrao  = 1198.07
+Coef. Variacao = 0.05
+Min            = 22865
+Max            = 29197
+Esq, Dir.      = 25850.9975 , 26732.3025
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..a54ab30fe0fd0381d13bb3d469a914c2dd13a5a9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 26570
+32768 26547
+32768 25638
+32768 27017
+32768 26547
+32768 29197
+32768 25911
+32768 25669
+32768 25301
+32768 26033
+32768 26308
+32768 25442
+32768 27668
+32768 27234
+32768 26192
+32768 26006
+32768 26848
+32768 22865
+32768 26872
+32768 25968
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b48c27b3640ccfca559a9c36057ce16ef66af7ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4233
+Mediana        = 4251.5
+Variancia      = 184177.89
+Desvio Padrao  = 429.16
+Coef. Variacao = 0.1
+Min            = 3473
+Max            = 5169
+Esq, Dir.      = 4075.1549 , 4390.8451
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bcc0a21a4cacbd2f1363887e6974482986937858
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4024
+4096 4529
+4096 3563
+4096 4949
+4096 4220
+4096 4108
+4096 4239
+4096 4264
+4096 3473
+4096 5169
+4096 3948
+4096 4387
+4096 4316
+4096 3752
+4096 4207
+4096 4367
+4096 4539
+4096 3645
+4096 4559
+4096 4402
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c04f0a7993c0e8b54754f49c791bbd05c542768b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 582.1
+Mediana        = 564
+Variancia      = 2511.36
+Desvio Padrao  = 50.11
+Coef. Variacao = 0.09
+Min            = 503
+Max            = 697
+Esq, Dir.      = 563.6683 , 600.5317
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d884a819f8d4bd5b5fc5794dc95fefd57e6f2a13
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 697
+4096 646
+4096 559
+4096 636
+4096 646
+4096 560
+4096 564
+4096 622
+4096 549
+4096 650
+4096 554
+4096 552
+4096 584
+4096 564
+4096 561
+4096 572
+4096 565
+4096 503
+4096 525
+4096 533
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e80ac74f6bb8cc186216d0e85550da13af425c71
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 73.6
+Mediana        = 73
+Variancia      = 101.31
+Desvio Padrao  = 10.07
+Coef. Variacao = 0.14
+Min            = 60
+Max            = 90
+Esq, Dir.      = 69.8981 , 77.3019
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..1f24d76e7b4c09d76dfb8eb774e0156e48c1ebdf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 79
+512 90
+512 74
+512 79
+512 77
+512 89
+512 72
+512 63
+512 83
+512 61
+512 68
+512 62
+512 60
+512 79
+512 71
+512 60
+512 63
+512 71
+512 83
+512 88
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..e05944f0c504c438ab6d351f0ddcdc7190bfe66c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 187.75
+Mediana        = 192
+Variancia      = 810.51
+Desvio Padrao  = 28.47
+Coef. Variacao = 0.15
+Min            = 149
+Max            = 248
+Esq, Dir.      = 177.2789 , 198.2211
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1d22a1d02c0f3f71cf92b446d20263142ff67af6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 193
+512 203
+512 197
+512 190
+512 151
+512 188
+512 187
+512 151
+512 151
+512 154
+512 217
+512 209
+512 191
+512 236
+512 196
+512 248
+512 157
+512 149
+512 193
+512 194
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d542286d117517b6589896513db93d9b3bb96cb3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.1
+Mediana        = 10
+Variancia      = 1.04
+Desvio Padrao  = 1.02
+Coef. Variacao = 0.1
+Min            = 8
+Max            = 12
+Esq, Dir.      = 9.7245 , 10.4755
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..572aa52bc33f5ffd9c192b808621a9d8e3713fc1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 11
+64 10
+64 10
+64 11
+64 10
+64 10
+64 11
+64 10
+64 10
+64 11
+64 11
+64 11
+64 8
+64 10
+64 10
+64 12
+64 10
+64 8
+64 9
+64 9
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..51c6258cfec096f53d7142b2c5ec6e6b6b47a3ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 60.65
+Mediana        = 60
+Variancia      = 322.98
+Desvio Padrao  = 17.97
+Coef. Variacao = 0.3
+Min            = 17
+Max            = 122
+Esq, Dir.      = 54.0401 , 67.2599
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..9847bcc2ad73540a4c43f517ff7c8ff73f655e0d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 68
+64 65
+64 65
+64 55
+64 54
+64 63
+64 54
+64 60
+64 60
+64 58
+64 55
+64 63
+64 17
+64 66
+64 60
+64 122
+64 59
+64 48
+64 58
+64 63
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..731497418b75c7af8ad5291e4aa3e22f8f12f57a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 125722.5
+Mediana        = 126205.5
+Variancia      = 57855890.68
+Desvio Padrao  = 7606.31
+Coef. Variacao = 0.06
+Min            = 112888
+Max            = 139970
+Esq, Dir.      = 122924.8972 , 128520.1028
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6698995466cfb50b73f37d13d1e2b1038e719d8c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 128633
+65536 127444
+65536 122183
+65536 115784
+65536 127424
+65536 115859
+65536 126271
+65536 137860
+65536 123814
+65536 126047
+65536 135696
+65536 139970
+65536 112888
+65536 118774
+65536 128341
+65536 126140
+65536 128152
+65536 125142
+65536 133771
+65536 114257
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..175c952c5d92fd51e6a2f301b8702689d74db455
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 116113.35
+Mediana        = 115248.5
+Variancia      = 45732191.19
+Desvio Padrao  = 6762.56
+Coef. Variacao = 0.06
+Min            = 102693
+Max            = 127522
+Esq, Dir.      = 113626.0781 , 118600.6219
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..e119a2efb3266c9719feea9b5f1103aba0f1241e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 117389
+65536 113849
+65536 102693
+65536 123601
+65536 125400
+65536 127522
+65536 123448
+65536 114120
+65536 104777
+65536 113995
+65536 111967
+65536 120554
+65536 123651
+65536 118711
+65536 116873
+65536 113853
+65536 113858
+65536 106063
+65536 116377
+65536 113566
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e7485c2aed6d021847f4c3e55411d67904475fab
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2113.5
+Mediana        = 2106
+Variancia      = 4703
+Desvio Padrao  = 68.58
+Coef. Variacao = 0.03
+Min            = 1995
+Max            = 2277
+Esq, Dir.      = 2088.2768 , 2138.7232
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d65537e558bca259723ee236a0a2ad8b3f0ceec9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 2081
+8192 2157
+8192 2098
+8192 2050
+8192 2115
+8192 2124
+8192 1995
+8192 2121
+8192 2108
+8192 2092
+8192 2277
+8192 2116
+8192 2154
+8192 2049
+8192 2201
+8192 2242
+8192 2059
+8192 2027
+8192 2100
+8192 2104
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..afaf821a76e6afd24933a30a4be3fc813ec318bc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1965.35
+Mediana        = 1950
+Variancia      = 19171.92
+Desvio Padrao  = 138.46
+Coef. Variacao = 0.07
+Min            = 1696
+Max            = 2398
+Esq, Dir.      = 1914.4234 , 2016.2766
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..934c83ffa884f2ed792367e8e9f3fb62acdfd73a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 1946
+8192 1936
+8192 1899
+8192 2040
+8192 2001
+8192 2082
+8192 1950
+8192 2096
+8192 1950
+8192 2027
+8192 1900
+8192 1885
+8192 2398
+8192 1960
+8192 1885
+8192 1851
+8192 1960
+8192 1696
+8192 1815
+8192 2030
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..a5593485d8d8e45c712430fb1a89e88d7a0bb74d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (55ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (86ms)
+    ✓ LayoutView;n=512 (217ms)
+    ✓ LayoutView;n=1024 (725ms)
+    ✓ LayoutView;n=2048 (786ms)
+    ✓ LayoutView;n=4096 (554ms)
+    ✓ LayoutView;n=8192 (1900ms)
+    ✓ LayoutView;n=16384 (6487ms)
+    ✓ LayoutView;n=32768 (26308ms)
+    ✓ LayoutView;n=65536 (111967ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (68ms)
+    ✓ LayoutSQL;n=1024 (248ms)
+    ✓ LayoutSQL;n=2048 (775ms)
+    ✓ LayoutSQL;n=4096 (3948ms)
+    ✓ LayoutSQL;n=8192 (2277ms)
+    ✓ LayoutSQL;n=16384 (7287ms)
+    ✓ LayoutSQL;n=32768 (33772ms)
+    ✓ LayoutSQL;n=65536 (135696ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..3103c95f591a139539d8e8a2757461a441481628
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (58ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (77ms)
+    ✓ LayoutView;n=512 (154ms)
+    ✓ LayoutView;n=1024 (591ms)
+    ✓ LayoutView;n=2048 (1099ms)
+    ✓ LayoutView;n=4096 (650ms)
+    ✓ LayoutView;n=8192 (2027ms)
+    ✓ LayoutView;n=16384 (6607ms)
+    ✓ LayoutView;n=32768 (26033ms)
+    ✓ LayoutView;n=65536 (113995ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (61ms)
+    ✓ LayoutSQL;n=1024 (265ms)
+    ✓ LayoutSQL;n=2048 (941ms)
+    ✓ LayoutSQL;n=4096 (5169ms)
+    ✓ LayoutSQL;n=8192 (2092ms)
+    ✓ LayoutSQL;n=16384 (6868ms)
+    ✓ LayoutSQL;n=32768 (31740ms)
+    ✓ LayoutSQL;n=65536 (126047ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..4af69aa562b24c51cf8d4fb65502e20c13563202
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (13ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (194ms)
+    ✓ LayoutView;n=1024 (641ms)
+    ✓ LayoutView;n=2048 (886ms)
+    ✓ LayoutView;n=4096 (533ms)
+    ✓ LayoutView;n=8192 (2030ms)
+    ✓ LayoutView;n=16384 (6322ms)
+    ✓ LayoutView;n=32768 (25968ms)
+    ✓ LayoutView;n=65536 (113566ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (88ms)
+    ✓ LayoutSQL;n=1024 (223ms)
+    ✓ LayoutSQL;n=2048 (864ms)
+    ✓ LayoutSQL;n=4096 (4402ms)
+    ✓ LayoutSQL;n=8192 (2104ms)
+    ✓ LayoutSQL;n=16384 (6935ms)
+    ✓ LayoutSQL;n=32768 (31443ms)
+    ✓ LayoutSQL;n=65536 (114257ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..b5f7f4c362a32b4b7d192e10133ac9d904e2b8d8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (72ms)
+    ✓ LayoutView;n=512 (151ms)
+    ✓ LayoutView;n=1024 (511ms)
+    ✓ LayoutView;n=2048 (778ms)
+    ✓ LayoutView;n=4096 (622ms)
+    ✓ LayoutView;n=8192 (2096ms)
+    ✓ LayoutView;n=16384 (6516ms)
+    ✓ LayoutView;n=32768 (25669ms)
+    ✓ LayoutView;n=65536 (114120ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (63ms)
+    ✓ LayoutSQL;n=1024 (289ms)
+    ✓ LayoutSQL;n=2048 (1002ms)
+    ✓ LayoutSQL;n=4096 (4264ms)
+    ✓ LayoutSQL;n=8192 (2121ms)
+    ✓ LayoutSQL;n=16384 (6853ms)
+    ✓ LayoutSQL;n=32768 (33213ms)
+    ✓ LayoutSQL;n=65536 (137860ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..d361b47040621d259ee2cdc916e4c10890742642
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (66ms)
+    ✓ LayoutView;n=32 (30ms)
+    ✓ LayoutView;n=64 (122ms)
+    ✓ LayoutView;n=128 (42ms)
+    ✓ LayoutView;n=256 (98ms)
+    ✓ LayoutView;n=512 (248ms)
+    ✓ LayoutView;n=1024 (684ms)
+    ✓ LayoutView;n=2048 (912ms)
+    ✓ LayoutView;n=4096 (572ms)
+    ✓ LayoutView;n=8192 (1851ms)
+    ✓ LayoutView;n=16384 (6415ms)
+    ✓ LayoutView;n=32768 (26006ms)
+    ✓ LayoutView;n=65536 (113853ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (12ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (242ms)
+    ✓ LayoutSQL;n=2048 (886ms)
+    ✓ LayoutSQL;n=4096 (4367ms)
+    ✓ LayoutSQL;n=8192 (2242ms)
+    ✓ LayoutSQL;n=16384 (7475ms)
+    ✓ LayoutSQL;n=32768 (33966ms)
+    ✓ LayoutSQL;n=65536 (126140ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..0c73fd7423883a95d46c69604e2b9edffdde9d02
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (55ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (76ms)
+    ✓ LayoutView;n=512 (190ms)
+    ✓ LayoutView;n=1024 (702ms)
+    ✓ LayoutView;n=2048 (951ms)
+    ✓ LayoutView;n=4096 (636ms)
+    ✓ LayoutView;n=8192 (2040ms)
+    ✓ LayoutView;n=16384 (6661ms)
+    ✓ LayoutView;n=32768 (27017ms)
+    ✓ LayoutView;n=65536 (123601ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (79ms)
+    ✓ LayoutSQL;n=1024 (282ms)
+    ✓ LayoutSQL;n=2048 (1029ms)
+    ✓ LayoutSQL;n=4096 (4949ms)
+    ✓ LayoutSQL;n=8192 (2050ms)
+    ✓ LayoutSQL;n=16384 (6822ms)
+    ✓ LayoutSQL;n=32768 (30542ms)
+    ✓ LayoutSQL;n=65536 (115784ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..0d2ac8c2ffb1fdc4971e390d000f2d3dcf0eca61
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (54ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (187ms)
+    ✓ LayoutView;n=1024 (556ms)
+    ✓ LayoutView;n=2048 (731ms)
+    ✓ LayoutView;n=4096 (564ms)
+    ✓ LayoutView;n=8192 (1950ms)
+    ✓ LayoutView;n=16384 (6646ms)
+    ✓ LayoutView;n=32768 (25911ms)
+    ✓ LayoutView;n=65536 (123448ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (72ms)
+    ✓ LayoutSQL;n=1024 (232ms)
+    ✓ LayoutSQL;n=2048 (870ms)
+    ✓ LayoutSQL;n=4096 (4239ms)
+    ✓ LayoutSQL;n=8192 (1995ms)
+    ✓ LayoutSQL;n=16384 (7062ms)
+    ✓ LayoutSQL;n=32768 (32856ms)
+    ✓ LayoutSQL;n=65536 (126271ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..43dbf0cfc6bb315e72e011b80639ece7f1471e43
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (58ms)
+    ✓ LayoutView;n=128 (42ms)
+    ✓ LayoutView;n=256 (98ms)
+    ✓ LayoutView;n=512 (193ms)
+    ✓ LayoutView;n=1024 (613ms)
+    ✓ LayoutView;n=2048 (824ms)
+    ✓ LayoutView;n=4096 (525ms)
+    ✓ LayoutView;n=8192 (1815ms)
+    ✓ LayoutView;n=16384 (6497ms)
+    ✓ LayoutView;n=32768 (26872ms)
+    ✓ LayoutView;n=65536 (116377ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (252ms)
+    ✓ LayoutSQL;n=2048 (887ms)
+    ✓ LayoutSQL;n=4096 (4559ms)
+    ✓ LayoutSQL;n=8192 (2100ms)
+    ✓ LayoutSQL;n=16384 (7228ms)
+    ✓ LayoutSQL;n=32768 (31341ms)
+    ✓ LayoutSQL;n=65536 (133771ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..7bb6be693a50847118b79ac771f0ec7ab1aae5fd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (209ms)
+    ✓ LayoutView;n=1024 (679ms)
+    ✓ LayoutView;n=2048 (995ms)
+    ✓ LayoutView;n=4096 (552ms)
+    ✓ LayoutView;n=8192 (1885ms)
+    ✓ LayoutView;n=16384 (6537ms)
+    ✓ LayoutView;n=32768 (25442ms)
+    ✓ LayoutView;n=65536 (120554ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (62ms)
+    ✓ LayoutSQL;n=1024 (263ms)
+    ✓ LayoutSQL;n=2048 (910ms)
+    ✓ LayoutSQL;n=4096 (4387ms)
+    ✓ LayoutSQL;n=8192 (2116ms)
+    ✓ LayoutSQL;n=16384 (7458ms)
+    ✓ LayoutSQL;n=32768 (34827ms)
+    ✓ LayoutSQL;n=65536 (139970ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..28360268160b66b5d700e848d43f1ee3e3286072
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (8ms)
+    ✓ LayoutView;n=64 (48ms)
+    ✓ LayoutView;n=128 (27ms)
+    ✓ LayoutView;n=256 (62ms)
+    ✓ LayoutView;n=512 (149ms)
+    ✓ LayoutView;n=1024 (458ms)
+    ✓ LayoutView;n=2048 (602ms)
+    ✓ LayoutView;n=4096 (503ms)
+    ✓ LayoutView;n=8192 (1696ms)
+    ✓ LayoutView;n=16384 (6032ms)
+    ✓ LayoutView;n=32768 (22865ms)
+    ✓ LayoutView;n=65536 (106063ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (15ms)
+    ✓ LayoutSQL;n=256 (25ms)
+    ✓ LayoutSQL;n=512 (71ms)
+    ✓ LayoutSQL;n=1024 (191ms)
+    ✓ LayoutSQL;n=2048 (694ms)
+    ✓ LayoutSQL;n=4096 (3645ms)
+    ✓ LayoutSQL;n=8192 (2027ms)
+    ✓ LayoutSQL;n=16384 (6846ms)
+    ✓ LayoutSQL;n=32768 (30183ms)
+    ✓ LayoutSQL;n=65536 (125142ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..a68870e855b667df1ce5304ceafc0b1986f12a6d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (68ms)
+    ✓ LayoutView;n=128 (41ms)
+    ✓ LayoutView;n=256 (89ms)
+    ✓ LayoutView;n=512 (193ms)
+    ✓ LayoutView;n=1024 (689ms)
+    ✓ LayoutView;n=2048 (875ms)
+    ✓ LayoutView;n=4096 (697ms)
+    ✓ LayoutView;n=8192 (1946ms)
+    ✓ LayoutView;n=16384 (6749ms)
+    ✓ LayoutView;n=32768 (26570ms)
+    ✓ LayoutView;n=65536 (117389ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (31ms)
+    ✓ LayoutSQL;n=256 (39ms)
+    ✓ LayoutSQL;n=512 (79ms)
+    ✓ LayoutSQL;n=1024 (239ms)
+    ✓ LayoutSQL;n=2048 (908ms)
+    ✓ LayoutSQL;n=4096 (4024ms)
+    ✓ LayoutSQL;n=8192 (2081ms)
+    ✓ LayoutSQL;n=16384 (7137ms)
+    ✓ LayoutSQL;n=32768 (32825ms)
+    ✓ LayoutSQL;n=65536 (128633ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..72e592f0d8972737fbf4dae4e37ae4b0b392548c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (65ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (85ms)
+    ✓ LayoutView;n=512 (197ms)
+    ✓ LayoutView;n=1024 (656ms)
+    ✓ LayoutView;n=2048 (907ms)
+    ✓ LayoutView;n=4096 (559ms)
+    ✓ LayoutView;n=8192 (1899ms)
+    ✓ LayoutView;n=16384 (6511ms)
+    ✓ LayoutView;n=32768 (25638ms)
+    ✓ LayoutView;n=65536 (102693ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (213ms)
+    ✓ LayoutSQL;n=2048 (725ms)
+    ✓ LayoutSQL;n=4096 (3563ms)
+    ✓ LayoutSQL;n=8192 (2098ms)
+    ✓ LayoutSQL;n=16384 (7117ms)
+    ✓ LayoutSQL;n=32768 (31259ms)
+    ✓ LayoutSQL;n=65536 (122183ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..bf1fcfa92db6662d3797229d16e6eb5ee2d70cc4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (34ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (65ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (87ms)
+    ✓ LayoutView;n=512 (203ms)
+    ✓ LayoutView;n=1024 (684ms)
+    ✓ LayoutView;n=2048 (706ms)
+    ✓ LayoutView;n=4096 (646ms)
+    ✓ LayoutView;n=8192 (1936ms)
+    ✓ LayoutView;n=16384 (6699ms)
+    ✓ LayoutView;n=32768 (26547ms)
+    ✓ LayoutView;n=65536 (113849ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (90ms)
+    ✓ LayoutSQL;n=1024 (267ms)
+    ✓ LayoutSQL;n=2048 (994ms)
+    ✓ LayoutSQL;n=4096 (4529ms)
+    ✓ LayoutSQL;n=8192 (2157ms)
+    ✓ LayoutSQL;n=16384 (6935ms)
+    ✓ LayoutSQL;n=32768 (32387ms)
+    ✓ LayoutSQL;n=65536 (127444ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..9197e80051fafab86259497c8ff1aa9ef5e1e1a4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (59ms)
+    ✓ LayoutView;n=128 (34ms)
+    ✓ LayoutView;n=256 (74ms)
+    ✓ LayoutView;n=512 (157ms)
+    ✓ LayoutView;n=1024 (605ms)
+    ✓ LayoutView;n=2048 (829ms)
+    ✓ LayoutView;n=4096 (565ms)
+    ✓ LayoutView;n=8192 (1960ms)
+    ✓ LayoutView;n=16384 (6678ms)
+    ✓ LayoutView;n=32768 (26848ms)
+    ✓ LayoutView;n=65536 (113858ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (63ms)
+    ✓ LayoutSQL;n=1024 (253ms)
+    ✓ LayoutSQL;n=2048 (971ms)
+    ✓ LayoutSQL;n=4096 (4539ms)
+    ✓ LayoutSQL;n=8192 (2059ms)
+    ✓ LayoutSQL;n=16384 (6802ms)
+    ✓ LayoutSQL;n=32768 (29811ms)
+    ✓ LayoutSQL;n=65536 (128152ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..e9d7dded1ef0f3745c3e7ba2fd1149d5513dba86
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (86ms)
+    ✓ LayoutView;n=512 (196ms)
+    ✓ LayoutView;n=1024 (814ms)
+    ✓ LayoutView;n=2048 (884ms)
+    ✓ LayoutView;n=4096 (561ms)
+    ✓ LayoutView;n=8192 (1885ms)
+    ✓ LayoutView;n=16384 (6611ms)
+    ✓ LayoutView;n=32768 (26192ms)
+    ✓ LayoutView;n=65536 (116873ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (71ms)
+    ✓ LayoutSQL;n=1024 (252ms)
+    ✓ LayoutSQL;n=2048 (1092ms)
+    ✓ LayoutSQL;n=4096 (4207ms)
+    ✓ LayoutSQL;n=8192 (2201ms)
+    ✓ LayoutSQL;n=16384 (7020ms)
+    ✓ LayoutSQL;n=32768 (31689ms)
+    ✓ LayoutSQL;n=65536 (128341ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..8bf0a043c33f54594efe26c92ef74d21853ea81e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (8ms)
+    ✓ LayoutView;n=64 (54ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (85ms)
+    ✓ LayoutView;n=512 (151ms)
+    ✓ LayoutView;n=1024 (564ms)
+    ✓ LayoutView;n=2048 (968ms)
+    ✓ LayoutView;n=4096 (646ms)
+    ✓ LayoutView;n=8192 (2001ms)
+    ✓ LayoutView;n=16384 (6767ms)
+    ✓ LayoutView;n=32768 (26547ms)
+    ✓ LayoutView;n=65536 (125400ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (77ms)
+    ✓ LayoutSQL;n=1024 (249ms)
+    ✓ LayoutSQL;n=2048 (884ms)
+    ✓ LayoutSQL;n=4096 (4220ms)
+    ✓ LayoutSQL;n=8192 (2115ms)
+    ✓ LayoutSQL;n=16384 (7321ms)
+    ✓ LayoutSQL;n=32768 (32915ms)
+    ✓ LayoutSQL;n=65536 (127424ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..238df83f9d2fee53a7e418b4742cc89434219a82
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (33ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (37ms)
+    ✓ LayoutView;n=256 (85ms)
+    ✓ LayoutView;n=512 (188ms)
+    ✓ LayoutView;n=1024 (708ms)
+    ✓ LayoutView;n=2048 (816ms)
+    ✓ LayoutView;n=4096 (560ms)
+    ✓ LayoutView;n=8192 (2082ms)
+    ✓ LayoutView;n=16384 (6696ms)
+    ✓ LayoutView;n=32768 (29197ms)
+    ✓ LayoutView;n=65536 (127522ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (89ms)
+    ✓ LayoutSQL;n=1024 (253ms)
+    ✓ LayoutSQL;n=2048 (959ms)
+    ✓ LayoutSQL;n=4096 (4108ms)
+    ✓ LayoutSQL;n=8192 (2124ms)
+    ✓ LayoutSQL;n=16384 (6984ms)
+    ✓ LayoutSQL;n=32768 (31111ms)
+    ✓ LayoutSQL;n=65536 (115859ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..f2f4302cb977cad05e6817f9989c3cefdf131e6f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (78ms)
+    ✓ LayoutView;n=512 (191ms)
+    ✓ LayoutView;n=1024 (659ms)
+    ✓ LayoutView;n=2048 (875ms)
+    ✓ LayoutView;n=4096 (584ms)
+    ✓ LayoutView;n=8192 (2398ms)
+    ✓ LayoutView;n=16384 (6989ms)
+    ✓ LayoutView;n=32768 (27668ms)
+    ✓ LayoutView;n=65536 (123651ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (236ms)
+    ✓ LayoutSQL;n=2048 (855ms)
+    ✓ LayoutSQL;n=4096 (4316ms)
+    ✓ LayoutSQL;n=8192 (2154ms)
+    ✓ LayoutSQL;n=16384 (7142ms)
+    ✓ LayoutSQL;n=32768 (31196ms)
+    ✓ LayoutSQL;n=65536 (112888ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..2a52069efa6dc50db6e94d1ecfb26bcb6c844b17
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (30ms)
+    ✓ LayoutView;n=256 (70ms)
+    ✓ LayoutView;n=512 (151ms)
+    ✓ LayoutView;n=1024 (538ms)
+    ✓ LayoutView;n=2048 (746ms)
+    ✓ LayoutView;n=4096 (549ms)
+    ✓ LayoutView;n=8192 (1950ms)
+    ✓ LayoutView;n=16384 (6461ms)
+    ✓ LayoutView;n=32768 (25301ms)
+    ✓ LayoutView;n=65536 (104777ms)
+    ✓ LayoutSQL;n=16 (15ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (208ms)
+    ✓ LayoutSQL;n=2048 (730ms)
+    ✓ LayoutSQL;n=4096 (3473ms)
+    ✓ LayoutSQL;n=8192 (2108ms)
+    ✓ LayoutSQL;n=16384 (6913ms)
+    ✓ LayoutSQL;n=32768 (32226ms)
+    ✓ LayoutSQL;n=65536 (123814ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-06/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..f1ad0c81b914c56d7744b7e67a9a2f2ae8bc2436
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (34ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (66ms)
+    ✓ LayoutView;n=128 (42ms)
+    ✓ LayoutView;n=256 (109ms)
+    ✓ LayoutView;n=512 (236ms)
+    ✓ LayoutView;n=1024 (732ms)
+    ✓ LayoutView;n=2048 (1000ms)
+    ✓ LayoutView;n=4096 (564ms)
+    ✓ LayoutView;n=8192 (1960ms)
+    ✓ LayoutView;n=16384 (6756ms)
+    ✓ LayoutView;n=32768 (27234ms)
+    ✓ LayoutView;n=65536 (118711ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (20ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (79ms)
+    ✓ LayoutSQL;n=1024 (250ms)
+    ✓ LayoutSQL;n=2048 (954ms)
+    ✓ LayoutSQL;n=4096 (3752ms)
+    ✓ LayoutSQL;n=8192 (2049ms)
+    ✓ LayoutSQL;n=16384 (7396ms)
+    ✓ LayoutSQL;n=32768 (35580ms)
+    ✓ LayoutSQL;n=65536 (118774ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..14764a2165b3af4a0ea261b2fa2681a7e5cde7be
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90144 ms: Mark-sweep 1326.4 (1434.7) -> 1319.5 (1434.7) MB, 6282.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   96547 ms: Mark-sweep 1319.5 (1434.7) -> 1319.4 (1434.7) MB, 6403.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  103047 ms: Mark-sweep 1319.4 (1434.7) -> 1324.4 (1415.7) MB, 6499.0 / 0.0 ms [last resort gc].
+  109437 ms: Mark-sweep 1324.4 (1415.7) -> 1329.4 (1415.7) MB, 6389.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2d1c34acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1a3ec29c82e7] (this=0x5a212fae981 <a Graph with map 0x2d15df16fe99>,idV=0xca52e8836e1 <String[9]: dim:12733>,idU=0xca52e867b11 <String[9]: dim:12735>,value=0x3759158a47f9 <a View with map 0x2d15df172af1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1a3ec29b06f5] (this=0x5a212fae981 <a Graph with map 0x2d15df16fe99>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1a3ec20079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..da3ef5e514cc680b8799a412257f047b4b534048
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92171 ms: Mark-sweep 1324.0 (1437.7) -> 1322.3 (1437.7) MB, 5276.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   97965 ms: Mark-sweep 1322.3 (1437.7) -> 1322.3 (1437.7) MB, 5794.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  103898 ms: Mark-sweep 1322.3 (1437.7) -> 1326.9 (1414.7) MB, 5932.0 / 0.0 ms [last resort gc].
+  110121 ms: Mark-sweep 1326.9 (1414.7) -> 1331.6 (1414.7) MB, 6222.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x886917cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x31e1b9cc01b8] (this=0x37903a1e0b71 <a Graph with map 0x2289b1583a29>,idV=0x2bf8b3a77eb1 <String[9]: dim:13115>,idU=0x2bf8b3a6fb09 <String[9]: dim:13117>,value=0x4bbeabf6a91 <a View with map 0x2289b1586681>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x31e1b9ca5755] (this=0x37903a1e0b71 <a Graph with map 0x2289b1583a2...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x31e1b93079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..3ec17b7a49adb93953302a28f71c423628e7a661
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run11.test
@@ -0,0 +1,40 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  111051 ms: Mark-sweep 1331.1 (1413.7) -> 1331.0 (1424.7) MB, 4785.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  115275 ms: Mark-sweep 1331.0 (1424.7) -> 1331.0 (1424.7) MB, 4224.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  119446 ms: Mark-sweep 1331.0 (1424.7) -> 1338.0 (1413.7) MB, 4170.9 / 0.0 ms [last resort gc].
+  123603 ms: Mark-sweep 1338.0 (1413.7) -> 1345.0 (1413.7) MB, 4156.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+    2: arguments adaptor frame: 3->1
+Security context: 0x13d1aacf781 <JS Object>
+    3: map [native array.js:~994] [pc=0xb89aad8a072] (this=0x209985492fe1 <JS Array[8]>,bq=0x2857cb14d9b9 <JS Function view.dimensions.map.dim (SharedFunctionInfo 0x197c26683891)>,br=0x13d1aa04381 <undefined>)
+    4: arguments adaptor frame: 1->2
+    5: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xb89aad8b451] (this=0x201306dbb919 <a Graph with ma...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewByteArray(int, v8::internal::PretenureFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Factory::NewCode(v8::internal::CodeDesc const&, unsigned int, v8::internal::Handle<v8::internal::Object>, bool, bool, int, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::CodeGenerator::MakeCodeEpilogue(v8::internal::MacroAssembler*, v8::internal::CompilationInfo*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::FullCodeGenerator::MakeCode(v8::internal::CompilationInfo*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: 0xa632de [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: 0xa656c0 [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: 0xa6cd86 [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::Compiler::Compile(v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Compiler::ClearExceptionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Runtime_CompileLazy(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: 0xb89aa4092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..7dc2fbbb150a3fd60fb34f5be715cd781475494b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  124371 ms: Mark-sweep 1333.9 (1416.7) -> 1333.9 (1430.7) MB, 5773.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  129936 ms: Mark-sweep 1333.9 (1430.7) -> 1333.9 (1430.7) MB, 5564.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  135576 ms: Mark-sweep 1333.9 (1430.7) -> 1338.7 (1416.7) MB, 5639.7 / 0.0 ms [last resort gc].
+  140053 ms: Mark-sweep 1338.7 (1416.7) -> 1343.5 (1416.7) MB, 4476.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2dad448cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x386fd32e6e07] (this=0x3c98ec815451 <a Graph with map 0x38de73e84421>,idV=0x1930114bff01 <String[9]: dim:13393>,idU=0x1930114c4551 <String[9]: dim:13394>,value=0x31967d068479 <a View with map 0x38de73e87079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x386fd32c94d5] (this=0x3c98ec815451 <a Graph with map 0x38de73e84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x386fd29079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..8127b5dc7c2031d8a034e1835a146fc7b1e14c07
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  103136 ms: Mark-sweep 1316.6 (1434.7) -> 1316.6 (1434.7) MB, 6494.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  109415 ms: Mark-sweep 1316.6 (1434.7) -> 1316.6 (1434.7) MB, 6278.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  115312 ms: Mark-sweep 1316.6 (1434.7) -> 1323.2 (1414.7) MB, 5897.3 / 0.0 ms [last resort gc].
+  120869 ms: Mark-sweep 1323.2 (1414.7) -> 1329.9 (1414.7) MB, 5556.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2ef8e89cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11b4e00c12b8] (this=0x1b851a7a44c9 <a Graph with map 0x3f649a46fff9>,idV=0x28d67b10d501 <String[9]: dim:12326>,idU=0x1101f0da59e9 <String[9]: dim:12327>,value=0x8f79c110b91 <a View with map 0x3f649a472c51>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11b4e00a0bb5] (this=0x1b851a7a44c9 <a Graph with map 0x3f649a46ff...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x11b4df7079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..17ec83cee5e823664e1d48103fcc7977be214fce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   95946 ms: Mark-sweep 1319.8 (1434.7) -> 1319.8 (1434.7) MB, 4505.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  101542 ms: Mark-sweep 1319.8 (1434.7) -> 1319.8 (1434.7) MB, 5595.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  105683 ms: Mark-sweep 1319.8 (1434.7) -> 1324.9 (1415.7) MB, 4140.5 / 0.0 ms [last resort gc].
+  109924 ms: Mark-sweep 1324.9 (1415.7) -> 1330.1 (1415.7) MB, 4240.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1dd894fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3ed5194cc212] (this=0x98a37484149 <a Graph with map 0x2f834296fc89>,idV=0x164661c22749 <String[9]: dim:12785>,idU=0x164661c2cac9 <String[9]: dim:12786>,value=0xed9e886c991 <a View with map 0x2f83429728e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3ed519499a55] (this=0x98a37484149 <a Graph with map 0x2f834296fc89...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3ed518b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..4c112d4398ef7e38da196803f20a1eeb8d30ccf0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run15.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93401 ms: Mark-sweep 1323.4 (1434.7) -> 1318.8 (1434.7) MB, 6196.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   99312 ms: Mark-sweep 1318.8 (1434.7) -> 1318.8 (1434.7) MB, 5910.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  105629 ms: Mark-sweep 1318.8 (1434.7) -> 1324.8 (1412.7) MB, 6316.1 / 0.0 ms [last resort gc].
+  112518 ms: Mark-sweep 1324.8 (1412.7) -> 1330.9 (1412.7) MB, 6888.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1efab56cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x77868da6d2c] (this=0x17f6a7b22469 <a Graph with map 0x3bccddc70101>,idV=0x21f9f84aa381 <String[9]: dim:12622>,idU=0x21f9f8473109 <String[9]: dim:12624>,value=0x3d71ae670879 <a View with map 0x3bccddc72d59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x77868d88e15] (this=0x17f6a7b22469 <a Graph with map 0x3bccddc7010...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x778684092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..8487242e4526b02557ab355251ed1d2a59b72aa4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93743 ms: Mark-sweep 1325.5 (1434.7) -> 1320.0 (1434.7) MB, 5996.2 / 0.0 ms [allocation failure] [GC in old space requested].
+   98860 ms: Mark-sweep 1320.0 (1434.7) -> 1320.0 (1434.7) MB, 5115.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  104354 ms: Mark-sweep 1320.0 (1434.7) -> 1325.1 (1414.7) MB, 5494.0 / 0.0 ms [last resort gc].
+  110621 ms: Mark-sweep 1325.1 (1414.7) -> 1330.1 (1414.7) MB, 6266.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xc2c6becf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xda638fca71a] (this=0x331e7820169 <a Graph with map 0x31a4e696fe41>,idV=0xb3eff874741 <String[9]: dim:12792>,idU=0xb3eff8b6099 <String[9]: dim:12799>,value=0x2ad7e7671e09 <a View with map 0x31a4e6972a99>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xda638fb0095] (this=0x331e7820169 <a Graph with map 0x31a4e696fe41>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xda6386079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..016d2546880d13adfd3ddd58f89afc6725ed82cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   89517 ms: Mark-sweep 1319.8 (1434.7) -> 1319.8 (1434.7) MB, 5576.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   95496 ms: Mark-sweep 1319.8 (1434.7) -> 1319.8 (1434.7) MB, 5978.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  102133 ms: Mark-sweep 1319.8 (1434.7) -> 1324.6 (1415.7) MB, 6636.7 / 0.0 ms [last resort gc].
+  108266 ms: Mark-sweep 1324.6 (1415.7) -> 1329.5 (1415.7) MB, 6132.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1bd79b1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1565a12bdb87] (this=0x81fee379019 <a Graph with map 0x315da0570101>,idV=0x1c10efa28171 <String[9]: dim:12776>,idU=0x1c10efa38941 <String[9]: dim:12777>,value=0x154bb376c671 <a View with map 0x315da0572d59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1565a129fd55] (this=0x81fee379019 <a Graph with map 0x315da057010...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1565a09079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..c5fe5382e2b6de7354233f33cafb3d0f4b438e8b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92669 ms: Mark-sweep 1321.5 (1436.7) -> 1320.9 (1436.7) MB, 5858.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   97788 ms: Mark-sweep 1320.9 (1436.7) -> 1320.9 (1436.7) MB, 5118.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  103967 ms: Mark-sweep 1320.9 (1436.7) -> 1326.4 (1412.7) MB, 6178.8 / 0.0 ms [last resort gc].
+  110619 ms: Mark-sweep 1326.4 (1412.7) -> 1332.1 (1412.7) MB, 6651.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x17b4cd3cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xc4eea6c3167] (this=0x30e480ca7401 <a Graph with map 0x25fc2a384371>,idV=0x1eb5ef16fe59 <String[9]: dim:12914>,idU=0x1eb5ef17def1 <String[9]: dim:12915>,value=0x2d2c467b94f9 <a View with map 0x25fc2a386fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xc4eea697a15] (this=0x30e480ca7401 <a Graph with map 0x25fc2a38437...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xc4ee9d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..4cf657355a57a12c4c1646c45723e22b8726bc44
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94535 ms: Mark-sweep 1320.8 (1436.7) -> 1320.5 (1436.7) MB, 7257.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  101419 ms: Mark-sweep 1320.5 (1436.7) -> 1320.5 (1436.7) MB, 6883.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  108385 ms: Mark-sweep 1320.5 (1436.7) -> 1325.1 (1412.7) MB, 6964.9 / 0.0 ms [last resort gc].
+  114489 ms: Mark-sweep 1325.1 (1412.7) -> 1329.8 (1412.7) MB, 6104.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3dcaa20cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x392c996a1aa7] (this=0x3ee5432db2c1 <a Graph with map 0x30c121184211>,idV=0x2d4dd5943a61 <String[9]: dim:12856>,idU=0x2d4dd59ab8e9 <String[9]: dim:12858>,value=0x20bce44ec119 <a View with map 0x30c121186e69>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x392c99687475] (this=0x3ee5432db2c1 <a Graph with map 0x30c121184...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x392c98d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..699caf1707fe73c4780dd99c3d5a57a8fb3943ee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   91281 ms: Mark-sweep 1315.7 (1434.7) -> 1315.6 (1434.7) MB, 6343.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   98266 ms: Mark-sweep 1315.6 (1434.7) -> 1315.6 (1434.7) MB, 6984.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  104965 ms: Mark-sweep 1315.6 (1434.7) -> 1323.2 (1412.7) MB, 6698.2 / 0.0 ms [last resort gc].
+  111726 ms: Mark-sweep 1323.2 (1412.7) -> 1330.9 (1412.7) MB, 6760.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x536256cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2834c79b9f47] (this=0x855706b6bb9 <a Graph with map 0x2976a4e70159>,idV=0x2df49eb51711 <String[9]: dim:12163>,idU=0x2df49ebb52d1 <String[9]: dim:12165>,value=0x3e700721bc81 <a View with map 0x2976a4e72db1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2834c799efb5] (this=0x855706b6bb9 <a Graph with map 0x2976a4e70159...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2834c70079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..1d9c50d1879b47a9d1fe8bcbc5589cbb0b6aa78a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run20.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   86980 ms: Mark-sweep 1325.3 (1434.7) -> 1318.9 (1434.7) MB, 6672.9 / 0.0 ms [allocation failure] [GC in old space requested].
+   93640 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 6660.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  100322 ms: Mark-sweep 1318.8 (1434.7) -> 1324.8 (1413.7) MB, 6681.2 / 0.0 ms [last resort gc].
+  106621 ms: Mark-sweep 1324.8 (1413.7) -> 1330.8 (1413.7) MB, 6298.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2d92ee9cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2e1e1f9e138c] (this=0x2c58f0808d9 <a Graph with map 0x2253ae26fff9>,idV=0x14a12ed5ae59 <String[9]: dim:12638>,idU=0x14a12ed21399 <String[9]: dim:12640>,value=0x374b19969a61 <a View with map 0x2253ae272c51>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2e1e1f9b3335] (this=0x2c58f0808d9 <a Graph with map 0x2253ae26fff...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x2e1e1f0092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..a798cebba1ec05f28ebc0e84e5c2ef60a4a72b74
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94825 ms: Mark-sweep 1324.4 (1434.7) -> 1321.2 (1434.7) MB, 5528.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  101224 ms: Mark-sweep 1321.2 (1434.7) -> 1321.2 (1434.7) MB, 6398.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  107775 ms: Mark-sweep 1321.2 (1434.7) -> 1325.1 (1416.7) MB, 6550.5 / 0.0 ms [last resort gc].
+  114182 ms: Mark-sweep 1325.1 (1416.7) -> 1329.1 (1416.7) MB, 6406.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xc80379cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35c1718f0fb8] (this=0x3aae620b44f1 <a Graph with map 0x222992470051>,idV=0x270ef934dd91 <String[9]: dim:12987>,idU=0x270ef933b401 <String[9]: dim:12988>,value=0x68ba64a97a9 <a View with map 0x222992472ca9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35c1718d1e75] (this=0x3aae620b44f1 <a Graph with map 0x22299247005...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x35c170f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..871f84a21513fc1374ae12d539b5e64c50b98edf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run4.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90577 ms: Mark-sweep 1325.6 (1434.7) -> 1319.0 (1434.7) MB, 7180.0 / 0.0 ms [allocation failure] [GC in old space requested].
+   95965 ms: Mark-sweep 1319.0 (1434.7) -> 1319.0 (1434.7) MB, 5387.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  101645 ms: Mark-sweep 1319.0 (1434.7) -> 1325.0 (1414.7) MB, 5679.4 / 0.0 ms [last resort gc].
+  107602 ms: Mark-sweep 1325.0 (1414.7) -> 1331.1 (1414.7) MB, 5956.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x169496dcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x319f249dbacc] (this=0x23426b584149 <a Graph with map 0xbf39566fef1>,idV=0x3a2965d5f611 <String[9]: dim:12666>,idU=0x3a2965d2c7d1 <String[9]: dim:12671>,value=0x8bd3b66a411 <a View with map 0xbf395672b49>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x319f249ae0b5] (this=0x23426b584149 <a Graph with map 0xbf39566fef1>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x319f240092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..38bcfe7047ad8ba591cb674c34689ec5030f5809
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  123861 ms: Mark-sweep 1336.2 (1414.7) -> 1336.2 (1426.7) MB, 5821.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  128866 ms: Mark-sweep 1336.2 (1426.7) -> 1336.2 (1426.7) MB, 5004.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  134636 ms: Mark-sweep 1336.2 (1426.7) -> 1342.1 (1414.7) MB, 5769.3 / 0.0 ms [last resort gc].
+  139885 ms: Mark-sweep 1342.1 (1414.7) -> 1348.0 (1414.7) MB, 5249.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xe178a3cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x293fd52a4427] (this=0x66851683991 <a Graph with map 0x169288770101>,idV=0x12a0b2a4da01 <String[9]: dim:13403>,idU=0x12a0b2a62de1 <String[9]: dim:13404>,value=0x2c812c071bc1 <a View with map 0x169288772d59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x293fd528dc35] (this=0x66851683991 <a Graph with map 0x169288770101...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x293fd47079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..5d7afbf2f8c0ec959f4ca06cf459813243e0b58c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   85763 ms: Mark-sweep 1329.9 (1434.7) -> 1321.4 (1434.7) MB, 6634.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   90773 ms: Mark-sweep 1321.4 (1434.7) -> 1321.4 (1434.7) MB, 5009.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   95669 ms: Mark-sweep 1321.4 (1434.7) -> 1325.3 (1416.7) MB, 4895.0 / 0.0 ms [last resort gc].
+  101581 ms: Mark-sweep 1325.3 (1416.7) -> 1329.2 (1416.7) MB, 5911.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x13eacc3cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x23007cac3007] (this=0x2c8ec0fac4c1 <a Graph with map 0x16d3438700a9>,idV=0x3cdc6b36a681 <String[9]: dim:13006>,idU=0x3cdc6b3969e1 <String[9]: dim:13007>,value=0x35d354a9c09 <a View with map 0x16d343872d01>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x23007caa7bf5] (this=0x2c8ec0fac4c1 <a Graph with map 0x16d3438700...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x23007c1079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..8615c5a5ed76063c3629b4a6c6cc38f32fe4dc35
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  104015 ms: Mark-sweep 1324.7 (1436.7) -> 1324.6 (1436.7) MB, 5966.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  109845 ms: Mark-sweep 1324.6 (1436.7) -> 1324.6 (1436.7) MB, 5829.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  115935 ms: Mark-sweep 1324.6 (1436.7) -> 1329.3 (1410.7) MB, 6089.5 / 0.0 ms [last resort gc].
+  121192 ms: Mark-sweep 1329.3 (1410.7) -> 1333.9 (1410.7) MB, 5257.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xb5e293cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3eb33cdd25c7] (this=0x258f76984b11 <a Graph with map 0x3b097dd70101>,idV=0x2126ec94c259 <String[9]: dim:13448>,idU=0x2126ec919849 <String[9]: dim:13449>,value=0x2c8e0ee72a21 <a View with map 0x3b097dd72d59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3eb33cda7bd5] (this=0x258f76984b11 <a Graph with map 0x3b097dd701...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3eb33c4079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..c736d087058689fefdf19d482dd2eeb3a8e4d2b3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  100457 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 6975.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  107476 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 7018.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  113970 ms: Mark-sweep 1319.4 (1434.7) -> 1324.5 (1414.7) MB, 6493.8 / 0.0 ms [last resort gc].
+  120142 ms: Mark-sweep 1324.5 (1414.7) -> 1329.9 (1414.7) MB, 6171.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x32fd00cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x33ac88ebdad8] (this=0x3f46761b6289 <a Graph with map 0x33b91796fb29>,idV=0x2572deda48f9 <String[9]: dim:12709>,idU=0x2572ded90fb9 <String[9]: dim:12710>,value=0x2a9ab57a4079 <a View with map 0x33b917972781>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x33ac88ea23d5] (this=0x3f46761b6289 <a Graph with map 0x33b91796fb...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x33ac885079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-06/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-06/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..b335d6970212e078ad52bec25770963a0c8f62c2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-06/linear8/run9.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   84679 ms: Mark-sweep 1324.9 (1434.7) -> 1318.7 (1434.7) MB, 6385.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   91065 ms: Mark-sweep 1318.7 (1434.7) -> 1318.7 (1434.7) MB, 6385.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   96894 ms: Mark-sweep 1318.7 (1434.7) -> 1324.5 (1413.7) MB, 5828.4 / 0.0 ms [last resort gc].
+  103317 ms: Mark-sweep 1324.5 (1413.7) -> 1330.4 (1413.7) MB, 6422.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1bc720acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3b21816aa94c] (this=0x1ddf550c0999 <a Graph with map 0x3fa444e70101>,idV=0x3ac776497b59 <String[9]: dim:12614>,idU=0x3ac7764805c9 <String[9]: dim:12616>,value=0x9445a6b21b1 <a View with map 0x3fa444e72d59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3b218168f695] (this=0x1ddf550c0999 <a Graph with map 0x3fa444e701...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x3b2180d092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..101cda80312ba4b3d49a7c33305d5cc9a0324a10
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 338.75
+Mediana        = 338.5
+Variancia      = 168.09
+Desvio Padrao  = 12.97
+Coef. Variacao = 0.04
+Min            = 311
+Max            = 370
+Esq, Dir.      = 333.9815 , 343.5185
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..92ee60acbe192adf088320219f4bb9dac33f05f1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 344
+1024 370
+1024 346
+1024 327
+1024 328
+1024 353
+1024 353
+1024 333
+1024 333
+1024 344
+1024 343
+1024 322
+1024 340
+1024 311
+1024 335
+1024 328
+1024 352
+1024 336
+1024 339
+1024 338
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..2f0e7e1b71e00d5c48f412d2f68d6bec9ffbdd91
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 239.2
+Mediana        = 240
+Variancia      = 75.75
+Desvio Padrao  = 8.7
+Coef. Variacao = 0.04
+Min            = 219
+Max            = 252
+Esq, Dir.      = 235.9989 , 242.4011
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..58504485360b8a078b5eabddae589fb10d7f9bbd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 241
+1024 241
+1024 241
+1024 247
+1024 238
+1024 239
+1024 226
+1024 219
+1024 245
+1024 234
+1024 252
+1024 249
+1024 225
+1024 238
+1024 244
+1024 235
+1024 249
+1024 238
+1024 234
+1024 249
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..819f079d9324e7ef86896f425922252552b86d75
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 24.25
+Mediana        = 24
+Variancia      = 6.2
+Desvio Padrao  = 2.49
+Coef. Variacao = 0.1
+Min            = 21
+Max            = 31
+Esq, Dir.      = 23.3344 , 25.1656
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3e2dd513bacfdb6e613da481f6d0763578d5212e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 22
+128 26
+128 22
+128 23
+128 24
+128 22
+128 24
+128 23
+128 24
+128 31
+128 25
+128 30
+128 23
+128 23
+128 23
+128 25
+128 25
+128 24
+128 25
+128 21
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..7cc87e6790603c445655cc4fe9a0bb7108cf1a0d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 16
+Mediana        = 14.5
+Variancia      = 11.05
+Desvio Padrao  = 3.32
+Coef. Variacao = 0.21
+Min            = 12
+Max            = 23
+Esq, Dir.      = 14.7772 , 17.2228
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..b95109de8bc80194a87c9f3bc3359cb182fad9a3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 14
+128 14
+128 14
+128 17
+128 13
+128 19
+128 23
+128 12
+128 19
+128 15
+128 18
+128 14
+128 13
+128 13
+128 21
+128 13
+128 21
+128 13
+128 19
+128 15
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6f69e1c5761f1d45f9da30b529622eb1d689161d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.95
+Mediana        = 11
+Variancia      = 0.47
+Desvio Padrao  = 0.69
+Coef. Variacao = 0.06
+Min            = 10
+Max            = 12
+Esq, Dir.      = 10.6976 , 11.2024
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a63e7d902caad2b9a256cfbc822e6e30b21003cf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 12
+16 12
+16 10
+16 10
+16 11
+16 11
+16 11
+16 10
+16 11
+16 10
+16 12
+16 11
+16 11
+16 10
+16 11
+16 12
+16 11
+16 11
+16 11
+16 11
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..274c7d325d0ab9f7b46d0b6e8f46b9188be6454d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 15.6
+Mediana        = 15.5
+Variancia      = 1.73
+Desvio Padrao  = 1.31
+Coef. Variacao = 0.08
+Min            = 14
+Max            = 20
+Esq, Dir.      = 15.1167 , 16.0833
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..bda38c83971fb38bf14712c8bb9c7b80977b6922
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 16
+16 15
+16 16
+16 16
+16 15
+16 16
+16 14
+16 14
+16 17
+16 15
+16 20
+16 15
+16 15
+16 15
+16 16
+16 14
+16 16
+16 16
+16 15
+16 16
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0fe7eef26ec2fee7296fdabd73114a3f1206b4f5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 80373.9
+Mediana        = 80132.5
+Variancia      = 26200895.67
+Desvio Padrao  = 5118.68
+Coef. Variacao = 0.06
+Min            = 71626
+Max            = 89854
+Esq, Dir.      = 78491.2468 , 82256.5532
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8ed2b24ffa89b60bc1e5783ba76159a263bcea72
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 83176
+16384 86881
+16384 81558
+16384 83554
+16384 74577
+16384 78634
+16384 86756
+16384 77625
+16384 77458
+16384 89854
+16384 74001
+16384 85630
+16384 71626
+16384 74380
+16384 83490
+16384 74152
+16384 78894
+16384 80517
+16384 84967
+16384 79748
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f6c2e8fea93261dcd64f9566be5c3015e7499d3c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 56715.15
+Mediana        = 57009.5
+Variancia      = 6948202.66
+Desvio Padrao  = 2635.94
+Coef. Variacao = 0.05
+Min            = 51318
+Max            = 60529
+Esq, Dir.      = 55745.6485 , 57684.6515
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b5f9f049f083ba1ee839c8893aa6f463f49cc6d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 56965
+16384 58189
+16384 56038
+16384 59377
+16384 53558
+16384 57666
+16384 53364
+16384 52173
+16384 57823
+16384 54984
+16384 59994
+16384 60529
+16384 51318
+16384 57054
+16384 56550
+16384 56256
+16384 58941
+16384 58539
+16384 55146
+16384 59839
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8131f6dd98b45518a3ead8bc4a4206b47e1b682a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1220
+Mediana        = 1212
+Variancia      = 2745.16
+Desvio Padrao  = 52.39
+Coef. Variacao = 0.04
+Min            = 1131
+Max            = 1329
+Esq, Dir.      = 1200.7294 , 1239.2706
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9c163f22bb6704d4dfdabe9a265da349324b9a6f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1269
+2048 1329
+2048 1233
+2048 1315
+2048 1167
+2048 1236
+2048 1276
+2048 1172
+2048 1248
+2048 1211
+2048 1211
+2048 1151
+2048 1198
+2048 1131
+2048 1213
+2048 1184
+2048 1266
+2048 1182
+2048 1222
+2048 1186
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..ec148b13c1f7cd042361e0f017d93a59214356ef
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 926.25
+Mediana        = 927.5
+Variancia      = 1458.93
+Desvio Padrao  = 38.2
+Coef. Variacao = 0.04
+Min            = 841
+Max            = 990
+Esq, Dir.      = 912.2015 , 940.2985
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..b6c3a670d64f545da101fee6b7f60db73fe6c046
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 937
+2048 924
+2048 939
+2048 950
+2048 931
+2048 924
+2048 873
+2048 841
+2048 953
+2048 893
+2048 978
+2048 962
+2048 872
+2048 914
+2048 966
+2048 909
+2048 990
+2048 911
+2048 900
+2048 958
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..23af47bf623b16005035ed7e2fae86dd802f65e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 34.5
+Mediana        = 35
+Variancia      = 2.37
+Desvio Padrao  = 1.54
+Coef. Variacao = 0.04
+Min            = 32
+Max            = 37
+Esq, Dir.      = 33.934 , 35.066
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..560106014d3e7f2b5fd652d982ba00bcddb11815
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 35
+256 36
+256 33
+256 33
+256 33
+256 33
+256 35
+256 33
+256 36
+256 35
+256 36
+256 32
+256 34
+256 33
+256 35
+256 37
+256 36
+256 35
+256 37
+256 33
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c7cb3dd8d5ba5750c7d2a0ace0a8a35807a12788
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 38.25
+Mediana        = 42
+Variancia      = 125.78
+Desvio Padrao  = 11.22
+Coef. Variacao = 0.29
+Min            = 25
+Max            = 56
+Esq, Dir.      = 34.1251 , 42.3749
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4fd5b484d98eb6f6c274dcd129e92c749e19bd63
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 25
+256 43
+256 45
+256 53
+256 25
+256 48
+256 28
+256 39
+256 45
+256 51
+256 56
+256 26
+256 41
+256 43
+256 51
+256 25
+256 25
+256 44
+256 25
+256 27
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2db39a809d161b1cbb59b057fb401125b6009706
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 6.45
+Mediana        = 6
+Variancia      = 5.94
+Desvio Padrao  = 2.44
+Coef. Variacao = 0.38
+Min            = 5
+Max            = 12
+Esq, Dir.      = 5.5532 , 7.3468
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..1399b5d142eb1ddbff863089750802c9a5f69ca6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 6
+32 5
+32 5
+32 5
+32 12
+32 5
+32 6
+32 12
+32 6
+32 6
+32 6
+32 5
+32 5
+32 5
+32 5
+32 6
+32 12
+32 6
+32 6
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..cd0c651908a77ba73c2a5cdc6fb3d80caa52beeb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 4.75
+Mediana        = 4.5
+Variancia      = 1.78
+Desvio Padrao  = 1.33
+Coef. Variacao = 0.28
+Min            = 4
+Max            = 10
+Esq, Dir.      = 4.2598 , 5.2402
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..a69e64a8cafc6262e484924b76ba17aab5f34fcb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 4
+32 4
+32 4
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 10
+32 5
+32 4
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..00e31d559d66c7e7bcd24165d5e84a4fff49e33e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 326758.1
+Mediana        = 325381
+Variancia      = 318899902.62
+Desvio Padrao  = 17857.77
+Coef. Variacao = 0.05
+Min            = 293889
+Max            = 360118
+Esq, Dir.      = 320190.0046 , 333326.1954
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e21bc5ce047c78d70dc97131d78649483c36afc9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 315861
+32768 358428
+32768 332914
+32768 338682
+32768 321377
+32768 330866
+32768 344370
+32768 325033
+32768 293889
+32768 360118
+32768 325729
+32768 331873
+32768 311508
+32768 299734
+32768 315608
+32768 314960
+32768 320330
+32768 349788
+32768 334996
+32768 309098
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..8968798ed8d579ad9456e6ed38ad537f70397e66
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 229788.5
+Mediana        = 233880
+Variancia      = 200109453.21
+Desvio Padrao  = 14146
+Coef. Variacao = 0.06
+Min            = 203174
+Max            = 250113
+Esq, Dir.      = 224585.593 , 234991.407
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..7c833cf3d5c50d906d210f3d2b9f585497e34b2d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 238441
+32768 249557
+32768 234380
+32768 233516
+32768 215526
+32768 228777
+32768 223340
+32768 203174
+32768 234244
+32768 210439
+32768 250113
+32768 243828
+32768 206611
+32768 237470
+32768 237373
+32768 236396
+32768 215952
+32768 217360
+32768 232378
+32768 246895
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..88e37dfad66c84bc504d36019619be392b0450c3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4684.7
+Mediana        = 4653
+Variancia      = 79959.59
+Desvio Padrao  = 282.77
+Coef. Variacao = 0.06
+Min            = 4296
+Max            = 5378
+Esq, Dir.      = 4580.6966 , 4788.7034
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3ae82d229a98b6536fd3cc94503363fbec9cd2bb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4785
+4096 5230
+4096 4798
+4096 4646
+4096 4296
+4096 4770
+4096 5378
+4096 4538
+4096 4523
+4096 4762
+4096 4327
+4096 4965
+4096 4761
+4096 4326
+4096 4878
+4096 4512
+4096 4452
+4096 4512
+4096 4660
+4096 4575
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..afbad5b332ce6a0a7f6f3146cdb82b986c71ae6c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3255.4
+Mediana        = 3231.5
+Variancia      = 15305.83
+Desvio Padrao  = 123.72
+Coef. Variacao = 0.04
+Min            = 2961
+Max            = 3444
+Esq, Dir.      = 3209.8969 , 3300.9031
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8f397c961b4f5587a303047926f493ed6547efa9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 3286
+4096 3226
+4096 3343
+4096 3434
+4096 3224
+4096 3228
+4096 3143
+4096 2961
+4096 3303
+4096 3168
+4096 3444
+4096 3413
+4096 3064
+4096 3204
+4096 3297
+4096 3222
+4096 3367
+4096 3235
+4096 3167
+4096 3379
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..55f052cfcd5d1fbc055ee493fbb2bde93f0e8345
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 101.7
+Mediana        = 101
+Variancia      = 12.43
+Desvio Padrao  = 3.53
+Coef. Variacao = 0.03
+Min            = 92
+Max            = 109
+Esq, Dir.      = 100.4032 , 102.9968
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..69c52f27779c840836edc55c4f07cc353993fede
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 104
+512 109
+512 103
+512 99
+512 100
+512 104
+512 103
+512 100
+512 103
+512 104
+512 104
+512 98
+512 101
+512 92
+512 101
+512 100
+512 107
+512 100
+512 101
+512 101
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..23734f1efcf0950f1b26b70ac57ee9cbf0437187
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 84.35
+Mediana        = 81
+Variancia      = 97.08
+Desvio Padrao  = 9.85
+Coef. Variacao = 0.12
+Min            = 70
+Max            = 102
+Esq, Dir.      = 80.7261 , 87.9739
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..de4d9f72ccbfd2b8bfa020f38527517315439445
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 101
+512 76
+512 78
+512 79
+512 95
+512 80
+512 88
+512 70
+512 81
+512 74
+512 88
+512 94
+512 73
+512 76
+512 81
+512 90
+512 102
+512 74
+512 90
+512 97
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2f15e256105bbead4d195383b1d61279954e3a90
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.7
+Mediana        = 8
+Variancia      = 0.64
+Desvio Padrao  = 0.8
+Coef. Variacao = 0.1
+Min            = 6
+Max            = 9
+Esq, Dir.      = 7.4053 , 7.9947
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c62e245be8a84ce857dc755c01600dcbee9936c6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 8
+64 7
+64 7
+64 7
+64 8
+64 8
+64 8
+64 8
+64 8
+64 7
+64 8
+64 8
+64 7
+64 7
+64 7
+64 8
+64 9
+64 9
+64 9
+64 6
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..41f0c37d7c231839d5351c4ca97681332ddc5312
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6.75
+Mediana        = 6.5
+Variancia      = 1.88
+Desvio Padrao  = 1.37
+Coef. Variacao = 0.2
+Min            = 5
+Max            = 10
+Esq, Dir.      = 6.2455 , 7.2545
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..36a75275d4a0b6084321ade5419f3a20688c7306
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 6
+64 7
+64 7
+64 7
+64 5
+64 8
+64 9
+64 5
+64 6
+64 9
+64 6
+64 7
+64 6
+64 6
+64 10
+64 6
+64 7
+64 5
+64 6
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..df6f727b9af542f7a53a50bdf77d808f2745bbdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1320504.35
+Mediana        = 1325762
+Variancia      = 6463921135.82
+Desvio Padrao  = 80398.51
+Coef. Variacao = 0.06
+Min            = 1193744
+Max            = 1518349
+Esq, Dir.      = 1290933.74 , 1350074.96
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8c578223ed792151a7a1db4961be46972700d56e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 1366654
+65536 1518349
+65536 1372289
+65536 1247321
+65536 1340352
+65536 1383030
+65536 1394152
+65536 1193744
+65536 1254620
+65536 1427546
+65536 1210541
+65536 1328581
+65536 1304952
+65536 1353851
+65536 1298279
+65536 1289316
+65536 1248413
+65536 1214157
+65536 1322943
+65536 1340997
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..52996fe3c0622024f0ffddfea8395c5cdfbe96ee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1138001.85
+Mediana        = 1133573.5
+Variancia      = 1600020424.34
+Desvio Padrao  = 40000.26
+Coef. Variacao = 0.04
+Min            = 1019388
+Max            = 1194604
+Esq, Dir.      = 1123289.738 , 1152713.962
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..c1c0656a53f6ee81ee0cdd28c40f5b7dc142df15
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 1131372
+65536 1187438
+65536 1125185
+65536 1131559
+65536 1185947
+65536 1092843
+65536 1146927
+65536 1194604
+65536 1105268
+65536 1141793
+65536 1123389
+65536 1185488
+65536 1124998
+65536 1153503
+65536 1128375
+65536 1135588
+65536 1181289
+65536 1019388
+65536 1135728
+65536 1129355
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..3d7d2bec267a2b4f44d4b13d0f06d9b0e0bb831d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18864.75
+Mediana        = 18755
+Variancia      = 1417896.41
+Desvio Padrao  = 1190.75
+Coef. Variacao = 0.06
+Min            = 16720
+Max            = 20653
+Esq, Dir.      = 18426.7899 , 19302.7101
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5806db9eecc6fe7c69a1474cc64717d305b8f5fc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 19937
+8192 20416
+8192 18962
+8192 18872
+8192 17125
+8192 18540
+8192 20378
+8192 18174
+8192 16720
+8192 19410
+8192 18850
+8192 20653
+8192 18399
+8192 17012
+8192 20603
+8192 17763
+8192 18281
+8192 18660
+8192 19896
+8192 18644
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..e0ac9fb36e4b05e67ae48936079ef2b176150661
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 13125.25
+Mediana        = 13189
+Variancia      = 306945.99
+Desvio Padrao  = 554.03
+Coef. Variacao = 0.04
+Min            = 12019
+Max            = 14263
+Esq, Dir.      = 12921.4786 , 13329.0214
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..66a9d6e31d715264ef02b08880f3f095ae031dce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 13201
+8192 12888
+8192 13359
+8192 13475
+8192 12860
+8192 13177
+8192 12472
+8192 12019
+8192 13258
+8192 12764
+8192 14263
+8192 14182
+8192 12346
+8192 12723
+8192 13243
+8192 12879
+8192 13552
+8192 13474
+8192 12906
+8192 13464
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..8eb2b8ccb0512cad461472951921bcfc20e30127
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (20ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (18ms)
+    ✓ LayoutView;n=256 (56ms)
+    ✓ LayoutView;n=512 (88ms)
+    ✓ LayoutView;n=1024 (252ms)
+    ✓ LayoutView;n=2048 (978ms)
+    ✓ LayoutView;n=4096 (3444ms)
+    ✓ LayoutView;n=8192 (14263ms)
+    ✓ LayoutView;n=16384 (59994ms)
+    ✓ LayoutView;n=32768 (250113ms)
+    ✓ LayoutView;n=65536 (1123389ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (343ms)
+    ✓ LayoutSQL;n=2048 (1211ms)
+    ✓ LayoutSQL;n=4096 (4327ms)
+    ✓ LayoutSQL;n=8192 (18850ms)
+    ✓ LayoutSQL;n=16384 (74001ms)
+    ✓ LayoutSQL;n=32768 (325729ms)
+    ✓ LayoutSQL;n=65536 (1210541ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..88ee74c90814ec928f0855b8bc3d56e8dde09927
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (74ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (893ms)
+    ✓ LayoutView;n=4096 (3168ms)
+    ✓ LayoutView;n=8192 (12764ms)
+    ✓ LayoutView;n=16384 (54984ms)
+    ✓ LayoutView;n=32768 (210439ms)
+    ✓ LayoutView;n=65536 (1141793ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (31ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (344ms)
+    ✓ LayoutSQL;n=2048 (1211ms)
+    ✓ LayoutSQL;n=4096 (4762ms)
+    ✓ LayoutSQL;n=8192 (19410ms)
+    ✓ LayoutSQL;n=16384 (89854ms)
+    ✓ LayoutSQL;n=32768 (360118ms)
+    ✓ LayoutSQL;n=65536 (1427546ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..4ecc96834f133158b4222f058827da70c3ed0331
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (97ms)
+    ✓ LayoutView;n=1024 (249ms)
+    ✓ LayoutView;n=2048 (958ms)
+    ✓ LayoutView;n=4096 (3379ms)
+    ✓ LayoutView;n=8192 (13464ms)
+    ✓ LayoutView;n=16384 (59839ms)
+    ✓ LayoutView;n=32768 (246895ms)
+    ✓ LayoutView;n=65536 (1129355ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (338ms)
+    ✓ LayoutSQL;n=2048 (1186ms)
+    ✓ LayoutSQL;n=4096 (4575ms)
+    ✓ LayoutSQL;n=8192 (18644ms)
+    ✓ LayoutSQL;n=16384 (79748ms)
+    ✓ LayoutSQL;n=32768 (309098ms)
+    ✓ LayoutSQL;n=65536 (1340997ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..21ae9e3123a3a9515b4eee53f2b83c0dc5ed563c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (12ms)
+    ✓ LayoutView;n=256 (39ms)
+    ✓ LayoutView;n=512 (70ms)
+    ✓ LayoutView;n=1024 (219ms)
+    ✓ LayoutView;n=2048 (841ms)
+    ✓ LayoutView;n=4096 (2961ms)
+    ✓ LayoutView;n=8192 (12019ms)
+    ✓ LayoutView;n=16384 (52173ms)
+    ✓ LayoutView;n=32768 (203174ms)
+    ✓ LayoutView;n=65536 (1194604ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (333ms)
+    ✓ LayoutSQL;n=2048 (1172ms)
+    ✓ LayoutSQL;n=4096 (4538ms)
+    ✓ LayoutSQL;n=8192 (18174ms)
+    ✓ LayoutSQL;n=16384 (77625ms)
+    ✓ LayoutSQL;n=32768 (325033ms)
+    ✓ LayoutSQL;n=65536 (1193744ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..4dd97d1d1e51e3259fe179684fb0f1a5c4fc0ba4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (90ms)
+    ✓ LayoutView;n=1024 (235ms)
+    ✓ LayoutView;n=2048 (909ms)
+    ✓ LayoutView;n=4096 (3222ms)
+    ✓ LayoutView;n=8192 (12879ms)
+    ✓ LayoutView;n=16384 (56256ms)
+    ✓ LayoutView;n=32768 (236396ms)
+    ✓ LayoutView;n=65536 (1135588ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (328ms)
+    ✓ LayoutSQL;n=2048 (1184ms)
+    ✓ LayoutSQL;n=4096 (4512ms)
+    ✓ LayoutSQL;n=8192 (17763ms)
+    ✓ LayoutSQL;n=16384 (74152ms)
+    ✓ LayoutSQL;n=32768 (314960ms)
+    ✓ LayoutSQL;n=65536 (1289316ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..e26f7c4f2867633d15d53efab274146e232ae1f2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (17ms)
+    ✓ LayoutView;n=256 (53ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (247ms)
+    ✓ LayoutView;n=2048 (950ms)
+    ✓ LayoutView;n=4096 (3434ms)
+    ✓ LayoutView;n=8192 (13475ms)
+    ✓ LayoutView;n=16384 (59377ms)
+    ✓ LayoutView;n=32768 (233516ms)
+    ✓ LayoutView;n=65536 (1131559ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (327ms)
+    ✓ LayoutSQL;n=2048 (1315ms)
+    ✓ LayoutSQL;n=4096 (4646ms)
+    ✓ LayoutSQL;n=8192 (18872ms)
+    ✓ LayoutSQL;n=16384 (83554ms)
+    ✓ LayoutSQL;n=32768 (338682ms)
+    ✓ LayoutSQL;n=65536 (1247321ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..ea54288e35eb75b9e9380bdd17365f4c84bb7c5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (14ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (9ms)
+    ✓ LayoutView;n=128 (23ms)
+    ✓ LayoutView;n=256 (28ms)
+    ✓ LayoutView;n=512 (88ms)
+    ✓ LayoutView;n=1024 (226ms)
+    ✓ LayoutView;n=2048 (873ms)
+    ✓ LayoutView;n=4096 (3143ms)
+    ✓ LayoutView;n=8192 (12472ms)
+    ✓ LayoutView;n=16384 (53364ms)
+    ✓ LayoutView;n=32768 (223340ms)
+    ✓ LayoutView;n=65536 (1146927ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1276ms)
+    ✓ LayoutSQL;n=4096 (5378ms)
+    ✓ LayoutSQL;n=8192 (20378ms)
+    ✓ LayoutSQL;n=16384 (86756ms)
+    ✓ LayoutSQL;n=32768 (344370ms)
+    ✓ LayoutSQL;n=65536 (1394152ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..77d4617d9a5b8e3af2af3ecc4cf73e8d980d1b66
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (90ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (900ms)
+    ✓ LayoutView;n=4096 (3167ms)
+    ✓ LayoutView;n=8192 (12906ms)
+    ✓ LayoutView;n=16384 (55146ms)
+    ✓ LayoutView;n=32768 (232378ms)
+    ✓ LayoutView;n=65536 (1135728ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (37ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (339ms)
+    ✓ LayoutSQL;n=2048 (1222ms)
+    ✓ LayoutSQL;n=4096 (4660ms)
+    ✓ LayoutSQL;n=8192 (19896ms)
+    ✓ LayoutSQL;n=16384 (84967ms)
+    ✓ LayoutSQL;n=32768 (334996ms)
+    ✓ LayoutSQL;n=65536 (1322943ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..7d5ec3ba8e504dc02c1dd8904bcc483d12228e31
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (26ms)
+    ✓ LayoutView;n=512 (94ms)
+    ✓ LayoutView;n=1024 (249ms)
+    ✓ LayoutView;n=2048 (962ms)
+    ✓ LayoutView;n=4096 (3413ms)
+    ✓ LayoutView;n=8192 (14182ms)
+    ✓ LayoutView;n=16384 (60529ms)
+    ✓ LayoutView;n=32768 (243828ms)
+    ✓ LayoutView;n=65536 (1185488ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (30ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (322ms)
+    ✓ LayoutSQL;n=2048 (1151ms)
+    ✓ LayoutSQL;n=4096 (4965ms)
+    ✓ LayoutSQL;n=8192 (20653ms)
+    ✓ LayoutSQL;n=16384 (85630ms)
+    ✓ LayoutSQL;n=32768 (331873ms)
+    ✓ LayoutSQL;n=65536 (1328581ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..6aeccad7e7fe8d7f6e66526019015bb1d53cfb81
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (74ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (911ms)
+    ✓ LayoutView;n=4096 (3235ms)
+    ✓ LayoutView;n=8192 (13474ms)
+    ✓ LayoutView;n=16384 (58539ms)
+    ✓ LayoutView;n=32768 (217360ms)
+    ✓ LayoutView;n=65536 (1019388ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (336ms)
+    ✓ LayoutSQL;n=2048 (1182ms)
+    ✓ LayoutSQL;n=4096 (4512ms)
+    ✓ LayoutSQL;n=8192 (18660ms)
+    ✓ LayoutSQL;n=16384 (80517ms)
+    ✓ LayoutSQL;n=32768 (349788ms)
+    ✓ LayoutSQL;n=65536 (1214157ms)
+
+
+  26 passing (50m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..b7d487a15922c2e838ed2840e6d9dc76497dfddc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (101ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (937ms)
+    ✓ LayoutView;n=4096 (3286ms)
+    ✓ LayoutView;n=8192 (13201ms)
+    ✓ LayoutView;n=16384 (56965ms)
+    ✓ LayoutView;n=32768 (238441ms)
+    ✓ LayoutView;n=65536 (1131372ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (344ms)
+    ✓ LayoutSQL;n=2048 (1269ms)
+    ✓ LayoutSQL;n=4096 (4785ms)
+    ✓ LayoutSQL;n=8192 (19937ms)
+    ✓ LayoutSQL;n=16384 (83176ms)
+    ✓ LayoutSQL;n=32768 (315861ms)
+    ✓ LayoutSQL;n=65536 (1366654ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..1dcd3678cd8f0c401f66bd0861d694a56477cd6d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (939ms)
+    ✓ LayoutView;n=4096 (3343ms)
+    ✓ LayoutView;n=8192 (13359ms)
+    ✓ LayoutView;n=16384 (56038ms)
+    ✓ LayoutView;n=32768 (234380ms)
+    ✓ LayoutView;n=65536 (1125185ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (346ms)
+    ✓ LayoutSQL;n=2048 (1233ms)
+    ✓ LayoutSQL;n=4096 (4798ms)
+    ✓ LayoutSQL;n=8192 (18962ms)
+    ✓ LayoutSQL;n=16384 (81558ms)
+    ✓ LayoutSQL;n=32768 (332914ms)
+    ✓ LayoutSQL;n=65536 (1372289ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..2d228ef3b0b2a6de650c2c50bcad42b261d64524
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (43ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (241ms)
+    ✓ LayoutView;n=2048 (924ms)
+    ✓ LayoutView;n=4096 (3226ms)
+    ✓ LayoutView;n=8192 (12888ms)
+    ✓ LayoutView;n=16384 (58189ms)
+    ✓ LayoutView;n=32768 (249557ms)
+    ✓ LayoutView;n=65536 (1187438ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (26ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (109ms)
+    ✓ LayoutSQL;n=1024 (370ms)
+    ✓ LayoutSQL;n=2048 (1329ms)
+    ✓ LayoutSQL;n=4096 (5230ms)
+    ✓ LayoutSQL;n=8192 (20416ms)
+    ✓ LayoutSQL;n=16384 (86881ms)
+    ✓ LayoutSQL;n=32768 (358428ms)
+    ✓ LayoutSQL;n=65536 (1518349ms)
+
+
+  26 passing (58m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..421ccbfa0417d526ed237e1155d9d6a3d368e497
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (21ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (102ms)
+    ✓ LayoutView;n=1024 (249ms)
+    ✓ LayoutView;n=2048 (990ms)
+    ✓ LayoutView;n=4096 (3367ms)
+    ✓ LayoutView;n=8192 (13552ms)
+    ✓ LayoutView;n=16384 (58941ms)
+    ✓ LayoutView;n=32768 (215952ms)
+    ✓ LayoutView;n=65536 (1181289ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (107ms)
+    ✓ LayoutSQL;n=1024 (352ms)
+    ✓ LayoutSQL;n=2048 (1266ms)
+    ✓ LayoutSQL;n=4096 (4452ms)
+    ✓ LayoutSQL;n=8192 (18281ms)
+    ✓ LayoutSQL;n=16384 (78894ms)
+    ✓ LayoutSQL;n=32768 (320330ms)
+    ✓ LayoutSQL;n=65536 (1248413ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..436bd6fe3caf70e653002ae42b1e32ff43d12149
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (10ms)
+    ✓ LayoutView;n=128 (21ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (244ms)
+    ✓ LayoutView;n=2048 (966ms)
+    ✓ LayoutView;n=4096 (3297ms)
+    ✓ LayoutView;n=8192 (13243ms)
+    ✓ LayoutView;n=16384 (56550ms)
+    ✓ LayoutView;n=32768 (237373ms)
+    ✓ LayoutView;n=65536 (1128375ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (335ms)
+    ✓ LayoutSQL;n=2048 (1213ms)
+    ✓ LayoutSQL;n=4096 (4878ms)
+    ✓ LayoutSQL;n=8192 (20603ms)
+    ✓ LayoutSQL;n=16384 (83490ms)
+    ✓ LayoutSQL;n=32768 (315608ms)
+    ✓ LayoutSQL;n=65536 (1298279ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..9bd8dd327711a26edf6aef1b84b4b0c6d6d8958e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (25ms)
+    ✓ LayoutView;n=512 (95ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (931ms)
+    ✓ LayoutView;n=4096 (3224ms)
+    ✓ LayoutView;n=8192 (12860ms)
+    ✓ LayoutView;n=16384 (53558ms)
+    ✓ LayoutView;n=32768 (215526ms)
+    ✓ LayoutView;n=65536 (1185947ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (328ms)
+    ✓ LayoutSQL;n=2048 (1167ms)
+    ✓ LayoutSQL;n=4096 (4296ms)
+    ✓ LayoutSQL;n=8192 (17125ms)
+    ✓ LayoutSQL;n=16384 (74577ms)
+    ✓ LayoutSQL;n=32768 (321377ms)
+    ✓ LayoutSQL;n=65536 (1340352ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..3e3a38eb7456633bd92eb3d1d4b1fcf466f37b48
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (8ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (239ms)
+    ✓ LayoutView;n=2048 (924ms)
+    ✓ LayoutView;n=4096 (3228ms)
+    ✓ LayoutView;n=8192 (13177ms)
+    ✓ LayoutView;n=16384 (57666ms)
+    ✓ LayoutView;n=32768 (228777ms)
+    ✓ LayoutView;n=65536 (1092843ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1236ms)
+    ✓ LayoutSQL;n=4096 (4770ms)
+    ✓ LayoutSQL;n=8192 (18540ms)
+    ✓ LayoutSQL;n=16384 (78634ms)
+    ✓ LayoutSQL;n=32768 (330866ms)
+    ✓ LayoutSQL;n=65536 (1383030ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..00d69e7a4d919b65d483e748cf3a9c227cdcae85
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (41ms)
+    ✓ LayoutView;n=512 (73ms)
+    ✓ LayoutView;n=1024 (225ms)
+    ✓ LayoutView;n=2048 (872ms)
+    ✓ LayoutView;n=4096 (3064ms)
+    ✓ LayoutView;n=8192 (12346ms)
+    ✓ LayoutView;n=16384 (51318ms)
+    ✓ LayoutView;n=32768 (206611ms)
+    ✓ LayoutView;n=65536 (1124998ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (101ms)
+    ✓ LayoutSQL;n=1024 (340ms)
+    ✓ LayoutSQL;n=2048 (1198ms)
+    ✓ LayoutSQL;n=4096 (4761ms)
+    ✓ LayoutSQL;n=8192 (18399ms)
+    ✓ LayoutSQL;n=16384 (71626ms)
+    ✓ LayoutSQL;n=32768 (311508ms)
+    ✓ LayoutSQL;n=65536 (1304952ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..8788c8ff4057b7a3f863307ab97ab819ae267aa2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (245ms)
+    ✓ LayoutView;n=2048 (953ms)
+    ✓ LayoutView;n=4096 (3303ms)
+    ✓ LayoutView;n=8192 (13258ms)
+    ✓ LayoutView;n=16384 (57823ms)
+    ✓ LayoutView;n=32768 (234244ms)
+    ✓ LayoutView;n=65536 (1105268ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (103ms)
+    ✓ LayoutSQL;n=1024 (333ms)
+    ✓ LayoutSQL;n=2048 (1248ms)
+    ✓ LayoutSQL;n=4096 (4523ms)
+    ✓ LayoutSQL;n=8192 (16720ms)
+    ✓ LayoutSQL;n=16384 (77458ms)
+    ✓ LayoutSQL;n=32768 (293889ms)
+    ✓ LayoutSQL;n=65536 (1254620ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-07/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..45cceacb2087c9ca4ed1abe58f79db591564c263
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (43ms)
+    ✓ LayoutView;n=512 (76ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (914ms)
+    ✓ LayoutView;n=4096 (3204ms)
+    ✓ LayoutView;n=8192 (12723ms)
+    ✓ LayoutView;n=16384 (57054ms)
+    ✓ LayoutView;n=32768 (237470ms)
+    ✓ LayoutView;n=65536 (1153503ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (92ms)
+    ✓ LayoutSQL;n=1024 (311ms)
+    ✓ LayoutSQL;n=2048 (1131ms)
+    ✓ LayoutSQL;n=4096 (4326ms)
+    ✓ LayoutSQL;n=8192 (17012ms)
+    ✓ LayoutSQL;n=16384 (74380ms)
+    ✓ LayoutSQL;n=32768 (299734ms)
+    ✓ LayoutSQL;n=65536 (1353851ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ea713bf4e19b2bad5c6e84147b6ae7b0e35dbd16
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 249.75
+Mediana        = 250
+Variancia      = 423.25
+Desvio Padrao  = 20.57
+Coef. Variacao = 0.08
+Min            = 215
+Max            = 284
+Esq, Dir.      = 242.1832 , 257.3168
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..eee3315207220f562c2c5959b16845a5c1279903
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 249
+1024 232
+1024 252
+1024 230
+1024 265
+1024 274
+1024 240
+1024 284
+1024 268
+1024 237
+1024 267
+1024 215
+1024 273
+1024 273
+1024 257
+1024 216
+1024 219
+1024 246
+1024 251
+1024 247
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..61db782df2bfa4350522f638b9c18623c44dfad6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 639.15
+Mediana        = 662.5
+Variancia      = 21613.4
+Desvio Padrao  = 147.01
+Coef. Variacao = 0.23
+Min            = 109
+Max            = 898
+Esq, Dir.      = 585.0778 , 693.2222
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..9652091de98bb45024096794bac65009a957516e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 686
+1024 645
+1024 692
+1024 109
+1024 665
+1024 717
+1024 688
+1024 508
+1024 693
+1024 600
+1024 593
+1024 660
+1024 684
+1024 624
+1024 737
+1024 731
+1024 607
+1024 588
+1024 898
+1024 658
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..e32918b915470b44b77f7acb3d9365cec419754d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 20.2
+Mediana        = 18.5
+Variancia      = 13.96
+Desvio Padrao  = 3.74
+Coef. Variacao = 0.18
+Min            = 16
+Max            = 29
+Esq, Dir.      = 18.8259 , 21.5741
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3c1037c384fcf7e7c40d0d4ac76a2fa36ef88106
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 18
+128 19
+128 23
+128 27
+128 17
+128 18
+128 23
+128 19
+128 23
+128 17
+128 25
+128 17
+128 29
+128 18
+128 16
+128 17
+128 18
+128 23
+128 18
+128 19
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..f4bc15a8ff53d860ef7b5b8146eb766eea19f42a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 34.7
+Mediana        = 35
+Variancia      = 37.27
+Desvio Padrao  = 6.11
+Coef. Variacao = 0.18
+Min            = 13
+Max            = 43
+Esq, Dir.      = 32.4545 , 36.9455
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..89cca5dc71e2eb1d418d4554c85613775cc61314
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 41
+128 37
+128 41
+128 13
+128 35
+128 43
+128 36
+128 35
+128 33
+128 35
+128 36
+128 40
+128 29
+128 32
+128 35
+128 33
+128 36
+128 35
+128 33
+128 36
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2291d7af80e61acb7d37d5bfaa19db97dcfbd30b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.25
+Mediana        = 10
+Variancia      = 4.41
+Desvio Padrao  = 2.1
+Coef. Variacao = 0.2
+Min            = 8
+Max            = 17
+Esq, Dir.      = 9.4778 , 11.0222
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d03f61743b803559c198020eb6b2427ac952fefb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 10
+16 10
+16 10
+16 15
+16 17
+16 10
+16 10
+16 9
+16 10
+16 9
+16 10
+16 9
+16 8
+16 10
+16 9
+16 9
+16 10
+16 10
+16 9
+16 11
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..d6442828027b630f7d9335322e71510a6f625b7d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 27.9
+Mediana        = 28
+Variancia      = 9.57
+Desvio Padrao  = 3.09
+Coef. Variacao = 0.11
+Min            = 18
+Max            = 32
+Esq, Dir.      = 26.7623 , 29.0377
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8c911d720900f843b1f2df868c83f76ba7c2be15
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 27
+16 29
+16 31
+16 18
+16 32
+16 32
+16 27
+16 25
+16 26
+16 26
+16 31
+16 27
+16 27
+16 28
+16 28
+16 28
+16 29
+16 30
+16 30
+16 27
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5ea67cd6af7b79d8fac3dd0c17d249852c59d6bc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7001.6
+Mediana        = 6925.5
+Variancia      = 60311.73
+Desvio Padrao  = 245.58
+Coef. Variacao = 0.04
+Min            = 6603
+Max            = 7703
+Esq, Dir.      = 6911.2739 , 7091.9261
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2c94412acdd703947e01369cdfa3bc2c80c0350d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 6813
+16384 6900
+16384 7206
+16384 6830
+16384 7031
+16384 6920
+16384 7023
+16384 6983
+16384 7234
+16384 6925
+16384 7348
+16384 6762
+16384 6926
+16384 7703
+16384 7219
+16384 6759
+16384 6603
+16384 6898
+16384 6910
+16384 7039
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..20a141735c340c6479664c165775c1291c86c288
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6764.25
+Mediana        = 6548.5
+Variancia      = 649120.83
+Desvio Padrao  = 805.68
+Coef. Variacao = 0.12
+Min            = 6307
+Max            = 10039
+Esq, Dir.      = 6467.9204 , 7060.5796
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..6ba18220d3a7040a49f157ff76f082fc445b7669
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 6708
+16384 6545
+16384 6309
+16384 10039
+16384 6434
+16384 6307
+16384 6741
+16384 7165
+16384 6481
+16384 6373
+16384 6500
+16384 6487
+16384 6411
+16384 6484
+16384 6585
+16384 7183
+16384 6624
+16384 6653
+16384 6704
+16384 6552
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f64b5fdd9dc3a149c67be7e612b646d89d748f44
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 897.85
+Mediana        = 920
+Variancia      = 10016.98
+Desvio Padrao  = 100.08
+Coef. Variacao = 0.11
+Min            = 718
+Max            = 1033
+Esq, Dir.      = 861.0387 , 934.6613
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..413825f375be653b3cb8254f2598164486740561
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1001
+2048 917
+2048 897
+2048 842
+2048 934
+2048 967
+2048 910
+2048 997
+2048 1033
+2048 733
+2048 923
+2048 718
+2048 947
+2048 982
+2048 893
+2048 720
+2048 730
+2048 991
+2048 870
+2048 952
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..3a49a5ac12c6ab81e0393878058c6055b580da8b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 858.4
+Mediana        = 872
+Variancia      = 46534.88
+Desvio Padrao  = 215.72
+Coef. Variacao = 0.25
+Min            = 185
+Max            = 1214
+Esq, Dir.      = 779.0583 , 937.7417
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4de2635d184182903948db25bb679ab9688cbe4a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 953
+2048 758
+2048 742
+2048 185
+2048 1175
+2048 719
+2048 877
+2048 675
+2048 1214
+2048 856
+2048 976
+2048 812
+2048 867
+2048 965
+2048 1072
+2048 919
+2048 716
+2048 904
+2048 800
+2048 983
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a954d053c28aaf5f9f169d3515ca5d9426fbae9b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 30.4
+Mediana        = 30
+Variancia      = 6.99
+Desvio Padrao  = 2.64
+Coef. Variacao = 0.09
+Min            = 27
+Max            = 39
+Esq, Dir.      = 29.4276 , 31.3724
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7c22e027b61f5a6ec56368c0d16b0ececb1e2be0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 31
+256 32
+256 28
+256 39
+256 28
+256 30
+256 30
+256 33
+256 30
+256 27
+256 28
+256 30
+256 29
+256 33
+256 29
+256 30
+256 31
+256 30
+256 28
+256 32
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..be88b198ea085e05628339a76b954eeb848f4660
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 82.05
+Mediana        = 82
+Variancia      = 81.52
+Desvio Padrao  = 9.03
+Coef. Variacao = 0.11
+Min            = 62
+Max            = 97
+Esq, Dir.      = 78.7291 , 85.3709
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..321bae717cf2c89f2d36ecd4bf7dfc26fc04b30b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 83
+256 86
+256 97
+256 63
+256 79
+256 93
+256 93
+256 81
+256 84
+256 77
+256 79
+256 80
+256 62
+256 83
+256 85
+256 94
+256 81
+256 77
+256 76
+256 88
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4ad8a842a536b88ba12995da4748cf86885a254b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.55
+Mediana        = 5
+Variancia      = 0.26
+Desvio Padrao  = 0.51
+Coef. Variacao = 0.11
+Min            = 4
+Max            = 5
+Esq, Dir.      = 4.3623 , 4.7377
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..89be9a41d48a6ee9ca184cf4fec722b70e35dcf2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 5
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..87f446f4e3abd1a405665dadde3b6b46f8996787
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 10.05
+Mediana        = 10
+Variancia      = 4.58
+Desvio Padrao  = 2.14
+Coef. Variacao = 0.21
+Min            = 3
+Max            = 13
+Esq, Dir.      = 9.2632 , 10.8368
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..002ee89da0b9a3d7b6164a4c9ec6bec09602e276
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 9
+32 11
+32 12
+32 3
+32 12
+32 12
+32 11
+32 11
+32 10
+32 13
+32 10
+32 9
+32 9
+32 10
+32 10
+32 10
+32 11
+32 11
+32 10
+32 7
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..48ae1665bb2870e0229ee96d5e2f2b2d6f279cf1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 31807.25
+Mediana        = 31597
+Variancia      = 2316637.04
+Desvio Padrao  = 1522.05
+Coef. Variacao = 0.05
+Min            = 28655
+Max            = 36285
+Esq, Dir.      = 31247.4392 , 32367.0608
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6619feea22d94734a92260fa89329639daccd7b3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 31052
+32768 30684
+32768 34027
+32768 31181
+32768 32728
+32768 31505
+32768 32270
+32768 32379
+32768 31672
+32768 31010
+32768 31522
+32768 31435
+32768 32079
+32768 36285
+32768 32704
+32768 31742
+32768 28655
+32768 30817
+32768 30219
+32768 32179
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..36fd6bd861a8c33e49fa4b33dfa4059eae23df21
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 26703.65
+Mediana        = 26677
+Variancia      = 1936182.13
+Desvio Padrao  = 1391.47
+Coef. Variacao = 0.05
+Min            = 24806
+Max            = 29010
+Esq, Dir.      = 26191.8676 , 27215.4324
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..d85a4bb2b428965679800cd7c8c74f0bac86cf21
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 27535
+32768 25301
+32768 25544
+32768 27535
+32768 28051
+32768 24981
+32768 28771
+32768 28322
+32768 25721
+32768 26371
+32768 25852
+32768 25476
+32768 27094
+32768 24806
+32768 28812
+32768 29010
+32768 25386
+32768 27093
+32768 26983
+32768 25429
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d35a7d1d19111d833d388caa7fc252a6218b8c07
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4412.25
+Mediana        = 4319.5
+Variancia      = 127472.51
+Desvio Padrao  = 357.03
+Coef. Variacao = 0.08
+Min            = 3709
+Max            = 4981
+Esq, Dir.      = 4280.9331 , 4543.5669
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..882d56e5a8f4ad22fcbf3b3852f57a33c48a054e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4798
+4096 4247
+4096 4346
+4096 4130
+4096 4172
+4096 4820
+4096 4324
+4096 4182
+4096 4821
+4096 4187
+4096 4981
+4096 3709
+4096 4555
+4096 4553
+4096 4902
+4096 4010
+4096 4021
+4096 4315
+4096 4289
+4096 4883
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..0c310dbc6f9c24dd3fe3b1693fc58d4892fd647a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 585.9
+Mediana        = 571.5
+Variancia      = 3735.25
+Desvio Padrao  = 61.12
+Coef. Variacao = 0.1
+Min            = 510
+Max            = 734
+Esq, Dir.      = 563.4212 , 608.3788
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5fe16fa7717761c874a82ea60205a6c2f7da9f50
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 556
+4096 550
+4096 510
+4096 522
+4096 605
+4096 533
+4096 589
+4096 590
+4096 605
+4096 625
+4096 578
+4096 618
+4096 537
+4096 557
+4096 565
+4096 732
+4096 538
+4096 734
+4096 545
+4096 629
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..919f6df0d9570436c05cb73734e08fc34f2e2943
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 73.05
+Mediana        = 74
+Variancia      = 114.58
+Desvio Padrao  = 10.7
+Coef. Variacao = 0.15
+Min            = 58
+Max            = 87
+Esq, Dir.      = 69.1131 , 76.9869
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ac6c0818a355e097f1dc0509d62ef9a60835d306
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 85
+512 82
+512 63
+512 77
+512 83
+512 73
+512 61
+512 87
+512 63
+512 84
+512 60
+512 78
+512 58
+512 74
+512 58
+512 74
+512 65
+512 86
+512 63
+512 87
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b211dc757ba5b480284a5c6e45982ee5081a1190
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 189.1
+Mediana        = 189.5
+Variancia      = 1586.31
+Desvio Padrao  = 39.83
+Coef. Variacao = 0.21
+Min            = 30
+Max            = 221
+Esq, Dir.      = 174.4511 , 203.7489
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ebffea88884c5a74742d0d5d986a5c8fd7929f1e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 197
+512 200
+512 199
+512 30
+512 187
+512 195
+512 217
+512 184
+512 221
+512 187
+512 189
+512 188
+512 220
+512 189
+512 216
+512 219
+512 188
+512 187
+512 179
+512 190
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..259ff600702f71462895ec8775a979680e572e37
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.95
+Mediana        = 10
+Variancia      = 0.58
+Desvio Padrao  = 0.76
+Coef. Variacao = 0.08
+Min            = 9
+Max            = 11
+Esq, Dir.      = 9.6708 , 10.2292
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a94b4c4c9e2e83348a309be69d31e21e7d9516f6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 10
+64 10
+64 11
+64 10
+64 10
+64 10
+64 11
+64 10
+64 11
+64 9
+64 10
+64 9
+64 9
+64 9
+64 9
+64 9
+64 11
+64 11
+64 10
+64 10
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..9216a35603ec06fadcce451c8386aa8e9ee5e2e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 54
+Mediana        = 61
+Variancia      = 299.58
+Desvio Padrao  = 17.31
+Coef. Variacao = 0.32
+Min            = 7
+Max            = 67
+Esq, Dir.      = 47.634 , 60.366
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8259336aa6409cb19ffe0628ddccabfb7e1609f5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 61
+64 61
+64 22
+64 7
+64 63
+64 63
+64 54
+64 50
+64 17
+64 61
+64 62
+64 63
+64 55
+64 59
+64 62
+64 63
+64 60
+64 67
+64 64
+64 66
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..61c457cc61b45432c23b4440e39a80ccdacad6f0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 127040.35
+Mediana        = 126942
+Variancia      = 50193552.77
+Desvio Padrao  = 7084.74
+Coef. Variacao = 0.06
+Min            = 110548
+Max            = 138572
+Esq, Dir.      = 124434.5791 , 129646.1209
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..cecf6ac41b65b103dfa9b5c65258d750e86cb01b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 132402
+65536 137806
+65536 127007
+65536 121236
+65536 123256
+65536 129626
+65536 134050
+65536 138572
+65536 126698
+65536 129157
+65536 126877
+65536 110548
+65536 124314
+65536 133631
+65536 112732
+65536 125829
+65536 125384
+65536 122370
+65536 130038
+65536 129274
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..fdb8fd0f4e076eba7201ec5243e30978bc252d97
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 119177.7
+Mediana        = 118700
+Variancia      = 63984309.38
+Desvio Padrao  = 7999.02
+Coef. Variacao = 0.07
+Min            = 102554
+Max            = 131889
+Esq, Dir.      = 116235.6571 , 122119.7429
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..635079bef49ec3c42a936a82d23d9ace9fe8131a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 131889
+65536 117347
+65536 122639
+65536 123503
+65536 125098
+65536 119720
+65536 117534
+65536 131800
+65536 116485
+65536 113106
+65536 116391
+65536 102554
+65536 102598
+65536 117419
+65536 117680
+65536 130853
+65536 111777
+65536 123169
+65536 121561
+65536 120431
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..16ff4568fc2337c8924d582f565a3b52dfc9b992
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2093.65
+Mediana        = 2104
+Variancia      = 4122.34
+Desvio Padrao  = 64.21
+Coef. Variacao = 0.03
+Min            = 1962
+Max            = 2218
+Esq, Dir.      = 2070.0352 , 2117.2648
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..fd0f601cb67e65f517632322a99226272f8b6c26
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 2036
+8192 2017
+8192 2169
+8192 2051
+8192 2134
+8192 2052
+8192 2069
+8192 2124
+8192 2108
+8192 2078
+8192 2127
+8192 2030
+8192 2111
+8192 2202
+8192 2218
+8192 2031
+8192 1962
+8192 2100
+8192 2120
+8192 2134
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1f85b9e5bff86f522afa016478aae4dc9a49c467
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1933.7
+Mediana        = 1911
+Variancia      = 10258.43
+Desvio Padrao  = 101.28
+Coef. Variacao = 0.05
+Min            = 1786
+Max            = 2096
+Esq, Dir.      = 1896.4477 , 1970.9523
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..cc8430cc490f103e2f7abc9d9ee678973d67587a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 2083
+8192 1881
+8192 1787
+8192 1786
+8192 1845
+8192 1826
+8192 2090
+8192 2096
+8192 1934
+8192 1852
+8192 1887
+8192 1896
+8192 1953
+8192 1870
+8192 1944
+8192 2094
+8192 1984
+8192 1915
+8192 1907
+8192 2044
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..abf844aa7e787e3dc905482bc4b6acf10efef7b2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (62ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (79ms)
+    ✓ LayoutView;n=512 (189ms)
+    ✓ LayoutView;n=1024 (593ms)
+    ✓ LayoutView;n=2048 (976ms)
+    ✓ LayoutView;n=4096 (578ms)
+    ✓ LayoutView;n=8192 (1887ms)
+    ✓ LayoutView;n=16384 (6500ms)
+    ✓ LayoutView;n=32768 (25852ms)
+    ✓ LayoutView;n=65536 (116391ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (267ms)
+    ✓ LayoutSQL;n=2048 (923ms)
+    ✓ LayoutSQL;n=4096 (4981ms)
+    ✓ LayoutSQL;n=8192 (2127ms)
+    ✓ LayoutSQL;n=16384 (7348ms)
+    ✓ LayoutSQL;n=32768 (31522ms)
+    ✓ LayoutSQL;n=65536 (126877ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..cf5c009479e1b928a960e848ac5c0e95c75221e0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (13ms)
+    ✓ LayoutView;n=64 (61ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (77ms)
+    ✓ LayoutView;n=512 (187ms)
+    ✓ LayoutView;n=1024 (600ms)
+    ✓ LayoutView;n=2048 (856ms)
+    ✓ LayoutView;n=4096 (625ms)
+    ✓ LayoutView;n=8192 (1852ms)
+    ✓ LayoutView;n=16384 (6373ms)
+    ✓ LayoutView;n=32768 (26371ms)
+    ✓ LayoutView;n=65536 (113106ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (84ms)
+    ✓ LayoutSQL;n=1024 (237ms)
+    ✓ LayoutSQL;n=2048 (733ms)
+    ✓ LayoutSQL;n=4096 (4187ms)
+    ✓ LayoutSQL;n=8192 (2078ms)
+    ✓ LayoutSQL;n=16384 (6925ms)
+    ✓ LayoutSQL;n=32768 (31010ms)
+    ✓ LayoutSQL;n=65536 (129157ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..e0e52fd193a651dfcbcbd2d5840a8be5289da0ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (7ms)
+    ✓ LayoutView;n=64 (66ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (88ms)
+    ✓ LayoutView;n=512 (190ms)
+    ✓ LayoutView;n=1024 (658ms)
+    ✓ LayoutView;n=2048 (983ms)
+    ✓ LayoutView;n=4096 (629ms)
+    ✓ LayoutView;n=8192 (2044ms)
+    ✓ LayoutView;n=16384 (6552ms)
+    ✓ LayoutView;n=32768 (25429ms)
+    ✓ LayoutView;n=65536 (120431ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (87ms)
+    ✓ LayoutSQL;n=1024 (247ms)
+    ✓ LayoutSQL;n=2048 (952ms)
+    ✓ LayoutSQL;n=4096 (4883ms)
+    ✓ LayoutSQL;n=8192 (2134ms)
+    ✓ LayoutSQL;n=16384 (7039ms)
+    ✓ LayoutSQL;n=32768 (32179ms)
+    ✓ LayoutSQL;n=65536 (129274ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ac56cf45cd7209f7f5a68d054efe259ba5d5e3dc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (25ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (50ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (81ms)
+    ✓ LayoutView;n=512 (184ms)
+    ✓ LayoutView;n=1024 (508ms)
+    ✓ LayoutView;n=2048 (675ms)
+    ✓ LayoutView;n=4096 (590ms)
+    ✓ LayoutView;n=8192 (2096ms)
+    ✓ LayoutView;n=16384 (7165ms)
+    ✓ LayoutView;n=32768 (28322ms)
+    ✓ LayoutView;n=65536 (131800ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (87ms)
+    ✓ LayoutSQL;n=1024 (284ms)
+    ✓ LayoutSQL;n=2048 (997ms)
+    ✓ LayoutSQL;n=4096 (4182ms)
+    ✓ LayoutSQL;n=8192 (2124ms)
+    ✓ LayoutSQL;n=16384 (6983ms)
+    ✓ LayoutSQL;n=32768 (32379ms)
+    ✓ LayoutSQL;n=65536 (138572ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..3b88ab06dbd39cfcc8af9cea014462e83daf3cdd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (94ms)
+    ✓ LayoutView;n=512 (219ms)
+    ✓ LayoutView;n=1024 (731ms)
+    ✓ LayoutView;n=2048 (919ms)
+    ✓ LayoutView;n=4096 (732ms)
+    ✓ LayoutView;n=8192 (2094ms)
+    ✓ LayoutView;n=16384 (7183ms)
+    ✓ LayoutView;n=32768 (29010ms)
+    ✓ LayoutView;n=65536 (130853ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (216ms)
+    ✓ LayoutSQL;n=2048 (720ms)
+    ✓ LayoutSQL;n=4096 (4010ms)
+    ✓ LayoutSQL;n=8192 (2031ms)
+    ✓ LayoutSQL;n=16384 (6759ms)
+    ✓ LayoutSQL;n=32768 (31742ms)
+    ✓ LayoutSQL;n=65536 (125829ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..6fdf172c17a638e2a2b1be117bdf7dc62a96e8b9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (18ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (63ms)
+    ✓ LayoutView;n=512 (30ms)
+    ✓ LayoutView;n=1024 (109ms)
+    ✓ LayoutView;n=2048 (185ms)
+    ✓ LayoutView;n=4096 (522ms)
+    ✓ LayoutView;n=8192 (1786ms)
+    ✓ LayoutView;n=16384 (10039ms)
+    ✓ LayoutView;n=32768 (27535ms)
+    ✓ LayoutView;n=65536 (123503ms)
+    ✓ LayoutSQL;n=16 (15ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (27ms)
+    ✓ LayoutSQL;n=256 (39ms)
+    ✓ LayoutSQL;n=512 (77ms)
+    ✓ LayoutSQL;n=1024 (230ms)
+    ✓ LayoutSQL;n=2048 (842ms)
+    ✓ LayoutSQL;n=4096 (4130ms)
+    ✓ LayoutSQL;n=8192 (2051ms)
+    ✓ LayoutSQL;n=16384 (6830ms)
+    ✓ LayoutSQL;n=32768 (31181ms)
+    ✓ LayoutSQL;n=65536 (121236ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..cf2456f491d7d9517a2e6a895e7b622d11729e70
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (54ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (217ms)
+    ✓ LayoutView;n=1024 (688ms)
+    ✓ LayoutView;n=2048 (877ms)
+    ✓ LayoutView;n=4096 (589ms)
+    ✓ LayoutView;n=8192 (2090ms)
+    ✓ LayoutView;n=16384 (6741ms)
+    ✓ LayoutView;n=32768 (28771ms)
+    ✓ LayoutView;n=65536 (117534ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (61ms)
+    ✓ LayoutSQL;n=1024 (240ms)
+    ✓ LayoutSQL;n=2048 (910ms)
+    ✓ LayoutSQL;n=4096 (4324ms)
+    ✓ LayoutSQL;n=8192 (2069ms)
+    ✓ LayoutSQL;n=16384 (7023ms)
+    ✓ LayoutSQL;n=32768 (32270ms)
+    ✓ LayoutSQL;n=65536 (134050ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..d809ee1fd4f17f75e4f5fa6ebe309ea480f1cd97
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (64ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (76ms)
+    ✓ LayoutView;n=512 (179ms)
+    ✓ LayoutView;n=1024 (898ms)
+    ✓ LayoutView;n=2048 (800ms)
+    ✓ LayoutView;n=4096 (545ms)
+    ✓ LayoutView;n=8192 (1907ms)
+    ✓ LayoutView;n=16384 (6704ms)
+    ✓ LayoutView;n=32768 (26983ms)
+    ✓ LayoutView;n=65536 (121561ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (63ms)
+    ✓ LayoutSQL;n=1024 (251ms)
+    ✓ LayoutSQL;n=2048 (870ms)
+    ✓ LayoutSQL;n=4096 (4289ms)
+    ✓ LayoutSQL;n=8192 (2120ms)
+    ✓ LayoutSQL;n=16384 (6910ms)
+    ✓ LayoutSQL;n=32768 (30219ms)
+    ✓ LayoutSQL;n=65536 (130038ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..2b049494955a7675e5d8894ae420a3ab4b2d8207
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (80ms)
+    ✓ LayoutView;n=512 (188ms)
+    ✓ LayoutView;n=1024 (660ms)
+    ✓ LayoutView;n=2048 (812ms)
+    ✓ LayoutView;n=4096 (618ms)
+    ✓ LayoutView;n=8192 (1896ms)
+    ✓ LayoutView;n=16384 (6487ms)
+    ✓ LayoutView;n=32768 (25476ms)
+    ✓ LayoutView;n=65536 (102554ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (78ms)
+    ✓ LayoutSQL;n=1024 (215ms)
+    ✓ LayoutSQL;n=2048 (718ms)
+    ✓ LayoutSQL;n=4096 (3709ms)
+    ✓ LayoutSQL;n=8192 (2030ms)
+    ✓ LayoutSQL;n=16384 (6762ms)
+    ✓ LayoutSQL;n=32768 (31435ms)
+    ✓ LayoutSQL;n=65536 (110548ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..8a81adf40314e55a740c9384758118b4d725cb0f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (67ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (77ms)
+    ✓ LayoutView;n=512 (187ms)
+    ✓ LayoutView;n=1024 (588ms)
+    ✓ LayoutView;n=2048 (904ms)
+    ✓ LayoutView;n=4096 (734ms)
+    ✓ LayoutView;n=8192 (1915ms)
+    ✓ LayoutView;n=16384 (6653ms)
+    ✓ LayoutView;n=32768 (27093ms)
+    ✓ LayoutView;n=65536 (123169ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (86ms)
+    ✓ LayoutSQL;n=1024 (246ms)
+    ✓ LayoutSQL;n=2048 (991ms)
+    ✓ LayoutSQL;n=4096 (4315ms)
+    ✓ LayoutSQL;n=8192 (2100ms)
+    ✓ LayoutSQL;n=16384 (6898ms)
+    ✓ LayoutSQL;n=32768 (30817ms)
+    ✓ LayoutSQL;n=65536 (122370ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..0b5390bcf4818777d19d3a60385167fdb6ae5b5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (61ms)
+    ✓ LayoutView;n=128 (41ms)
+    ✓ LayoutView;n=256 (83ms)
+    ✓ LayoutView;n=512 (197ms)
+    ✓ LayoutView;n=1024 (686ms)
+    ✓ LayoutView;n=2048 (953ms)
+    ✓ LayoutView;n=4096 (556ms)
+    ✓ LayoutView;n=8192 (2083ms)
+    ✓ LayoutView;n=16384 (6708ms)
+    ✓ LayoutView;n=32768 (27535ms)
+    ✓ LayoutView;n=65536 (131889ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (85ms)
+    ✓ LayoutSQL;n=1024 (249ms)
+    ✓ LayoutSQL;n=2048 (1001ms)
+    ✓ LayoutSQL;n=4096 (4798ms)
+    ✓ LayoutSQL;n=8192 (2036ms)
+    ✓ LayoutSQL;n=16384 (6813ms)
+    ✓ LayoutSQL;n=32768 (31052ms)
+    ✓ LayoutSQL;n=65536 (132402ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..148872177d6fbcabffcc75b4792151e513169fd2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (22ms)
+    ✓ LayoutView;n=128 (41ms)
+    ✓ LayoutView;n=256 (97ms)
+    ✓ LayoutView;n=512 (199ms)
+    ✓ LayoutView;n=1024 (692ms)
+    ✓ LayoutView;n=2048 (742ms)
+    ✓ LayoutView;n=4096 (510ms)
+    ✓ LayoutView;n=8192 (1787ms)
+    ✓ LayoutView;n=16384 (6309ms)
+    ✓ LayoutView;n=32768 (25544ms)
+    ✓ LayoutView;n=65536 (122639ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (63ms)
+    ✓ LayoutSQL;n=1024 (252ms)
+    ✓ LayoutSQL;n=2048 (897ms)
+    ✓ LayoutSQL;n=4096 (4346ms)
+    ✓ LayoutSQL;n=8192 (2169ms)
+    ✓ LayoutSQL;n=16384 (7206ms)
+    ✓ LayoutSQL;n=32768 (34027ms)
+    ✓ LayoutSQL;n=65536 (127007ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..c832b1908c17814c265315aed4575c79d311d9c7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (61ms)
+    ✓ LayoutView;n=128 (37ms)
+    ✓ LayoutView;n=256 (86ms)
+    ✓ LayoutView;n=512 (200ms)
+    ✓ LayoutView;n=1024 (645ms)
+    ✓ LayoutView;n=2048 (758ms)
+    ✓ LayoutView;n=4096 (550ms)
+    ✓ LayoutView;n=8192 (1881ms)
+    ✓ LayoutView;n=16384 (6545ms)
+    ✓ LayoutView;n=32768 (25301ms)
+    ✓ LayoutView;n=65536 (117347ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (82ms)
+    ✓ LayoutSQL;n=1024 (232ms)
+    ✓ LayoutSQL;n=2048 (917ms)
+    ✓ LayoutSQL;n=4096 (4247ms)
+    ✓ LayoutSQL;n=8192 (2017ms)
+    ✓ LayoutSQL;n=16384 (6900ms)
+    ✓ LayoutSQL;n=32768 (30684ms)
+    ✓ LayoutSQL;n=65536 (137806ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..fac288c4c3108a0cbee00ca2413837681cd5f9a6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (36ms)
+    ✓ LayoutView;n=256 (81ms)
+    ✓ LayoutView;n=512 (188ms)
+    ✓ LayoutView;n=1024 (607ms)
+    ✓ LayoutView;n=2048 (716ms)
+    ✓ LayoutView;n=4096 (538ms)
+    ✓ LayoutView;n=8192 (1984ms)
+    ✓ LayoutView;n=16384 (6624ms)
+    ✓ LayoutView;n=32768 (25386ms)
+    ✓ LayoutView;n=65536 (111777ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (65ms)
+    ✓ LayoutSQL;n=1024 (219ms)
+    ✓ LayoutSQL;n=2048 (730ms)
+    ✓ LayoutSQL;n=4096 (4021ms)
+    ✓ LayoutSQL;n=8192 (1962ms)
+    ✓ LayoutSQL;n=16384 (6603ms)
+    ✓ LayoutSQL;n=32768 (28655ms)
+    ✓ LayoutSQL;n=65536 (125384ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..db94845ecd88e7c4a5cf2b84941321a1794eeb77
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (62ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (85ms)
+    ✓ LayoutView;n=512 (216ms)
+    ✓ LayoutView;n=1024 (737ms)
+    ✓ LayoutView;n=2048 (1072ms)
+    ✓ LayoutView;n=4096 (565ms)
+    ✓ LayoutView;n=8192 (1944ms)
+    ✓ LayoutView;n=16384 (6585ms)
+    ✓ LayoutView;n=32768 (28812ms)
+    ✓ LayoutView;n=65536 (117680ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (58ms)
+    ✓ LayoutSQL;n=1024 (257ms)
+    ✓ LayoutSQL;n=2048 (893ms)
+    ✓ LayoutSQL;n=4096 (4902ms)
+    ✓ LayoutSQL;n=8192 (2218ms)
+    ✓ LayoutSQL;n=16384 (7219ms)
+    ✓ LayoutSQL;n=32768 (32704ms)
+    ✓ LayoutSQL;n=65536 (112732ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..aaa803b0e339bac33beefebd5d1b14e3e500a5ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (79ms)
+    ✓ LayoutView;n=512 (187ms)
+    ✓ LayoutView;n=1024 (665ms)
+    ✓ LayoutView;n=2048 (1175ms)
+    ✓ LayoutView;n=4096 (605ms)
+    ✓ LayoutView;n=8192 (1845ms)
+    ✓ LayoutView;n=16384 (6434ms)
+    ✓ LayoutView;n=32768 (28051ms)
+    ✓ LayoutView;n=65536 (125098ms)
+    ✓ LayoutSQL;n=16 (17ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (83ms)
+    ✓ LayoutSQL;n=1024 (265ms)
+    ✓ LayoutSQL;n=2048 (934ms)
+    ✓ LayoutSQL;n=4096 (4172ms)
+    ✓ LayoutSQL;n=8192 (2134ms)
+    ✓ LayoutSQL;n=16384 (7031ms)
+    ✓ LayoutSQL;n=32768 (32728ms)
+    ✓ LayoutSQL;n=65536 (123256ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..4ccf7f7e2201018432e330e61e6681908ef71143
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (43ms)
+    ✓ LayoutView;n=256 (93ms)
+    ✓ LayoutView;n=512 (195ms)
+    ✓ LayoutView;n=1024 (717ms)
+    ✓ LayoutView;n=2048 (719ms)
+    ✓ LayoutView;n=4096 (533ms)
+    ✓ LayoutView;n=8192 (1826ms)
+    ✓ LayoutView;n=16384 (6307ms)
+    ✓ LayoutView;n=32768 (24981ms)
+    ✓ LayoutView;n=65536 (119720ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (73ms)
+    ✓ LayoutSQL;n=1024 (274ms)
+    ✓ LayoutSQL;n=2048 (967ms)
+    ✓ LayoutSQL;n=4096 (4820ms)
+    ✓ LayoutSQL;n=8192 (2052ms)
+    ✓ LayoutSQL;n=16384 (6920ms)
+    ✓ LayoutSQL;n=32768 (31505ms)
+    ✓ LayoutSQL;n=65536 (129626ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..ece3859c6d6577b3922a2cbf79fc6b6c6ace6f17
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (27ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (55ms)
+    ✓ LayoutView;n=128 (29ms)
+    ✓ LayoutView;n=256 (62ms)
+    ✓ LayoutView;n=512 (220ms)
+    ✓ LayoutView;n=1024 (684ms)
+    ✓ LayoutView;n=2048 (867ms)
+    ✓ LayoutView;n=4096 (537ms)
+    ✓ LayoutView;n=8192 (1953ms)
+    ✓ LayoutView;n=16384 (6411ms)
+    ✓ LayoutView;n=32768 (27094ms)
+    ✓ LayoutView;n=65536 (102598ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (29ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (58ms)
+    ✓ LayoutSQL;n=1024 (273ms)
+    ✓ LayoutSQL;n=2048 (947ms)
+    ✓ LayoutSQL;n=4096 (4555ms)
+    ✓ LayoutSQL;n=8192 (2111ms)
+    ✓ LayoutSQL;n=16384 (6926ms)
+    ✓ LayoutSQL;n=32768 (32079ms)
+    ✓ LayoutSQL;n=65536 (124314ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..039fabe50515865da458535ea3848f1c145fe30b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (33ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (221ms)
+    ✓ LayoutView;n=1024 (693ms)
+    ✓ LayoutView;n=2048 (1214ms)
+    ✓ LayoutView;n=4096 (605ms)
+    ✓ LayoutView;n=8192 (1934ms)
+    ✓ LayoutView;n=16384 (6481ms)
+    ✓ LayoutView;n=32768 (25721ms)
+    ✓ LayoutView;n=65536 (116485ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (63ms)
+    ✓ LayoutSQL;n=1024 (268ms)
+    ✓ LayoutSQL;n=2048 (1033ms)
+    ✓ LayoutSQL;n=4096 (4821ms)
+    ✓ LayoutSQL;n=8192 (2108ms)
+    ✓ LayoutSQL;n=16384 (7234ms)
+    ✓ LayoutSQL;n=32768 (31672ms)
+    ✓ LayoutSQL;n=65536 (126698ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-07/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..c0b92f0c322cb3a110840072151521601f5d463c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (59ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (83ms)
+    ✓ LayoutView;n=512 (189ms)
+    ✓ LayoutView;n=1024 (624ms)
+    ✓ LayoutView;n=2048 (965ms)
+    ✓ LayoutView;n=4096 (557ms)
+    ✓ LayoutView;n=8192 (1870ms)
+    ✓ LayoutView;n=16384 (6484ms)
+    ✓ LayoutView;n=32768 (24806ms)
+    ✓ LayoutView;n=65536 (117419ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (273ms)
+    ✓ LayoutSQL;n=2048 (982ms)
+    ✓ LayoutSQL;n=4096 (4553ms)
+    ✓ LayoutSQL;n=8192 (2202ms)
+    ✓ LayoutSQL;n=16384 (7703ms)
+    ✓ LayoutSQL;n=32768 (36285ms)
+    ✓ LayoutSQL;n=65536 (133631ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..a2792a7e4ceb3465597b6f981b5cd597f0882a28
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  101217 ms: Mark-sweep 1322.4 (1436.7) -> 1322.4 (1436.7) MB, 5806.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  107143 ms: Mark-sweep 1322.4 (1436.7) -> 1322.3 (1436.7) MB, 5925.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  113252 ms: Mark-sweep 1322.3 (1436.7) -> 1326.5 (1413.7) MB, 6108.8 / 0.0 ms [last resort gc].
+  118793 ms: Mark-sweep 1326.5 (1413.7) -> 1330.7 (1413.7) MB, 5541.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x207801bcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3bb4e4baf407] (this=0x2aa6870cd479 <a Graph with map 0x2164bc084211>,idV=0x1e8c3230f719 <String[9]: dim:13142>,idU=0x1e8c3237d721 <String[9]: dim:13143>,value=0x3ded25fe3f41 <a View with map 0x2164bc086e69>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3bb4e4b96a35] (this=0x2aa6870cd479 <a Graph with map 0x2164bc084...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3bb4e42079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..e0ed41bb1bfa9d6f1b6db7d558438769e096f2b9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94317 ms: Mark-sweep 1322.4 (1437.7) -> 1322.4 (1437.7) MB, 4330.7 / 0.0 ms [allocation failure] [GC in old space requested].
+   98709 ms: Mark-sweep 1322.4 (1437.7) -> 1322.3 (1437.7) MB, 4391.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  105293 ms: Mark-sweep 1322.3 (1437.7) -> 1327.0 (1414.7) MB, 6583.7 / 0.0 ms [last resort gc].
+  110481 ms: Mark-sweep 1327.0 (1414.7) -> 1331.7 (1414.7) MB, 5188.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x11cf74cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2d8397eb6058] (this=0x3f67f6fdba01 <a Graph with map 0x1971d883ea1>,idV=0x27864f15d1f1 <String[9]: dim:13124>,idU=0x27864f196731 <String[9]: dim:13127>,value=0x301c727f1e99 <a View with map 0x1971d886af9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2d8397e99e75] (this=0x3f67f6fdba01 <a Graph with map 0x1971d883ea1>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2d83975079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..3b8820ea3a7bb3a21088d0d7da7f5deb9f2b38ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94509 ms: Mark-sweep 1320.0 (1434.7) -> 1320.0 (1434.7) MB, 5693.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  100000 ms: Mark-sweep 1320.0 (1434.7) -> 1320.0 (1434.7) MB, 5490.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  106559 ms: Mark-sweep 1320.0 (1434.7) -> 1326.9 (1416.7) MB, 6558.2 / 0.0 ms [last resort gc].
+  111986 ms: Mark-sweep 1326.9 (1416.7) -> 1334.0 (1416.7) MB, 5426.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x303a506cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x7437fba21a7] (this=0x2c688b5e4211 <a Graph with map 0x36b0b96843c9>,idV=0x26e017b768d9 <String[9]: dim:12768>,idU=0x26e017b63671 <String[9]: dim:12769>,value=0x28d5ac7f3651 <a View with map 0x36b0b9687021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x7437fb86fb5] (this=0x2c688b5e4211 <a Graph with map 0x36b0b96843c...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x7437f2079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..2cc35cabfc7c74a89afbb65214a23002b3f34e96
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   95253 ms: Mark-sweep 1324.6 (1437.7) -> 1322.6 (1437.7) MB, 6372.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  101942 ms: Mark-sweep 1322.6 (1437.7) -> 1322.6 (1437.7) MB, 6689.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  107365 ms: Mark-sweep 1322.6 (1437.7) -> 1327.9 (1414.7) MB, 5422.2 / 0.0 ms [last resort gc].
+  112672 ms: Mark-sweep 1327.9 (1414.7) -> 1333.3 (1414.7) MB, 5306.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x37ae138cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2652509d4287] (this=0x2776964b96c9 <a Graph with map 0x4436e784371>,idV=0x3125a4d7a001 <String[9]: dim:13158>,idU=0x3125a4d04dc9 <String[9]: dim:13159>,value=0x13f41ddd02a1 <a View with map 0x4436e786fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2652509a5e15] (this=0x2776964b96c9 <a Graph with map 0x4436e784371...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2652500079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..666063711cbedf7b8d41546613724083bd39f1ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  103003 ms: Mark-sweep 1322.3 (1437.7) -> 1322.3 (1437.7) MB, 5980.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  108645 ms: Mark-sweep 1322.3 (1437.7) -> 1322.2 (1437.7) MB, 5641.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  114807 ms: Mark-sweep 1322.2 (1437.7) -> 1327.1 (1414.7) MB, 6161.5 / 0.0 ms [last resort gc].
+  119037 ms: Mark-sweep 1327.1 (1414.7) -> 1332.0 (1414.7) MB, 4230.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3266e55cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x231b3e3a30b8] (this=0x27b0eee2cb1 <a Graph with map 0x67348884421>,idV=0x1438cda6cc1 <String[9]: dim:13116>,idU=0x1438cd28239 <String[9]: dim:13117>,value=0x14ca394f8c61 <a View with map 0x67348887079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x231b3e3861b5] (this=0x27b0eee2cb1 <a Graph with map 0x67348884421>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x231b3da079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..9e4487e3865af5b5b1615c93d9bba7f462bcfe1c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run14.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93777 ms: Mark-sweep 1321.3 (1434.7) -> 1319.1 (1434.7) MB, 5114.7 / 0.0 ms [allocation failure] [GC in old space requested].
+   98429 ms: Mark-sweep 1319.1 (1434.7) -> 1319.1 (1434.7) MB, 4652.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  104289 ms: Mark-sweep 1319.1 (1434.7) -> 1323.7 (1412.7) MB, 5858.6 / 0.0 ms [last resort gc].
+  109875 ms: Mark-sweep 1323.7 (1412.7) -> 1328.4 (1412.7) MB, 5585.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x25f4c9ccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf7312dd1d6c] (this=0xb0b1a2bcb69 <a Graph with map 0x1a3c85b83871>,idV=0x3aeecefa44a9 <String[9]: dim:12705>,idU=0x3aeecef99d69 <String[9]: dim:12707>,value=0x31a779fa1c39 <a View with map 0x1a3c85b864c9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf7312db5ef5] (this=0xb0b1a2bcb69 <a Graph with map 0x1a3c85b83871>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0xf73124092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..ec561e5a43457b18d29ccbe05a111bf7bf808c43
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   88720 ms: Mark-sweep 1324.6 (1437.7) -> 1322.5 (1437.7) MB, 5188.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   94740 ms: Mark-sweep 1322.5 (1437.7) -> 1322.5 (1437.7) MB, 6020.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  102066 ms: Mark-sweep 1322.5 (1437.7) -> 1327.8 (1414.7) MB, 7324.9 / 0.0 ms [last resort gc].
+  109328 ms: Mark-sweep 1327.8 (1414.7) -> 1333.2 (1414.7) MB, 7261.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1a973a6cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xbd32dad85fa] (this=0x2853edabc689 <a Graph with map 0xf2924842c1>,idV=0x169938d4b089 <String[9]: dim:13159>,idU=0x169938d32911 <String[9]: dim:13163>,value=0x3e565d4d3291 <a View with map 0xf292486f19>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xbd32daaa255] (this=0x2853edabc689 <a Graph with map 0xf2924842c1>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xbd32d1079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..9795288f0da44eba3c51943198c4933862fc75dd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run16.test
@@ -0,0 +1,38 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  122531 ms: Mark-sweep 1332.8 (1423.7) -> 1332.8 (1423.7) MB, 5066.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  127550 ms: Mark-sweep 1332.8 (1423.7) -> 1332.8 (1437.7) MB, 5018.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  132588 ms: Mark-sweep 1332.8 (1437.7) -> 1338.2 (1414.7) MB, 5037.6 / 0.0 ms [last resort gc].
+  137614 ms: Mark-sweep 1338.2 (1414.7) -> 1343.6 (1414.7) MB, 5025.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+    2: arguments adaptor frame: 3->1
+Security context: 0x3191d0fcf781 <JS Object>
+    3: map [native array.js:~994] [pc=0x329f5eea6132] (this=0x3c57cc873e49 <JS Array[8]>,bq=0xd0af3d0dfc9 <JS Function view.dimensions.map.dim (SharedFunctionInfo 0x3f583116f699)>,br=0x3191d0f04381 <undefined>)
+    4: arguments adaptor frame: 1->2
+    5: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x329f5eea7511] (this=0x31252aaf89a9 <a Graph with...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFixedArray(int, v8::internal::PretenureFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Factory::NewScopeInfo(int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::ScopeInfo::Create(v8::internal::Isolate*, v8::internal::Zone*, v8::internal::Scope*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: 0xa656f3 [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: 0xa6cd86 [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Compiler::Compile(v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Compiler::ClearExceptionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Runtime_CompileLazy(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: 0x329f5e5092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..a7f6fe9383a29417ae8bc40f2b9363d7ad8a53ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  152947 ms: Mark-sweep 1338.0 (1412.7) -> 1338.0 (1436.7) MB, 3573.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  156524 ms: Mark-sweep 1338.0 (1436.7) -> 1338.0 (1436.7) MB, 3575.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  161746 ms: Mark-sweep 1338.0 (1436.7) -> 1342.0 (1412.7) MB, 5221.4 / 0.0 ms [last resort gc].
+  167928 ms: Mark-sweep 1342.0 (1412.7) -> 1345.9 (1412.7) MB, 6181.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x288df1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1133adab1398] (this=0x35e15f4e8d61 <a Graph with map 0x2a632c183b89>,idV=0x235914b5a0f9 <String[9]: dim:13121>,idU=0x235914bbca31 <String[9]: dim:13123>,value=0x16871cfee79 <a View with map 0x2a632c1867e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1133ada98fb5] (this=0x35e15f4e8d61 <a Graph with map 0x2a632c183b8...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1133ad1079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..4bb8ff871b28fa9ad1dfbf98946e098785540e83
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93098 ms: Mark-sweep 1324.8 (1434.7) -> 1321.5 (1434.7) MB, 6629.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  100444 ms: Mark-sweep 1321.5 (1434.7) -> 1321.5 (1434.7) MB, 7345.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  105815 ms: Mark-sweep 1321.5 (1434.7) -> 1325.3 (1416.7) MB, 5370.2 / 0.0 ms [last resort gc].
+  112003 ms: Mark-sweep 1325.3 (1416.7) -> 1329.0 (1416.7) MB, 6187.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x12bfcd1cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe21846ed918] (this=0x2c342b9d3e9 <a Graph with map 0x1783eb584371>,idV=0x5a49f32f121 <String[9]: dim:13027>,idU=0x5a49f396ed1 <String[9]: dim:13030>,value=0x10499e1aa389 <a View with map 0x1783eb586fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe21846c3c55] (this=0x2c342b9d3e9 <a Graph with map 0x1783eb584371>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xe2183d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..f265e9fe2d57478b073036b436e87096f5162a91
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   95055 ms: Mark-sweep 1322.3 (1434.7) -> 1322.3 (1434.7) MB, 6163.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  101524 ms: Mark-sweep 1322.3 (1434.7) -> 1322.3 (1434.7) MB, 6468.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  108214 ms: Mark-sweep 1322.3 (1434.7) -> 1328.7 (1414.7) MB, 6689.8 / 0.0 ms [last resort gc].
+  114227 ms: Mark-sweep 1328.7 (1414.7) -> 1335.1 (1414.7) MB, 6012.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2744f1acf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cf6c14befc7] (this=0xb27ccb5bbb9 <a Graph with map 0x219b8b283c91>,idV=0x229469316ec1 <String[9]: dim:13091>,idU=0x22946936d4d1 <String[9]: dim:13092>,value=0x395a72ba9011 <a View with map 0x219b8b2868e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cf6c14a83f5] (this=0xb27ccb5bbb9 <a Graph with map 0x219b8b283c9...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1cf6c0b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..9feea2eaca1628df38faee6dfb1f1abdddc1b6ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  121555 ms: Mark-sweep 1334.3 (1428.7) -> 1334.3 (1428.7) MB, 5437.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  126943 ms: Mark-sweep 1334.3 (1428.7) -> 1334.3 (1434.7) MB, 5387.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  131130 ms: Mark-sweep 1334.3 (1434.7) -> 1339.3 (1415.7) MB, 4186.4 / 0.0 ms [last resort gc].
+  135316 ms: Mark-sweep 1339.3 (1415.7) -> 1344.3 (1414.7) MB, 4185.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3cd9c6cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3830e76b6cfa] (this=0x3c0184f07181 <a Graph with map 0x264a97983f51>,idV=0x1242989b88e9 <String[9]: dim:13409>,idU=0x124298935aa9 <String[9]: dim:13416>,value=0x215911daad89 <a View with map 0x264a97986ba9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3830e769c395] (this=0x3c0184f07181 <a Graph with map 0x264a97983f...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3830e6d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..51a58d6c79db33cc84fd5d263595a9ff7d1ae561
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92507 ms: Mark-sweep 1318.9 (1434.7) -> 1317.9 (1434.7) MB, 7239.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   99790 ms: Mark-sweep 1317.9 (1434.7) -> 1317.9 (1434.7) MB, 7282.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  107127 ms: Mark-sweep 1317.9 (1434.7) -> 1322.4 (1410.7) MB, 7336.5 / 0.0 ms [last resort gc].
+  112701 ms: Mark-sweep 1322.4 (1410.7) -> 1327.1 (1410.7) MB, 5573.3 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1441951cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3cc2edbb35b8] (this=0x24b7e09677d1 <a Graph with map 0x3b0ceb783c91>,idV=0x3f0b159dbb71 <String[9]: dim:12501>,idU=0x3f0b159cea99 <String[9]: dim:12507>,value=0x2efd0c6075e1 <a View with map 0x3b0ceb7868e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3cc2edb9b1d5] (this=0x24b7e09677d1 <a Graph with map 0x3b0ceb783...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3cc2ed2079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..efcda90293378d72144fae3b5926e13b803824e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90133 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 6692.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   96114 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 5980.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  101936 ms: Mark-sweep 1324.5 (1434.7) -> 1328.9 (1415.7) MB, 5820.8 / 0.0 ms [last resort gc].
+  108522 ms: Mark-sweep 1328.9 (1415.7) -> 1333.3 (1415.7) MB, 6585.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2eb7a47cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3d5a94c3327] (this=0x7000f826ab1 <a Graph with map 0x12f2178844d1>,idV=0x14fabf77cc39 <String[9]: dim:13410>,idU=0x14fabf7709c9 <String[9]: dim:13411>,value=0x256b3be860d9 <a View with map 0x12f217887129>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3d5a94a5955] (this=0x7000f826ab1 <a Graph with map 0x12f2178844d1>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3d5a8b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..3e48d5f68d94c7fbb9a833db6c90b8f03194608e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90865 ms: Mark-sweep 1324.6 (1437.7) -> 1322.5 (1437.7) MB, 6523.5 / 0.0 ms [allocation failure] [GC in old space requested].
+   97282 ms: Mark-sweep 1322.5 (1437.7) -> 1322.5 (1437.7) MB, 6415.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  103601 ms: Mark-sweep 1322.5 (1437.7) -> 1327.7 (1414.7) MB, 6318.1 / 0.0 ms [last resort gc].
+  110095 ms: Mark-sweep 1327.7 (1414.7) -> 1333.0 (1414.7) MB, 6493.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2dd72bbcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3009957dd147] (this=0x16e9476ca3a1 <a Graph with map 0x390183784371>,idV=0x1867b352f719 <String[9]: dim:13158>,idU=0x1867b359deb9 <String[9]: dim:13159>,value=0x32b9142e10b1 <a View with map 0x390183786fc9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3009957aeed5] (this=0x16e9476ca3a1 <a Graph with map 0x390183784...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x300994e079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..5e0c4aa1911ad957fdadf6beb269c3f3db90b841
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94137 ms: Mark-sweep 1324.3 (1437.7) -> 1322.4 (1437.7) MB, 6261.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  100530 ms: Mark-sweep 1322.4 (1437.7) -> 1322.4 (1437.7) MB, 6393.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  106678 ms: Mark-sweep 1322.4 (1437.7) -> 1327.4 (1414.7) MB, 6146.4 / 0.0 ms [last resort gc].
+  112163 ms: Mark-sweep 1327.4 (1414.7) -> 1332.6 (1414.7) MB, 5485.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1952c4fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2798edfb5047] (this=0x70b885d1491 <a Graph with map 0xd41e9584269>,idV=0x181bd623e679 <String[9]: dim:13131>,idU=0x181bd6244e91 <String[9]: dim:13137>,value=0xb419a4e79e1 <a View with map 0xd41e9586ec1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2798edf99a15] (this=0x70b885d1491 <a Graph with map 0xd41e9584269>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2798ed6079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..a7e4a7325a7515b328e102078108d03ad2399781
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   93670 ms: Mark-sweep 1324.0 (1436.7) -> 1322.2 (1436.7) MB, 5842.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  100418 ms: Mark-sweep 1322.2 (1436.7) -> 1322.2 (1436.7) MB, 6748.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  107744 ms: Mark-sweep 1322.2 (1436.7) -> 1325.9 (1413.7) MB, 7325.4 / 0.0 ms [last resort gc].
+  112472 ms: Mark-sweep 1325.9 (1413.7) -> 1329.6 (1413.7) MB, 4727.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3804319cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2518439d6647] (this=0x6308d3e15f1 <a Graph with map 0x1412fba83c39>,idV=0x1af40eb1f049 <String[9]: dim:13116>,idU=0x1af40ebc3679 <String[9]: dim:13117>,value=0x2589eeff76f9 <a View with map 0x1412fba86891>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2518439b9955] (this=0x6308d3e15f1 <a Graph with map 0x1412fba83c3...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2518430079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..17e79cd37cc93c94f136ddbd7e1290ddfee98fe0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  100108 ms: Mark-sweep 1322.3 (1437.7) -> 1322.2 (1437.7) MB, 6083.2 / 0.0 ms [allocation failure] [GC in old space requested].
+  105894 ms: Mark-sweep 1322.2 (1437.7) -> 1322.1 (1437.7) MB, 5786.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  112538 ms: Mark-sweep 1322.1 (1437.7) -> 1327.3 (1414.7) MB, 6642.6 / 0.0 ms [last resort gc].
+  117422 ms: Mark-sweep 1327.3 (1414.7) -> 1332.5 (1414.7) MB, 4883.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x19ee52bcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1703037c7578] (this=0x15452c0ecb49 <a Graph with map 0x3ddaae2843c9>,idV=0x10c608f89791 <String[9]: dim:13112>,idU=0x10c608fce961 <String[9]: dim:13115>,value=0x208cd5606d21 <a View with map 0x3ddaae287021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1703037a7075] (this=0x15452c0ecb49 <a Graph with map 0x3ddaae284...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x170302e079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..d9e8e45e4c00eeef3c0f7708b7db6357fcd20ce0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   83375 ms: Mark-sweep 1329.8 (1434.7) -> 1321.4 (1434.7) MB, 5272.9 / 0.0 ms [allocation failure] [GC in old space requested].
+   89907 ms: Mark-sweep 1321.4 (1434.7) -> 1321.3 (1434.7) MB, 6531.7 / 0.0 ms [allocation failure] [GC in old space requested].
+   95120 ms: Mark-sweep 1321.3 (1434.7) -> 1325.4 (1416.7) MB, 5212.1 / 0.0 ms [last resort gc].
+  100158 ms: Mark-sweep 1325.4 (1416.7) -> 1329.5 (1416.7) MB, 5037.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x63826ccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x356a18ecc267] (this=0x545533bff19 <a Graph with map 0x2decfb883c91>,idV=0x3fa995e59ac1 <String[9]: dim:12996>,idU=0x3fa995e8d3f1 <String[9]: dim:12999>,value=0x87deceb9a51 <a View with map 0x2decfb8868e9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x356a18eb1855] (this=0x545533bff19 <a Graph with map 0x2decfb883c91>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x356a185079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-07/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-07/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..985cf55eac85c46836916afcc44aaf7221d9b536
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-07/linear8/run9.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94727 ms: Mark-sweep 1328.8 (1434.7) -> 1324.6 (1434.7) MB, 7515.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  101730 ms: Mark-sweep 1324.6 (1434.7) -> 1324.6 (1434.7) MB, 7003.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  109174 ms: Mark-sweep 1324.6 (1434.7) -> 1328.6 (1418.7) MB, 7443.0 / 0.0 ms [last resort gc].
+  115619 ms: Mark-sweep 1328.6 (1418.7) -> 1333.0 (1418.7) MB, 6444.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x2edef70cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2dd14cce62ac] (this=0xc1f1abc6211 <a Graph with map 0x20b1c6784161>,idV=0x29bc4b80b91 <String[9]: dim:13440>,idU=0x29bc4b06101 <String[9]: dim:13446>,value=0x431c38e26c9 <a View with map 0x20b1c6786db9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2dd14ccb8b95] (this=0xc1f1abc6211 <a Graph with map 0x20b1c6784161>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x2dd14c3092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..2a16b78825e2fb218511cc2ab14f9112df3e28a3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 342.75
+Mediana        = 336.5
+Variancia      = 729.67
+Desvio Padrao  = 27.01
+Coef. Variacao = 0.08
+Min            = 311
+Max            = 418
+Esq, Dir.      = 332.8148 , 352.6852
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2a3dd08e0a2ca5941754340ea7df470b09c0158e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 353
+1024 328
+1024 311
+1024 358
+1024 355
+1024 311
+1024 361
+1024 318
+1024 331
+1024 368
+1024 312
+1024 353
+1024 366
+1024 325
+1024 334
+1024 418
+1024 336
+1024 369
+1024 311
+1024 337
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..19876d561e8537f0a38b77d6cbaf34421ad12720
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 242.3
+Mediana        = 240
+Variancia      = 74.22
+Desvio Padrao  = 8.62
+Coef. Variacao = 0.04
+Min            = 232
+Max            = 269
+Esq, Dir.      = 239.1313 , 245.4687
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..b1dacf2ba46bcaf2a68d4e6480a87393fd22cbb0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 240
+1024 232
+1024 242
+1024 269
+1024 233
+1024 246
+1024 239
+1024 246
+1024 235
+1024 251
+1024 253
+1024 238
+1024 248
+1024 240
+1024 234
+1024 235
+1024 244
+1024 240
+1024 237
+1024 244
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4f174bfaee9a778331268aeb4ef01883e2c9bb0f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 23.15
+Mediana        = 22.5
+Variancia      = 8.66
+Desvio Padrao  = 2.94
+Coef. Variacao = 0.13
+Min            = 20
+Max            = 32
+Esq, Dir.      = 22.0676 , 24.2324
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9635b59c176e8b0d70ac28bb8f1a240db91a2212
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 32
+128 22
+128 23
+128 21
+128 22
+128 21
+128 25
+128 21
+128 21
+128 23
+128 22
+128 23
+128 23
+128 30
+128 22
+128 23
+128 22
+128 23
+128 20
+128 24
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..88f691a10131953a42cae78f66e61f80ead8b199
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 14.85
+Mediana        = 14
+Variancia      = 6.45
+Desvio Padrao  = 2.54
+Coef. Variacao = 0.17
+Min            = 13
+Max            = 20
+Esq, Dir.      = 13.9159 , 15.7841
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..2a7e97a09fb412f343ab6f28a7f43f5dbd0e40ec
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 13
+128 13
+128 13
+128 20
+128 13
+128 14
+128 13
+128 14
+128 14
+128 13
+128 15
+128 19
+128 19
+128 13
+128 15
+128 14
+128 13
+128 16
+128 20
+128 13
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..14ee061df1a338cbf8ca83d49e27d019bcce25a2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.7
+Mediana        = 11
+Variancia      = 0.54
+Desvio Padrao  = 0.73
+Coef. Variacao = 0.07
+Min            = 10
+Max            = 13
+Esq, Dir.      = 10.4305 , 10.9695
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5d522ed62d34924d127bb09870b4399d7bbf444f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 11
+16 11
+16 10
+16 11
+16 10
+16 10
+16 11
+16 11
+16 10
+16 10
+16 10
+16 11
+16 10
+16 11
+16 11
+16 13
+16 10
+16 11
+16 11
+16 11
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..432cac9c07801aa33ad2b7858317dbcd2529be05
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 15.8
+Mediana        = 16
+Variancia      = 0.69
+Desvio Padrao  = 0.83
+Coef. Variacao = 0.05
+Min            = 15
+Max            = 17
+Esq, Dir.      = 15.4934 , 16.1066
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..79c72fff7c00e6ad5df3b1a4085b7d63e857e658
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 16
+16 15
+16 16
+16 16
+16 17
+16 17
+16 15
+16 15
+16 15
+16 15
+16 16
+16 17
+16 17
+16 17
+16 15
+16 16
+16 15
+16 16
+16 15
+16 15
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1184e8412f932503dbf00db2b6c2cb0c6503719c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 79941.65
+Mediana        = 79651
+Variancia      = 18025458.98
+Desvio Padrao  = 4245.64
+Coef. Variacao = 0.05
+Min            = 72227
+Max            = 87735
+Esq, Dir.      = 78380.1017 , 81503.1983
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8575ce04d5b698ddbce62a1000332adf1714fa39
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 77890
+16384 75484
+16384 87635
+16384 81725
+16384 84410
+16384 73208
+16384 81260
+16384 77277
+16384 78783
+16384 83777
+16384 72227
+16384 79598
+16384 83539
+16384 75211
+16384 79337
+16384 80381
+16384 82006
+16384 87735
+16384 77646
+16384 79704
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..36f566606f68852bdbf87fa053a9109720a420e4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 56921.9
+Mediana        = 56720
+Variancia      = 5901561.15
+Desvio Padrao  = 2429.31
+Coef. Variacao = 0.04
+Min            = 52745
+Max            = 62483
+Esq, Dir.      = 56028.3976 , 57815.4024
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4db3c957ab7ab400c61cbbe2bc67d79dcc17dd28
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 56829
+16384 52745
+16384 58608
+16384 62483
+16384 56015
+16384 59058
+16384 59174
+16384 57038
+16384 56206
+16384 58035
+16384 56611
+16384 53908
+16384 61286
+16384 55043
+16384 57694
+16384 55251
+16384 53977
+16384 55962
+16384 55020
+16384 57495
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..534ba18c235a6d9554c5fd03d2fc63c3ca4c42f7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1221.5
+Mediana        = 1217
+Variancia      = 4491.32
+Desvio Padrao  = 67.02
+Coef. Variacao = 0.05
+Min            = 1115
+Max            = 1346
+Esq, Dir.      = 1196.851 , 1246.149
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..7f298d16925ec0d59d2af351ff915dc50c31cace
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 1254
+2048 1179
+2048 1154
+2048 1231
+2048 1284
+2048 1117
+2048 1307
+2048 1159
+2048 1233
+2048 1346
+2048 1180
+2048 1275
+2048 1206
+2048 1163
+2048 1201
+2048 1313
+2048 1228
+2048 1301
+2048 1115
+2048 1184
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6f5edadb281e9cb8867c0a7708b5950f50865517
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 939
+Mediana        = 936.5
+Variancia      = 879.47
+Desvio Padrao  = 29.66
+Coef. Variacao = 0.03
+Min            = 894
+Max            = 1033
+Esq, Dir.      = 928.0925 , 949.9075
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..0e43944fcd8364f70d59463fca70ed9b25484055
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 929
+2048 894
+2048 946
+2048 1033
+2048 906
+2048 940
+2048 920
+2048 946
+2048 911
+2048 970
+2048 933
+2048 931
+2048 958
+2048 927
+2048 958
+2048 915
+2048 947
+2048 917
+2048 941
+2048 958
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b0b0840a08d593c6b5a1cc8a8a9c5ff81ae3e3ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 33.95
+Mediana        = 34
+Variancia      = 2.58
+Desvio Padrao  = 1.61
+Coef. Variacao = 0.05
+Min            = 31
+Max            = 36
+Esq, Dir.      = 33.3596 , 34.5404
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ea36ee11d21e94ffbf523fa49da2500897a70465
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 35
+256 33
+256 31
+256 33
+256 35
+256 32
+256 36
+256 33
+256 33
+256 36
+256 32
+256 36
+256 36
+256 33
+256 35
+256 34
+256 34
+256 36
+256 32
+256 34
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..874c77452a40632aad2202bdd262a21e71a57c48
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 46.25
+Mediana        = 47
+Variancia      = 28.41
+Desvio Padrao  = 5.33
+Coef. Variacao = 0.12
+Min            = 27
+Max            = 54
+Esq, Dir.      = 44.2897 , 48.2103
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..570114a2aeb502033cd4266950232b49c7a886d1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 44
+256 44
+256 48
+256 48
+256 48
+256 47
+256 45
+256 45
+256 44
+256 46
+256 27
+256 47
+256 51
+256 48
+256 52
+256 49
+256 45
+256 54
+256 49
+256 44
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..15472723f12098c794f946916a960eb30622b8f3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 5.9
+Mediana        = 5
+Variancia      = 5.36
+Desvio Padrao  = 2.31
+Coef. Variacao = 0.39
+Min            = 4
+Max            = 13
+Esq, Dir.      = 5.0486 , 6.7514
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..af2daeafac051be1d04ce42eab9ad6eafb66cc87
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 6
+32 6
+32 5
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 6
+32 5
+32 5
+32 12
+32 6
+32 5
+32 13
+32 5
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..a65b4bc5702cd320fcca872a203d21bbc0f24f18
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 4.65
+Mediana        = 5
+Variancia      = 0.45
+Desvio Padrao  = 0.67
+Coef. Variacao = 0.14
+Min            = 3
+Max            = 6
+Esq, Dir.      = 4.4033 , 4.8967
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5f62fc3998636c854169bc2c5323e5155e4ad3c9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 4
+32 4
+32 5
+32 6
+32 4
+32 4
+32 5
+32 5
+32 3
+32 5
+32 4
+32 5
+32 4
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..00ede2a97aeaa65d7c4c5d6ca51ac1cd7b6801b2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 318476.9
+Mediana        = 319071
+Variancia      = 367432450.52
+Desvio Padrao  = 19168.53
+Coef. Variacao = 0.06
+Min            = 283549
+Max            = 352048
+Esq, Dir.      = 311426.7069 , 325527.0931
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..20cf92e88bda28279fc2ba4b6f093ccb09fea6ff
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 294515
+32768 283549
+32768 318139
+32768 312451
+32768 320003
+32768 320367
+32768 321677
+32768 335704
+32768 317774
+32768 343758
+32768 307082
+32768 333104
+32768 296309
+32768 303653
+32768 325266
+32768 345166
+32768 339591
+32768 352048
+32768 292407
+32768 306975
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..6108c85917bdaa1e17f53616a1ac188a7327817b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 235016.2
+Mediana        = 235284
+Variancia      = 193921483.85
+Desvio Padrao  = 13925.57
+Coef. Variacao = 0.06
+Min            = 209624
+Max            = 261899
+Esq, Dir.      = 229894.3693 , 240138.0307
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..6daa430c0925cb4ba4d59ab34f48d2d58464804b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 217482
+32768 209624
+32768 232594
+32768 222559
+32768 227399
+32768 237974
+32768 240064
+32768 261899
+32768 250617
+32768 239898
+32768 253166
+32768 214885
+32768 247737
+32768 240205
+32768 232590
+32768 231055
+32768 221377
+32768 227859
+32768 239352
+32768 251988
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..df437d404bac694834f56697f85b2bdc2ded69ab
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4663.25
+Mediana        = 4685
+Variancia      = 64095.46
+Desvio Padrao  = 253.17
+Coef. Variacao = 0.05
+Min            = 4178
+Max            = 5019
+Esq, Dir.      = 4570.1337 , 4756.3663
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..25a46c7f82fde77587846b166024c3315d873683
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4787
+4096 4178
+4096 4638
+4096 4749
+4096 4916
+4096 4308
+4096 4885
+4096 4425
+4096 4732
+4096 5019
+4096 4331
+4096 4819
+4096 4913
+4096 4383
+4096 4609
+4096 4959
+4096 4552
+4096 4999
+4096 4477
+4096 4586
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..3e38fe14475aef88c1e78413fc13e4469dc9f8c9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 3316.7
+Mediana        = 3293.5
+Variancia      = 12364.85
+Desvio Padrao  = 111.2
+Coef. Variacao = 0.03
+Min            = 3141
+Max            = 3654
+Esq, Dir.      = 3275.8016 , 3357.5984
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..3d8816fb2f97248e00492f6b5e7940263409497a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 3271
+4096 3141
+4096 3297
+4096 3654
+4096 3258
+4096 3290
+4096 3326
+4096 3455
+4096 3276
+4096 3434
+4096 3266
+4096 3256
+4096 3433
+4096 3231
+4096 3365
+4096 3240
+4096 3303
+4096 3202
+4096 3305
+4096 3331
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..cf2a84d7a122b07cd7a0cb34275065bf7f50b041
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 100.65
+Mediana        = 99.5
+Variancia      = 24.34
+Desvio Padrao  = 4.93
+Coef. Variacao = 0.05
+Min            = 93
+Max            = 108
+Esq, Dir.      = 98.8353 , 102.4647
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..da1dd0454f987ab4d5bf50a63d7cf6606f21b007
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 105
+512 98
+512 94
+512 99
+512 106
+512 93
+512 106
+512 98
+512 98
+512 108
+512 94
+512 105
+512 107
+512 97
+512 100
+512 104
+512 99
+512 106
+512 94
+512 102
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b0d594782f71bc52acf0dd8b3a1d3221ac2a3957
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 80.3
+Mediana        = 79
+Variancia      = 37.38
+Desvio Padrao  = 6.11
+Coef. Variacao = 0.08
+Min            = 73
+Max            = 102
+Esq, Dir.      = 78.0513 , 82.5487
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b919f690a9ac463ebdc9ba49daee83841557b72
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 79
+512 75
+512 75
+512 89
+512 80
+512 80
+512 77
+512 79
+512 73
+512 79
+512 102
+512 82
+512 82
+512 81
+512 79
+512 80
+512 77
+512 77
+512 78
+512 82
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ea5c26f76f42d2a143390ce9035ac4aa9da7ade6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.2
+Mediana        = 7
+Variancia      = 0.69
+Desvio Padrao  = 0.83
+Coef. Variacao = 0.12
+Min            = 6
+Max            = 9
+Esq, Dir.      = 6.8934 , 7.5066
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..d706fe160317c895c4f9ca7eeeb1be84c41b424e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 8
+64 6
+64 7
+64 6
+64 7
+64 7
+64 8
+64 7
+64 7
+64 7
+64 7
+64 9
+64 7
+64 8
+64 9
+64 7
+64 6
+64 7
+64 7
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..30b3e66078c4fcf290b7ed0ca69e435a36776a76
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 5.9
+Mediana        = 6
+Variancia      = 0.2
+Desvio Padrao  = 0.45
+Coef. Variacao = 0.08
+Min            = 5
+Max            = 7
+Esq, Dir.      = 5.7355 , 6.0645
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..f8fb240f55ca7087fdbee732cd9748529e01c7e7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 6
+64 6
+64 5
+64 6
+64 6
+64 6
+64 5
+64 6
+64 6
+64 6
+64 6
+64 6
+64 7
+64 5
+64 6
+64 6
+64 6
+64 6
+64 6
+64 6
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..fb1b3ea2954af53b75156905a046dd3641e4ec9a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1311768.6
+Mediana        = 1302915
+Variancia      = 5569026998.67
+Desvio Padrao  = 74625.91
+Coef. Variacao = 0.06
+Min            = 1167128
+Max            = 1438511
+Esq, Dir.      = 1284321.1552 , 1339216.0448
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6c05c09fd4b01765e58c94ef70513efcc8412c5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 1230120
+65536 1183926
+65536 1304857
+65536 1317612
+65536 1279810
+65536 1343925
+65536 1383951
+65536 1274075
+65536 1382416
+65536 1428122
+65536 1167128
+65536 1300973
+65536 1269647
+65536 1326794
+65536 1278691
+65536 1408007
+65536 1278204
+65536 1438511
+65536 1368325
+65536 1270278
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..a051702ea53f523e4e18983e30c7def574bac50f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1120447.15
+Mediana        = 1118033.5
+Variancia      = 1765296556.24
+Desvio Padrao  = 42015.43
+Coef. Variacao = 0.04
+Min            = 1043173
+Max            = 1194401
+Esq, Dir.      = 1104993.855 , 1135900.445
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..26de52277bff7447bff397d699bad8140d437a1a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 1194401
+65536 1043173
+65536 1098581
+65536 1113913
+65536 1174972
+65536 1112523
+65536 1076870
+65536 1112822
+65536 1123851
+65536 1121380
+65536 1083258
+65536 1178157
+65536 1144044
+65536 1174109
+65536 1148588
+65536 1114687
+65536 1057773
+65536 1143618
+65536 1064889
+65536 1127334
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..63db7ef8b67c9155934eb3fcd1744bbd813adcfd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18787.1
+Mediana        = 19107
+Variancia      = 1088702.52
+Desvio Padrao  = 1043.41
+Coef. Variacao = 0.06
+Min            = 16868
+Max            = 20400
+Esq, Dir.      = 18403.3337 , 19170.8663
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6857c67295bf1cb55e913d7e324713a28e3506f4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 19208
+8192 17098
+8192 19603
+8192 19124
+8192 19953
+8192 17125
+8192 19541
+8192 17807
+8192 18326
+8192 19749
+8192 16868
+8192 19090
+8192 19457
+8192 18110
+8192 17997
+8192 20400
+8192 19208
+8192 20106
+8192 18284
+8192 18688
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..974c3b7d4603a2c0d0813d4ce433294ac0d21228
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 13242.8
+Mediana        = 13202.5
+Variancia      = 220282.91
+Desvio Padrao  = 469.34
+Coef. Variacao = 0.04
+Min            = 12383
+Max            = 14385
+Esq, Dir.      = 13070.1754 , 13415.4246
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..5d69d8e564386be7bc07fcaf65b3261c8c65767a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 12790
+8192 12383
+8192 13108
+8192 14385
+8192 12920
+8192 13241
+8192 13387
+8192 13917
+8192 13164
+8192 13675
+8192 13409
+8192 12873
+8192 13788
+8192 12986
+8192 13603
+8192 12720
+8192 13273
+8192 12855
+8192 13019
+8192 13360
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..31e19c74d8e5f6aebc96e17001f630a85d50ca77
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (6ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (27ms)
+    ✓ LayoutView;n=512 (102ms)
+    ✓ LayoutView;n=1024 (253ms)
+    ✓ LayoutView;n=2048 (933ms)
+    ✓ LayoutView;n=4096 (3266ms)
+    ✓ LayoutView;n=8192 (13409ms)
+    ✓ LayoutView;n=16384 (56611ms)
+    ✓ LayoutView;n=32768 (253166ms)
+    ✓ LayoutView;n=65536 (1083258ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (312ms)
+    ✓ LayoutSQL;n=2048 (1180ms)
+    ✓ LayoutSQL;n=4096 (4331ms)
+    ✓ LayoutSQL;n=8192 (16868ms)
+    ✓ LayoutSQL;n=16384 (72227ms)
+    ✓ LayoutSQL;n=32768 (307082ms)
+    ✓ LayoutSQL;n=65536 (1167128ms)
+
+
+  26 passing (50m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..4dc72ab1b3f36722bfc1a514d79ae9d28a5ebefc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (46ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (251ms)
+    ✓ LayoutView;n=2048 (970ms)
+    ✓ LayoutView;n=4096 (3434ms)
+    ✓ LayoutView;n=8192 (13675ms)
+    ✓ LayoutView;n=16384 (58035ms)
+    ✓ LayoutView;n=32768 (239898ms)
+    ✓ LayoutView;n=65536 (1121380ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (108ms)
+    ✓ LayoutSQL;n=1024 (368ms)
+    ✓ LayoutSQL;n=2048 (1346ms)
+    ✓ LayoutSQL;n=4096 (5019ms)
+    ✓ LayoutSQL;n=8192 (19749ms)
+    ✓ LayoutSQL;n=16384 (83777ms)
+    ✓ LayoutSQL;n=32768 (343758ms)
+    ✓ LayoutSQL;n=65536 (1428122ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..e19faa0d13772cfb1e7da1c3ac5e38ecdae733df
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (82ms)
+    ✓ LayoutView;n=1024 (244ms)
+    ✓ LayoutView;n=2048 (958ms)
+    ✓ LayoutView;n=4096 (3331ms)
+    ✓ LayoutView;n=8192 (13360ms)
+    ✓ LayoutView;n=16384 (57495ms)
+    ✓ LayoutView;n=32768 (251988ms)
+    ✓ LayoutView;n=65536 (1127334ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (102ms)
+    ✓ LayoutSQL;n=1024 (337ms)
+    ✓ LayoutSQL;n=2048 (1184ms)
+    ✓ LayoutSQL;n=4096 (4586ms)
+    ✓ LayoutSQL;n=8192 (18688ms)
+    ✓ LayoutSQL;n=16384 (79704ms)
+    ✓ LayoutSQL;n=32768 (306975ms)
+    ✓ LayoutSQL;n=65536 (1270278ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..394061453fd9567b0819844e5b63f93bf253cb4f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (246ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3455ms)
+    ✓ LayoutView;n=8192 (13917ms)
+    ✓ LayoutView;n=16384 (57038ms)
+    ✓ LayoutView;n=32768 (261899ms)
+    ✓ LayoutView;n=65536 (1112822ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (318ms)
+    ✓ LayoutSQL;n=2048 (1159ms)
+    ✓ LayoutSQL;n=4096 (4425ms)
+    ✓ LayoutSQL;n=8192 (17807ms)
+    ✓ LayoutSQL;n=16384 (77277ms)
+    ✓ LayoutSQL;n=32768 (335704ms)
+    ✓ LayoutSQL;n=65536 (1274075ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..64f92ad1c3b9627ff7cd80b124961eeea66bb1e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (3ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (49ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (235ms)
+    ✓ LayoutView;n=2048 (915ms)
+    ✓ LayoutView;n=4096 (3240ms)
+    ✓ LayoutView;n=8192 (12720ms)
+    ✓ LayoutView;n=16384 (55251ms)
+    ✓ LayoutView;n=32768 (231055ms)
+    ✓ LayoutView;n=65536 (1114687ms)
+    ✓ LayoutSQL;n=16 (13ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (104ms)
+    ✓ LayoutSQL;n=1024 (418ms)
+    ✓ LayoutSQL;n=2048 (1313ms)
+    ✓ LayoutSQL;n=4096 (4959ms)
+    ✓ LayoutSQL;n=8192 (20400ms)
+    ✓ LayoutSQL;n=16384 (80381ms)
+    ✓ LayoutSQL;n=32768 (345166ms)
+    ✓ LayoutSQL;n=65536 (1408007ms)
+
+
+  26 passing (55m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..d256a9142839bb5a2f4d90f53a59d64f420cfff9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (89ms)
+    ✓ LayoutView;n=1024 (269ms)
+    ✓ LayoutView;n=2048 (1033ms)
+    ✓ LayoutView;n=4096 (3654ms)
+    ✓ LayoutView;n=8192 (14385ms)
+    ✓ LayoutView;n=16384 (62483ms)
+    ✓ LayoutView;n=32768 (222559ms)
+    ✓ LayoutView;n=65536 (1113913ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (358ms)
+    ✓ LayoutSQL;n=2048 (1231ms)
+    ✓ LayoutSQL;n=4096 (4749ms)
+    ✓ LayoutSQL;n=8192 (19124ms)
+    ✓ LayoutSQL;n=16384 (81725ms)
+    ✓ LayoutSQL;n=32768 (312451ms)
+    ✓ LayoutSQL;n=65536 (1317612ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..4a3190a016cb651787b8abecf6651456ad607c58
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (239ms)
+    ✓ LayoutView;n=2048 (920ms)
+    ✓ LayoutView;n=4096 (3326ms)
+    ✓ LayoutView;n=8192 (13387ms)
+    ✓ LayoutView;n=16384 (59174ms)
+    ✓ LayoutView;n=32768 (240064ms)
+    ✓ LayoutView;n=65536 (1076870ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (106ms)
+    ✓ LayoutSQL;n=1024 (361ms)
+    ✓ LayoutSQL;n=2048 (1307ms)
+    ✓ LayoutSQL;n=4096 (4885ms)
+    ✓ LayoutSQL;n=8192 (19541ms)
+    ✓ LayoutSQL;n=16384 (81260ms)
+    ✓ LayoutSQL;n=32768 (321677ms)
+    ✓ LayoutSQL;n=65536 (1383951ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..b82a48c156145d418deb9e1eb831d8716ab4b42f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (20ms)
+    ✓ LayoutView;n=256 (49ms)
+    ✓ LayoutView;n=512 (78ms)
+    ✓ LayoutView;n=1024 (237ms)
+    ✓ LayoutView;n=2048 (941ms)
+    ✓ LayoutView;n=4096 (3305ms)
+    ✓ LayoutView;n=8192 (13019ms)
+    ✓ LayoutView;n=16384 (55020ms)
+    ✓ LayoutView;n=32768 (239352ms)
+    ✓ LayoutView;n=65536 (1064889ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (20ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (311ms)
+    ✓ LayoutSQL;n=2048 (1115ms)
+    ✓ LayoutSQL;n=4096 (4477ms)
+    ✓ LayoutSQL;n=8192 (18284ms)
+    ✓ LayoutSQL;n=16384 (77646ms)
+    ✓ LayoutSQL;n=32768 (292407ms)
+    ✓ LayoutSQL;n=65536 (1368325ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..e73a3e541d1e33302258e5a3dbe05c6f9eb942fd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (82ms)
+    ✓ LayoutView;n=1024 (238ms)
+    ✓ LayoutView;n=2048 (931ms)
+    ✓ LayoutView;n=4096 (3256ms)
+    ✓ LayoutView;n=8192 (12873ms)
+    ✓ LayoutView;n=16384 (53908ms)
+    ✓ LayoutView;n=32768 (214885ms)
+    ✓ LayoutView;n=65536 (1178157ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (105ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1275ms)
+    ✓ LayoutSQL;n=4096 (4819ms)
+    ✓ LayoutSQL;n=8192 (19090ms)
+    ✓ LayoutSQL;n=16384 (79598ms)
+    ✓ LayoutSQL;n=32768 (333104ms)
+    ✓ LayoutSQL;n=65536 (1300973ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..7b9a830052e29eb19f250bca20d875f7a34f604f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (16ms)
+    ✓ LayoutView;n=256 (54ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (240ms)
+    ✓ LayoutView;n=2048 (917ms)
+    ✓ LayoutView;n=4096 (3202ms)
+    ✓ LayoutView;n=8192 (12855ms)
+    ✓ LayoutView;n=16384 (55962ms)
+    ✓ LayoutView;n=32768 (227859ms)
+    ✓ LayoutView;n=65536 (1143618ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (13ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (106ms)
+    ✓ LayoutSQL;n=1024 (369ms)
+    ✓ LayoutSQL;n=2048 (1301ms)
+    ✓ LayoutSQL;n=4096 (4999ms)
+    ✓ LayoutSQL;n=8192 (20106ms)
+    ✓ LayoutSQL;n=16384 (87735ms)
+    ✓ LayoutSQL;n=32768 (352048ms)
+    ✓ LayoutSQL;n=65536 (1438511ms)
+
+
+  26 passing (56m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..e4ef580282c4d23b2bdb441aac6225f20f55145a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (240ms)
+    ✓ LayoutView;n=2048 (929ms)
+    ✓ LayoutView;n=4096 (3271ms)
+    ✓ LayoutView;n=8192 (12790ms)
+    ✓ LayoutView;n=16384 (56829ms)
+    ✓ LayoutView;n=32768 (217482ms)
+    ✓ LayoutView;n=65536 (1194401ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (32ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (105ms)
+    ✓ LayoutSQL;n=1024 (353ms)
+    ✓ LayoutSQL;n=2048 (1254ms)
+    ✓ LayoutSQL;n=4096 (4787ms)
+    ✓ LayoutSQL;n=8192 (19208ms)
+    ✓ LayoutSQL;n=16384 (77890ms)
+    ✓ LayoutSQL;n=32768 (294515ms)
+    ✓ LayoutSQL;n=65536 (1230120ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..b24109e95e1aae5428d9d901ec862fb43d2b4092
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (16ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (75ms)
+    ✓ LayoutView;n=1024 (242ms)
+    ✓ LayoutView;n=2048 (946ms)
+    ✓ LayoutView;n=4096 (3297ms)
+    ✓ LayoutView;n=8192 (13108ms)
+    ✓ LayoutView;n=16384 (58608ms)
+    ✓ LayoutView;n=32768 (232594ms)
+    ✓ LayoutView;n=65536 (1098581ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (94ms)
+    ✓ LayoutSQL;n=1024 (311ms)
+    ✓ LayoutSQL;n=2048 (1154ms)
+    ✓ LayoutSQL;n=4096 (4638ms)
+    ✓ LayoutSQL;n=8192 (19603ms)
+    ✓ LayoutSQL;n=16384 (87635ms)
+    ✓ LayoutSQL;n=32768 (318139ms)
+    ✓ LayoutSQL;n=65536 (1304857ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..0d79bfb25ca75b18f844baca3f84bacc866d3198
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (75ms)
+    ✓ LayoutView;n=1024 (232ms)
+    ✓ LayoutView;n=2048 (894ms)
+    ✓ LayoutView;n=4096 (3141ms)
+    ✓ LayoutView;n=8192 (12383ms)
+    ✓ LayoutView;n=16384 (52745ms)
+    ✓ LayoutView;n=32768 (209624ms)
+    ✓ LayoutView;n=65536 (1043173ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (6ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (328ms)
+    ✓ LayoutSQL;n=2048 (1179ms)
+    ✓ LayoutSQL;n=4096 (4178ms)
+    ✓ LayoutSQL;n=8192 (17098ms)
+    ✓ LayoutSQL;n=16384 (75484ms)
+    ✓ LayoutSQL;n=32768 (283549ms)
+    ✓ LayoutSQL;n=65536 (1183926ms)
+
+
+  26 passing (48m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..bfd87e0f6a57983e4944db139037b28e1f9fdda9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (45ms)
+    ✓ LayoutView;n=512 (77ms)
+    ✓ LayoutView;n=1024 (244ms)
+    ✓ LayoutView;n=2048 (947ms)
+    ✓ LayoutView;n=4096 (3303ms)
+    ✓ LayoutView;n=8192 (13273ms)
+    ✓ LayoutView;n=16384 (53977ms)
+    ✓ LayoutView;n=32768 (221377ms)
+    ✓ LayoutView;n=65536 (1057773ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (99ms)
+    ✓ LayoutSQL;n=1024 (336ms)
+    ✓ LayoutSQL;n=2048 (1228ms)
+    ✓ LayoutSQL;n=4096 (4552ms)
+    ✓ LayoutSQL;n=8192 (19208ms)
+    ✓ LayoutSQL;n=16384 (82006ms)
+    ✓ LayoutSQL;n=32768 (339591ms)
+    ✓ LayoutSQL;n=65536 (1278204ms)
+
+
+  26 passing (51m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..a5d2a42eabd013ca6683e99dff3b442fc2f8185e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (15ms)
+    ✓ LayoutView;n=256 (52ms)
+    ✓ LayoutView;n=512 (79ms)
+    ✓ LayoutView;n=1024 (234ms)
+    ✓ LayoutView;n=2048 (958ms)
+    ✓ LayoutView;n=4096 (3365ms)
+    ✓ LayoutView;n=8192 (13603ms)
+    ✓ LayoutView;n=16384 (57694ms)
+    ✓ LayoutView;n=32768 (232590ms)
+    ✓ LayoutView;n=65536 (1148588ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (12ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (100ms)
+    ✓ LayoutSQL;n=1024 (334ms)
+    ✓ LayoutSQL;n=2048 (1201ms)
+    ✓ LayoutSQL;n=4096 (4609ms)
+    ✓ LayoutSQL;n=8192 (17997ms)
+    ✓ LayoutSQL;n=16384 (79337ms)
+    ✓ LayoutSQL;n=32768 (325266ms)
+    ✓ LayoutSQL;n=65536 (1278691ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..f6a4b9769e38545546322a43f632e8fb5753f76c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (233ms)
+    ✓ LayoutView;n=2048 (906ms)
+    ✓ LayoutView;n=4096 (3258ms)
+    ✓ LayoutView;n=8192 (12920ms)
+    ✓ LayoutView;n=16384 (56015ms)
+    ✓ LayoutView;n=32768 (227399ms)
+    ✓ LayoutView;n=65536 (1174972ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (35ms)
+    ✓ LayoutSQL;n=512 (106ms)
+    ✓ LayoutSQL;n=1024 (355ms)
+    ✓ LayoutSQL;n=2048 (1284ms)
+    ✓ LayoutSQL;n=4096 (4916ms)
+    ✓ LayoutSQL;n=8192 (19953ms)
+    ✓ LayoutSQL;n=16384 (84410ms)
+    ✓ LayoutSQL;n=32768 (320003ms)
+    ✓ LayoutSQL;n=65536 (1279810ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..76efe1d0577125829cf62f667ea51ea003349d5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (47ms)
+    ✓ LayoutView;n=512 (80ms)
+    ✓ LayoutView;n=1024 (246ms)
+    ✓ LayoutView;n=2048 (940ms)
+    ✓ LayoutView;n=4096 (3290ms)
+    ✓ LayoutView;n=8192 (13241ms)
+    ✓ LayoutView;n=16384 (59058ms)
+    ✓ LayoutView;n=32768 (237974ms)
+    ✓ LayoutView;n=65536 (1112523ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (93ms)
+    ✓ LayoutSQL;n=1024 (311ms)
+    ✓ LayoutSQL;n=2048 (1117ms)
+    ✓ LayoutSQL;n=4096 (4308ms)
+    ✓ LayoutSQL;n=8192 (17125ms)
+    ✓ LayoutSQL;n=16384 (73208ms)
+    ✓ LayoutSQL;n=32768 (320367ms)
+    ✓ LayoutSQL;n=65536 (1343925ms)
+
+
+  26 passing (53m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..d600194188178d0878842829d0330ec1dd2662c0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (7ms)
+    ✓ LayoutView;n=128 (19ms)
+    ✓ LayoutView;n=256 (51ms)
+    ✓ LayoutView;n=512 (82ms)
+    ✓ LayoutView;n=1024 (248ms)
+    ✓ LayoutView;n=2048 (958ms)
+    ✓ LayoutView;n=4096 (3433ms)
+    ✓ LayoutView;n=8192 (13788ms)
+    ✓ LayoutView;n=16384 (61286ms)
+    ✓ LayoutView;n=32768 (247737ms)
+    ✓ LayoutView;n=65536 (1144044ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (36ms)
+    ✓ LayoutSQL;n=512 (107ms)
+    ✓ LayoutSQL;n=1024 (366ms)
+    ✓ LayoutSQL;n=2048 (1206ms)
+    ✓ LayoutSQL;n=4096 (4913ms)
+    ✓ LayoutSQL;n=8192 (19457ms)
+    ✓ LayoutSQL;n=16384 (83539ms)
+    ✓ LayoutSQL;n=32768 (296309ms)
+    ✓ LayoutSQL;n=65536 (1269647ms)
+
+
+  26 passing (52m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..fc45ac0f0bd84b2af23ab1ef9fe03114b44b96bb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (15ms)
+    ✓ LayoutView;n=32 (4ms)
+    ✓ LayoutView;n=64 (6ms)
+    ✓ LayoutView;n=128 (14ms)
+    ✓ LayoutView;n=256 (44ms)
+    ✓ LayoutView;n=512 (73ms)
+    ✓ LayoutView;n=1024 (235ms)
+    ✓ LayoutView;n=2048 (911ms)
+    ✓ LayoutView;n=4096 (3276ms)
+    ✓ LayoutView;n=8192 (13164ms)
+    ✓ LayoutView;n=16384 (56206ms)
+    ✓ LayoutView;n=32768 (250617ms)
+    ✓ LayoutView;n=65536 (1123851ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (98ms)
+    ✓ LayoutSQL;n=1024 (331ms)
+    ✓ LayoutSQL;n=2048 (1233ms)
+    ✓ LayoutSQL;n=4096 (4732ms)
+    ✓ LayoutSQL;n=8192 (18326ms)
+    ✓ LayoutSQL;n=16384 (78783ms)
+    ✓ LayoutSQL;n=32768 (317774ms)
+    ✓ LayoutSQL;n=65536 (1382416ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-08/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..a0f9d43df7a7dc69d801310eeb9491c0707b9ba9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear2/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (17ms)
+    ✓ LayoutView;n=32 (5ms)
+    ✓ LayoutView;n=64 (5ms)
+    ✓ LayoutView;n=128 (13ms)
+    ✓ LayoutView;n=256 (48ms)
+    ✓ LayoutView;n=512 (81ms)
+    ✓ LayoutView;n=1024 (240ms)
+    ✓ LayoutView;n=2048 (927ms)
+    ✓ LayoutView;n=4096 (3231ms)
+    ✓ LayoutView;n=8192 (12986ms)
+    ✓ LayoutView;n=16384 (55043ms)
+    ✓ LayoutView;n=32768 (240205ms)
+    ✓ LayoutView;n=65536 (1174109ms)
+    ✓ LayoutSQL;n=16 (11ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (30ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (97ms)
+    ✓ LayoutSQL;n=1024 (325ms)
+    ✓ LayoutSQL;n=2048 (1163ms)
+    ✓ LayoutSQL;n=4096 (4383ms)
+    ✓ LayoutSQL;n=8192 (18110ms)
+    ✓ LayoutSQL;n=16384 (75211ms)
+    ✓ LayoutSQL;n=32768 (303653ms)
+    ✓ LayoutSQL;n=65536 (1326794ms)
+
+
+  26 passing (54m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d4eaece3a96940df5d2d508a0db5fc00704eb621
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 234.65
+Mediana        = 237
+Variancia      = 396.34
+Desvio Padrao  = 19.91
+Coef. Variacao = 0.08
+Min            = 200
+Max            = 286
+Esq, Dir.      = 227.3277 , 241.9723
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..94e829c79f28b9b2019e96cac98bd34ed55a4e7b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 235
+1024 228
+1024 251
+1024 252
+1024 232
+1024 238
+1024 286
+1024 242
+1024 227
+1024 243
+1024 251
+1024 200
+1024 241
+1024 243
+1024 205
+1024 236
+1024 200
+1024 223
+1024 241
+1024 219
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..272a9fedc30a10eac0e0f9e73897b9d564815665
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 661.05
+Mediana        = 673.5
+Variancia      = 7644.16
+Desvio Padrao  = 87.43
+Coef. Variacao = 0.13
+Min            = 456
+Max            = 812
+Esq, Dir.      = 628.8929 , 693.2071
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ea4251ac19c313994272d05ab06d530126728a1e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/1024-LayoutView.res
@@ -0,0 +1,20 @@
+1024 663
+1024 621
+1024 689
+1024 773
+1024 778
+1024 710
+1024 691
+1024 541
+1024 622
+1024 684
+1024 646
+1024 581
+1024 599
+1024 592
+1024 598
+1024 456
+1024 812
+1024 721
+1024 692
+1024 752
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9a74db0ff91bede851031f073293c691a8b2da76
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 19.65
+Mediana        = 18
+Variancia      = 12.45
+Desvio Padrao  = 3.53
+Coef. Variacao = 0.18
+Min            = 15
+Max            = 28
+Esq, Dir.      = 18.3522 , 20.9478
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..458a4461b3431598ce5fdf29d82329678ff0cd0b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 19
+128 24
+128 18
+128 18
+128 18
+128 28
+128 19
+128 23
+128 18
+128 15
+128 17
+128 17
+128 22
+128 16
+128 25
+128 21
+128 17
+128 17
+128 24
+128 17
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..00165ebc33d6fb752f6d34057672625ebd2a5fa9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 35.15
+Mediana        = 35
+Variancia      = 18.45
+Desvio Padrao  = 4.3
+Coef. Variacao = 0.12
+Min            = 28
+Max            = 43
+Esq, Dir.      = 33.5702 , 36.7298
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ab450dca2e4350b25ddac336411364589e4fc11d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/128-LayoutView.res
@@ -0,0 +1,20 @@
+128 38
+128 39
+128 40
+128 39
+128 39
+128 43
+128 32
+128 31
+128 38
+128 32
+128 31
+128 35
+128 41
+128 35
+128 37
+128 28
+128 31
+128 31
+128 32
+128 31
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..6add689841a2388384e6baaa1a097f5d626c8875
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.3
+Mediana        = 9
+Variancia      = 0.85
+Desvio Padrao  = 0.92
+Coef. Variacao = 0.1
+Min            = 8
+Max            = 12
+Esq, Dir.      = 8.9604 , 9.6396
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..00085190d28d7c70a2b4b2e11ae47bd02f8035d1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 10
+16 8
+16 9
+16 10
+16 9
+16 10
+16 10
+16 10
+16 9
+16 8
+16 9
+16 9
+16 9
+16 9
+16 10
+16 12
+16 8
+16 9
+16 9
+16 9
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..3677391460f81a5f8c60ff3ea9f3fa5be97fcc50
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 27.95
+Mediana        = 29
+Variancia      = 12.79
+Desvio Padrao  = 3.58
+Coef. Variacao = 0.13
+Min            = 22
+Max            = 33
+Esq, Dir.      = 26.6348 , 29.2652
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..ae4f3ccd092d9ae1b7c36c99634c1d6327070ce0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16-LayoutView.res
@@ -0,0 +1,20 @@
+16 30
+16 29
+16 31
+16 33
+16 32
+16 29
+16 30
+16 23
+16 31
+16 24
+16 29
+16 26
+16 31
+16 31
+16 25
+16 22
+16 30
+16 22
+16 28
+16 23
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..243e493c839bf418521f9058c28c9a205001aa2f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7161.3
+Mediana        = 7149
+Variancia      = 56241.8
+Desvio Padrao  = 237.15
+Coef. Variacao = 0.03
+Min            = 6833
+Max            = 7716
+Esq, Dir.      = 7074.0748 , 7248.5252
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5db0a2a7857fb84e50c2f3ee5fce79ff3e94bb79
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 7643
+16384 6837
+16384 7716
+16384 7127
+16384 7254
+16384 7131
+16384 6966
+16384 7343
+16384 7311
+16384 7231
+16384 6883
+16384 7289
+16384 7109
+16384 7227
+16384 7167
+16384 7215
+16384 6833
+16384 6919
+16384 7019
+16384 7006
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..9f6343b98b7b82c1bda94d49c26f386047edb6c7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 6553.45
+Mediana        = 6502
+Variancia      = 60017.31
+Desvio Padrao  = 244.98
+Coef. Variacao = 0.04
+Min            = 6195
+Max            = 7251
+Esq, Dir.      = 6463.3447 , 6643.5553
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..6ba7f3912d2e20244e199505046934945aeeaa25
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/16384-LayoutView.res
@@ -0,0 +1,20 @@
+16384 6720
+16384 6264
+16384 6508
+16384 6688
+16384 6643
+16384 6697
+16384 6643
+16384 7251
+16384 6496
+16384 6297
+16384 6431
+16384 6313
+16384 6388
+16384 6826
+16384 6754
+16384 6195
+16384 6685
+16384 6416
+16384 6377
+16384 6477
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4c4da15b772b2994fa828aba3569792f88d55618
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 846.35
+Mediana        = 855
+Variancia      = 9403.08
+Desvio Padrao  = 96.97
+Coef. Variacao = 0.11
+Min            = 709
+Max            = 1070
+Esq, Dir.      = 810.6846 , 882.0154
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..373a602ba67c789181c5aef09df05300ba60cedd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 878
+2048 920
+2048 985
+2048 905
+2048 760
+2048 782
+2048 1070
+2048 958
+2048 787
+2048 860
+2048 911
+2048 725
+2048 827
+2048 884
+2048 734
+2048 881
+2048 709
+2048 749
+2048 850
+2048 752
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..10e68a003739520bcaae77a24bd9bf70d07f9be0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 959.15
+Mediana        = 935
+Variancia      = 46454.66
+Desvio Padrao  = 215.53
+Coef. Variacao = 0.22
+Min            = 572
+Max            = 1549
+Esq, Dir.      = 879.8767 , 1038.4233
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..60b620c798194ea442b8ccb592618d6d75063abc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/2048-LayoutView.res
@@ -0,0 +1,20 @@
+2048 965
+2048 963
+2048 1351
+2048 1197
+2048 872
+2048 1549
+2048 853
+2048 978
+2048 912
+2048 1067
+2048 816
+2048 793
+2048 958
+2048 804
+2048 816
+2048 572
+2048 1052
+2048 912
+2048 766
+2048 987
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c9e9a88c2b232931cb1eca807815185215149b17
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 29.9
+Mediana        = 30
+Variancia      = 3.67
+Desvio Padrao  = 1.92
+Coef. Variacao = 0.06
+Min            = 26
+Max            = 33
+Esq, Dir.      = 29.195 , 30.605
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..40b6fcf956936e7acf973419fc6d44cf4a7b2988
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 32
+256 32
+256 31
+256 30
+256 29
+256 30
+256 29
+256 30
+256 33
+256 28
+256 32
+256 26
+256 27
+256 29
+256 30
+256 28
+256 29
+256 29
+256 33
+256 31
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..c2b945a548e25122b380437d5b2050bb3d7864fc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 84.9
+Mediana        = 84.5
+Variancia      = 87.99
+Desvio Padrao  = 9.38
+Coef. Variacao = 0.11
+Min            = 63
+Max            = 103
+Esq, Dir.      = 81.4499 , 88.3501
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..9509357c0c82ce38944353ccd488896ce18ebd70
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/256-LayoutView.res
@@ -0,0 +1,20 @@
+256 85
+256 88
+256 92
+256 87
+256 91
+256 103
+256 90
+256 102
+256 84
+256 80
+256 69
+256 76
+256 81
+256 80
+256 84
+256 63
+256 82
+256 84
+256 91
+256 86
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b44858702d0d80e00f9a5f866189cb3edab15e60
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.45
+Mediana        = 4
+Variancia      = 0.26
+Desvio Padrao  = 0.51
+Coef. Variacao = 0.11
+Min            = 4
+Max            = 5
+Esq, Dir.      = 4.2623 , 4.6377
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2dc8f22cea196c3641e8308d3a3e031b0c3408a4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..946b502f443f6e1658a4c158e1a0ac9cb9f205e8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 10.6
+Mediana        = 10.5
+Variancia      = 1.94
+Desvio Padrao  = 1.39
+Coef. Variacao = 0.13
+Min            = 9
+Max            = 14
+Esq, Dir.      = 10.0881 , 11.1119
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..76dd7a479452d006e73d9cead2893cc21ce3d67c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32-LayoutView.res
@@ -0,0 +1,20 @@
+32 11
+32 10
+32 12
+32 11
+32 11
+32 12
+32 9
+32 10
+32 11
+32 9
+32 10
+32 11
+32 11
+32 14
+32 13
+32 9
+32 10
+32 9
+32 9
+32 10
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..dcd33d009fe82da403d72ded0fb45b87cfd8295d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 32433.6
+Mediana        = 32153
+Variancia      = 2827801.62
+Desvio Padrao  = 1681.61
+Coef. Variacao = 0.05
+Min            = 30257
+Max            = 36051
+Esq, Dir.      = 31815.1042 , 33052.0958
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..0fa58ffbfed78caee04b19314e36eac0b3ffa0ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 34923
+32768 30588
+32768 36051
+32768 33411
+32768 32454
+32768 31126
+32768 34144
+32768 33671
+32768 30677
+32768 32922
+32768 31505
+32768 31483
+32768 32911
+32768 32329
+32768 30835
+32768 35112
+32768 30257
+32768 31977
+32768 30597
+32768 31699
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..1a0b427035a30fe23e644b642b5dfaf179540619
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 26544.25
+Mediana        = 26262.5
+Variancia      = 1921686.72
+Desvio Padrao  = 1386.25
+Coef. Variacao = 0.05
+Min            = 24397
+Max            = 30772
+Esq, Dir.      = 26034.3869 , 27054.1131
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4a3d4d264a5955e69a064bd174de4648f36aadc7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/32768-LayoutView.res
@@ -0,0 +1,20 @@
+32768 27053
+32768 24472
+32768 26269
+32768 27456
+32768 26880
+32768 27451
+32768 27721
+32768 30772
+32768 24864
+32768 24397
+32768 26123
+32768 25902
+32768 27392
+32768 25688
+32768 26213
+32768 26777
+32768 26256
+32768 26054
+32768 25904
+32768 27241
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..91b58dd1752e37a3830686308efef4abf22ab7bb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4246.95
+Mediana        = 4264
+Variancia      = 159723.31
+Desvio Padrao  = 399.65
+Coef. Variacao = 0.09
+Min            = 3588
+Max            = 5032
+Esq, Dir.      = 4099.9571 , 4393.9429
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..3ed043de6b2e35894cf3103e29c33f2718ee505a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 4825
+4096 4321
+4096 4542
+4096 4619
+4096 4276
+4096 4545
+4096 5032
+4096 4717
+4096 4348
+4096 4134
+4096 3827
+4096 3926
+4096 4162
+4096 4373
+4096 3588
+4096 4214
+4096 3607
+4096 3823
+4096 4252
+4096 3808
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2540ce4bf98274f692658747de20c317f47ecd0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 620.85
+Mediana        = 591
+Variancia      = 6747.19
+Desvio Padrao  = 82.14
+Coef. Variacao = 0.13
+Min            = 504
+Max            = 830
+Esq, Dir.      = 590.6384 , 651.0616
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..3e9d18b3817c6f8f44c9c3504491ec455173b5e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/4096-LayoutView.res
@@ -0,0 +1,20 @@
+4096 567
+4096 647
+4096 658
+4096 733
+4096 669
+4096 668
+4096 830
+4096 577
+4096 639
+4096 532
+4096 733
+4096 595
+4096 586
+4096 562
+4096 587
+4096 504
+4096 575
+4096 536
+4096 539
+4096 680
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..c8170617ee74d0b94e4181a85bf36112eb7b0c07
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 70.15
+Mediana        = 73.5
+Variancia      = 88.66
+Desvio Padrao  = 9.42
+Coef. Variacao = 0.13
+Min            = 55
+Max            = 86
+Esq, Dir.      = 66.6868 , 73.6132
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9cf12a65fcdd4caf051dfc3ecb7c7059dc426bf2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 79
+512 76
+512 60
+512 69
+512 64
+512 60
+512 79
+512 74
+512 80
+512 57
+512 78
+512 73
+512 55
+512 77
+512 75
+512 86
+512 72
+512 56
+512 74
+512 59
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..eecefbd9811c5ad6154346f815b89fb320b5ccdf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 195
+Mediana        = 193
+Variancia      = 924.63
+Desvio Padrao  = 30.41
+Coef. Variacao = 0.16
+Min            = 146
+Max            = 243
+Esq, Dir.      = 183.816 , 206.184
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..4a1710875df9a43253c5574d7bf57acb77397f17
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/512-LayoutView.res
@@ -0,0 +1,20 @@
+512 191
+512 189
+512 240
+512 233
+512 199
+512 195
+512 213
+512 152
+512 199
+512 216
+512 159
+512 184
+512 161
+512 191
+512 151
+512 146
+512 226
+512 228
+512 184
+512 243
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..d7acd36f218415454ab1a5555668b8286c3bf429
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 9.7
+Mediana        = 10
+Variancia      = 0.54
+Desvio Padrao  = 0.73
+Coef. Variacao = 0.08
+Min            = 8
+Max            = 11
+Esq, Dir.      = 9.4305 , 9.9695
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..65a33f480dd41c1822b66b396f20bb72abc6bae7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 11
+64 8
+64 9
+64 10
+64 9
+64 10
+64 10
+64 10
+64 10
+64 9
+64 10
+64 9
+64 10
+64 9
+64 11
+64 10
+64 10
+64 9
+64 10
+64 10
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..fdc061550d25677a4333512c76e2ef91b06f3f0a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 50.2
+Mediana        = 59.5
+Variancia      = 391.75
+Desvio Padrao  = 19.79
+Coef. Variacao = 0.39
+Min            = 16
+Max            = 69
+Esq, Dir.      = 42.9203 , 57.4797
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..eaacfe07514c0819bf6c35a51023719df85f97ca
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/64-LayoutView.res
@@ -0,0 +1,20 @@
+64 62
+64 59
+64 66
+64 66
+64 63
+64 22
+64 61
+64 17
+64 69
+64 16
+64 62
+64 57
+64 64
+64 59
+64 60
+64 48
+64 62
+64 17
+64 58
+64 16
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7f636579aed3005c5a8dce14c1b6ace0c5eb962c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 127136.45
+Mediana        = 126776.5
+Variancia      = 55304075.21
+Desvio Padrao  = 7436.67
+Coef. Variacao = 0.06
+Min            = 111629
+Max            = 141201
+Esq, Dir.      = 124401.2391 , 129871.6609
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..9d898fbc82d6532ca199c50f03c34ef8b1dafd81
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 140374
+65536 124516
+65536 137603
+65536 127577
+65536 125353
+65536 128814
+65536 119027
+65536 132492
+65536 141201
+65536 129261
+65536 121346
+65536 123533
+65536 121894
+65536 130831
+65536 126762
+65536 131723
+65536 126791
+65536 111629
+65536 124967
+65536 117035
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..e0f91c00127bd50771e5865bca4df1f0ae75599f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 114212.45
+Mediana        = 115348.5
+Variancia      = 92932348.89
+Desvio Padrao  = 9640.14
+Coef. Variacao = 0.08
+Min            = 101031
+Max            = 127250
+Esq, Dir.      = 110666.8012 , 117758.0988
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..2863695dc11ddd79678ea889c8bd00f139deae6f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/65536-LayoutView.res
@@ -0,0 +1,20 @@
+65536 115840
+65536 101031
+65536 103465
+65536 127250
+65536 117823
+65536 126925
+65536 123720
+65536 127090
+65536 106832
+65536 104544
+65536 102036
+65536 113884
+65536 125030
+65536 120914
+65536 117935
+65536 114857
+65536 105520
+65536 102895
+65536 123209
+65536 103449
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..38e4376f59cc543a88ad8c7d9a83d2ebfc6696ae
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2122.35
+Mediana        = 2116
+Variancia      = 2868.98
+Desvio Padrao  = 53.56
+Coef. Variacao = 0.03
+Min            = 2046
+Max            = 2255
+Esq, Dir.      = 2102.6496 , 2142.0504
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..715906dc890d4732717065d90e9a1db512176e5f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 2104
+8192 2046
+8192 2067
+8192 2124
+8192 2095
+8192 2152
+8192 2076
+8192 2255
+8192 2217
+8192 2144
+8192 2055
+8192 2105
+8192 2106
+8192 2136
+8192 2112
+8192 2158
+8192 2059
+8192 2133
+8192 2183
+8192 2120
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutV.R
new file mode 100644
index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutV.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 12 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.R
new file mode 100644
index 0000000000000000000000000000000000000000..45185fcb2d9b69471ea80bbba1a7415f58e64ab9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.R
@@ -0,0 +1,8 @@
+Media          = 1940.95
+Mediana        = 1902
+Variancia      = 22016.58
+Desvio Padrao  = 148.38
+Coef. Variacao = 0.08
+Min            = 1693
+Max            = 2321
+Esq, Dir.      = 1886.3758 , 1995.5242
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.res
new file mode 100644
index 0000000000000000000000000000000000000000..1d673aa699b47968fd2058d46c80c863a31cb125
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/8192-LayoutView.res
@@ -0,0 +1,20 @@
+8192 2241
+8192 1925
+8192 1870
+8192 1881
+8192 1908
+8192 1933
+8192 1932
+8192 2062
+8192 1903
+8192 1997
+8192 1842
+8192 1901
+8192 1824
+8192 1889
+8192 2321
+8192 1693
+8192 1899
+8192 1835
+8192 2138
+8192 1825
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..3f3019ea5aedc9c3e8b9634bb366723bfb24fefa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run1.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (62ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (69ms)
+    ✓ LayoutView;n=512 (159ms)
+    ✓ LayoutView;n=1024 (646ms)
+    ✓ LayoutView;n=2048 (816ms)
+    ✓ LayoutView;n=4096 (733ms)
+    ✓ LayoutView;n=8192 (1842ms)
+    ✓ LayoutView;n=16384 (6431ms)
+    ✓ LayoutView;n=32768 (26123ms)
+    ✓ LayoutView;n=65536 (102036ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (78ms)
+    ✓ LayoutSQL;n=1024 (251ms)
+    ✓ LayoutSQL;n=2048 (911ms)
+    ✓ LayoutSQL;n=4096 (3827ms)
+    ✓ LayoutSQL;n=8192 (2055ms)
+    ✓ LayoutSQL;n=16384 (6883ms)
+    ✓ LayoutSQL;n=32768 (31505ms)
+    ✓ LayoutSQL;n=65536 (121346ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..23808ae8fe616175f7dddd5cbbd9b49f3f1cd039
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run10.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (24ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (16ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (80ms)
+    ✓ LayoutView;n=512 (216ms)
+    ✓ LayoutView;n=1024 (684ms)
+    ✓ LayoutView;n=2048 (1067ms)
+    ✓ LayoutView;n=4096 (532ms)
+    ✓ LayoutView;n=8192 (1997ms)
+    ✓ LayoutView;n=16384 (6297ms)
+    ✓ LayoutView;n=32768 (24397ms)
+    ✓ LayoutView;n=65536 (104544ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (15ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (57ms)
+    ✓ LayoutSQL;n=1024 (243ms)
+    ✓ LayoutSQL;n=2048 (860ms)
+    ✓ LayoutSQL;n=4096 (4134ms)
+    ✓ LayoutSQL;n=8192 (2144ms)
+    ✓ LayoutSQL;n=16384 (7231ms)
+    ✓ LayoutSQL;n=32768 (32922ms)
+    ✓ LayoutSQL;n=65536 (129261ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..d889f47b64b1da5dc6a999d3bd4859dd1aa9143f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run11.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (16ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (86ms)
+    ✓ LayoutView;n=512 (243ms)
+    ✓ LayoutView;n=1024 (752ms)
+    ✓ LayoutView;n=2048 (987ms)
+    ✓ LayoutView;n=4096 (680ms)
+    ✓ LayoutView;n=8192 (1825ms)
+    ✓ LayoutView;n=16384 (6477ms)
+    ✓ LayoutView;n=32768 (27241ms)
+    ✓ LayoutView;n=65536 (103449ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (59ms)
+    ✓ LayoutSQL;n=1024 (219ms)
+    ✓ LayoutSQL;n=2048 (752ms)
+    ✓ LayoutSQL;n=4096 (3808ms)
+    ✓ LayoutSQL;n=8192 (2120ms)
+    ✓ LayoutSQL;n=16384 (7006ms)
+    ✓ LayoutSQL;n=32768 (31699ms)
+    ✓ LayoutSQL;n=65536 (117035ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..1786ee84d44cf572be01a1a6e4fa7d81567b9970
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run12.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (23ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (102ms)
+    ✓ LayoutView;n=512 (152ms)
+    ✓ LayoutView;n=1024 (541ms)
+    ✓ LayoutView;n=2048 (978ms)
+    ✓ LayoutView;n=4096 (577ms)
+    ✓ LayoutView;n=8192 (2062ms)
+    ✓ LayoutView;n=16384 (7251ms)
+    ✓ LayoutView;n=32768 (30772ms)
+    ✓ LayoutView;n=65536 (127090ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (23ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (242ms)
+    ✓ LayoutSQL;n=2048 (958ms)
+    ✓ LayoutSQL;n=4096 (4717ms)
+    ✓ LayoutSQL;n=8192 (2255ms)
+    ✓ LayoutSQL;n=16384 (7343ms)
+    ✓ LayoutSQL;n=32768 (33671ms)
+    ✓ LayoutSQL;n=65536 (132492ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..d51e4206fe3d953e5a7b065fcdefaee025ab5fe6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run13.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (22ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (48ms)
+    ✓ LayoutView;n=128 (28ms)
+    ✓ LayoutView;n=256 (63ms)
+    ✓ LayoutView;n=512 (146ms)
+    ✓ LayoutView;n=1024 (456ms)
+    ✓ LayoutView;n=2048 (572ms)
+    ✓ LayoutView;n=4096 (504ms)
+    ✓ LayoutView;n=8192 (1693ms)
+    ✓ LayoutView;n=16384 (6195ms)
+    ✓ LayoutView;n=32768 (26777ms)
+    ✓ LayoutView;n=65536 (114857ms)
+    ✓ LayoutSQL;n=16 (12ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (21ms)
+    ✓ LayoutSQL;n=256 (28ms)
+    ✓ LayoutSQL;n=512 (86ms)
+    ✓ LayoutSQL;n=1024 (236ms)
+    ✓ LayoutSQL;n=2048 (881ms)
+    ✓ LayoutSQL;n=4096 (4214ms)
+    ✓ LayoutSQL;n=8192 (2158ms)
+    ✓ LayoutSQL;n=16384 (7215ms)
+    ✓ LayoutSQL;n=32768 (35112ms)
+    ✓ LayoutSQL;n=65536 (131723ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..8a563aa1e21a207e471d7dc66e6eb098e4aafbbe
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run14.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (33ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (66ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (87ms)
+    ✓ LayoutView;n=512 (233ms)
+    ✓ LayoutView;n=1024 (773ms)
+    ✓ LayoutView;n=2048 (1197ms)
+    ✓ LayoutView;n=4096 (733ms)
+    ✓ LayoutView;n=8192 (1881ms)
+    ✓ LayoutView;n=16384 (6688ms)
+    ✓ LayoutView;n=32768 (27456ms)
+    ✓ LayoutView;n=65536 (127250ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (69ms)
+    ✓ LayoutSQL;n=1024 (252ms)
+    ✓ LayoutSQL;n=2048 (905ms)
+    ✓ LayoutSQL;n=4096 (4619ms)
+    ✓ LayoutSQL;n=8192 (2124ms)
+    ✓ LayoutSQL;n=16384 (7127ms)
+    ✓ LayoutSQL;n=32768 (33411ms)
+    ✓ LayoutSQL;n=65536 (127577ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..b6aa397e77fcbbf76219ca2d8cf1bf91bae0ac1f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run15.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (61ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (90ms)
+    ✓ LayoutView;n=512 (213ms)
+    ✓ LayoutView;n=1024 (691ms)
+    ✓ LayoutView;n=2048 (853ms)
+    ✓ LayoutView;n=4096 (830ms)
+    ✓ LayoutView;n=8192 (1932ms)
+    ✓ LayoutView;n=16384 (6643ms)
+    ✓ LayoutView;n=32768 (27721ms)
+    ✓ LayoutView;n=65536 (123720ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (79ms)
+    ✓ LayoutSQL;n=1024 (286ms)
+    ✓ LayoutSQL;n=2048 (1070ms)
+    ✓ LayoutSQL;n=4096 (5032ms)
+    ✓ LayoutSQL;n=8192 (2076ms)
+    ✓ LayoutSQL;n=16384 (6966ms)
+    ✓ LayoutSQL;n=32768 (34144ms)
+    ✓ LayoutSQL;n=65536 (119027ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..6342c4a85ebf123df6fdd880db170199ced74784
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run16.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (28ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (58ms)
+    ✓ LayoutView;n=128 (32ms)
+    ✓ LayoutView;n=256 (91ms)
+    ✓ LayoutView;n=512 (184ms)
+    ✓ LayoutView;n=1024 (692ms)
+    ✓ LayoutView;n=2048 (766ms)
+    ✓ LayoutView;n=4096 (539ms)
+    ✓ LayoutView;n=8192 (2138ms)
+    ✓ LayoutView;n=16384 (6377ms)
+    ✓ LayoutView;n=32768 (25904ms)
+    ✓ LayoutView;n=65536 (123209ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (74ms)
+    ✓ LayoutSQL;n=1024 (241ms)
+    ✓ LayoutSQL;n=2048 (850ms)
+    ✓ LayoutSQL;n=4096 (4252ms)
+    ✓ LayoutSQL;n=8192 (2183ms)
+    ✓ LayoutSQL;n=16384 (7019ms)
+    ✓ LayoutSQL;n=32768 (30597ms)
+    ✓ LayoutSQL;n=65536 (124967ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..c06e9428543d8b9cf7b182d8d5ffda88c8e5b9f4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run17.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (26ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (57ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (76ms)
+    ✓ LayoutView;n=512 (184ms)
+    ✓ LayoutView;n=1024 (581ms)
+    ✓ LayoutView;n=2048 (793ms)
+    ✓ LayoutView;n=4096 (595ms)
+    ✓ LayoutView;n=8192 (1901ms)
+    ✓ LayoutView;n=16384 (6313ms)
+    ✓ LayoutView;n=32768 (25902ms)
+    ✓ LayoutView;n=65536 (113884ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (26ms)
+    ✓ LayoutSQL;n=512 (73ms)
+    ✓ LayoutSQL;n=1024 (200ms)
+    ✓ LayoutSQL;n=2048 (725ms)
+    ✓ LayoutSQL;n=4096 (3926ms)
+    ✓ LayoutSQL;n=8192 (2105ms)
+    ✓ LayoutSQL;n=16384 (7289ms)
+    ✓ LayoutSQL;n=32768 (31483ms)
+    ✓ LayoutSQL;n=65536 (123533ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..1d7568c24971934e789ba918d189164e78fe227c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run18.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (22ms)
+    ✓ LayoutView;n=32 (9ms)
+    ✓ LayoutView;n=64 (17ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (228ms)
+    ✓ LayoutView;n=1024 (721ms)
+    ✓ LayoutView;n=2048 (912ms)
+    ✓ LayoutView;n=4096 (536ms)
+    ✓ LayoutView;n=8192 (1835ms)
+    ✓ LayoutView;n=16384 (6416ms)
+    ✓ LayoutView;n=32768 (26054ms)
+    ✓ LayoutView;n=65536 (102895ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (56ms)
+    ✓ LayoutSQL;n=1024 (223ms)
+    ✓ LayoutSQL;n=2048 (749ms)
+    ✓ LayoutSQL;n=4096 (3823ms)
+    ✓ LayoutSQL;n=8192 (2133ms)
+    ✓ LayoutSQL;n=16384 (6919ms)
+    ✓ LayoutSQL;n=32768 (31977ms)
+    ✓ LayoutSQL;n=65536 (111629ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..477b4c8f24c637c9317b3b13623458d556b348af
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run19.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (62ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (85ms)
+    ✓ LayoutView;n=512 (191ms)
+    ✓ LayoutView;n=1024 (663ms)
+    ✓ LayoutView;n=2048 (965ms)
+    ✓ LayoutView;n=4096 (567ms)
+    ✓ LayoutView;n=8192 (2241ms)
+    ✓ LayoutView;n=16384 (6720ms)
+    ✓ LayoutView;n=32768 (27053ms)
+    ✓ LayoutView;n=65536 (115840ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (19ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (79ms)
+    ✓ LayoutSQL;n=1024 (235ms)
+    ✓ LayoutSQL;n=2048 (878ms)
+    ✓ LayoutSQL;n=4096 (4825ms)
+    ✓ LayoutSQL;n=8192 (2104ms)
+    ✓ LayoutSQL;n=16384 (7643ms)
+    ✓ LayoutSQL;n=32768 (34923ms)
+    ✓ LayoutSQL;n=65536 (140374ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..bc0e113d0dcee26a85dba5f5619e2d75f50644dd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run2.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (66ms)
+    ✓ LayoutView;n=128 (40ms)
+    ✓ LayoutView;n=256 (92ms)
+    ✓ LayoutView;n=512 (240ms)
+    ✓ LayoutView;n=1024 (689ms)
+    ✓ LayoutView;n=2048 (1351ms)
+    ✓ LayoutView;n=4096 (658ms)
+    ✓ LayoutView;n=8192 (1870ms)
+    ✓ LayoutView;n=16384 (6508ms)
+    ✓ LayoutView;n=32768 (26269ms)
+    ✓ LayoutView;n=65536 (103465ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (251ms)
+    ✓ LayoutSQL;n=2048 (985ms)
+    ✓ LayoutSQL;n=4096 (4542ms)
+    ✓ LayoutSQL;n=8192 (2067ms)
+    ✓ LayoutSQL;n=16384 (7716ms)
+    ✓ LayoutSQL;n=32768 (36051ms)
+    ✓ LayoutSQL;n=65536 (137603ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..9200d5f18462f417236f6f90255526d1a16c0b13
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run20.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (59ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (88ms)
+    ✓ LayoutView;n=512 (189ms)
+    ✓ LayoutView;n=1024 (621ms)
+    ✓ LayoutView;n=2048 (963ms)
+    ✓ LayoutView;n=4096 (647ms)
+    ✓ LayoutView;n=8192 (1925ms)
+    ✓ LayoutView;n=16384 (6264ms)
+    ✓ LayoutView;n=32768 (24472ms)
+    ✓ LayoutView;n=65536 (101031ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (24ms)
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (76ms)
+    ✓ LayoutSQL;n=1024 (228ms)
+    ✓ LayoutSQL;n=2048 (920ms)
+    ✓ LayoutSQL;n=4096 (4321ms)
+    ✓ LayoutSQL;n=8192 (2046ms)
+    ✓ LayoutSQL;n=16384 (6837ms)
+    ✓ LayoutSQL;n=32768 (30588ms)
+    ✓ LayoutSQL;n=65536 (124516ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..04f06443277fe576bd0e9cd1bab43b57d7905251
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run3.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (30ms)
+    ✓ LayoutView;n=32 (10ms)
+    ✓ LayoutView;n=64 (62ms)
+    ✓ LayoutView;n=128 (31ms)
+    ✓ LayoutView;n=256 (82ms)
+    ✓ LayoutView;n=512 (226ms)
+    ✓ LayoutView;n=1024 (812ms)
+    ✓ LayoutView;n=2048 (1052ms)
+    ✓ LayoutView;n=4096 (575ms)
+    ✓ LayoutView;n=8192 (1899ms)
+    ✓ LayoutView;n=16384 (6685ms)
+    ✓ LayoutView;n=32768 (26256ms)
+    ✓ LayoutView;n=65536 (105520ms)
+    ✓ LayoutSQL;n=16 (8ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (17ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (72ms)
+    ✓ LayoutSQL;n=1024 (200ms)
+    ✓ LayoutSQL;n=2048 (709ms)
+    ✓ LayoutSQL;n=4096 (3607ms)
+    ✓ LayoutSQL;n=8192 (2059ms)
+    ✓ LayoutSQL;n=16384 (6833ms)
+    ✓ LayoutSQL;n=32768 (30257ms)
+    ✓ LayoutSQL;n=65536 (126791ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..38475b8e145a9bc79d4dd9a7a8de4b2f2aef233b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run4.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (25ms)
+    ✓ LayoutView;n=32 (13ms)
+    ✓ LayoutView;n=64 (60ms)
+    ✓ LayoutView;n=128 (37ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (151ms)
+    ✓ LayoutView;n=1024 (598ms)
+    ✓ LayoutView;n=2048 (816ms)
+    ✓ LayoutView;n=4096 (587ms)
+    ✓ LayoutView;n=8192 (2321ms)
+    ✓ LayoutView;n=16384 (6754ms)
+    ✓ LayoutView;n=32768 (26213ms)
+    ✓ LayoutView;n=65536 (117935ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (25ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (75ms)
+    ✓ LayoutSQL;n=1024 (205ms)
+    ✓ LayoutSQL;n=2048 (734ms)
+    ✓ LayoutSQL;n=4096 (3588ms)
+    ✓ LayoutSQL;n=8192 (2112ms)
+    ✓ LayoutSQL;n=16384 (7167ms)
+    ✓ LayoutSQL;n=32768 (30835ms)
+    ✓ LayoutSQL;n=65536 (126762ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..b06f3ccab75116efe20825eb2a748897a6c2e3da
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run5.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (32ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (63ms)
+    ✓ LayoutView;n=128 (39ms)
+    ✓ LayoutView;n=256 (91ms)
+    ✓ LayoutView;n=512 (199ms)
+    ✓ LayoutView;n=1024 (778ms)
+    ✓ LayoutView;n=2048 (872ms)
+    ✓ LayoutView;n=4096 (669ms)
+    ✓ LayoutView;n=8192 (1908ms)
+    ✓ LayoutView;n=16384 (6643ms)
+    ✓ LayoutView;n=32768 (26880ms)
+    ✓ LayoutView;n=65536 (117823ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (64ms)
+    ✓ LayoutSQL;n=1024 (232ms)
+    ✓ LayoutSQL;n=2048 (760ms)
+    ✓ LayoutSQL;n=4096 (4276ms)
+    ✓ LayoutSQL;n=8192 (2095ms)
+    ✓ LayoutSQL;n=16384 (7254ms)
+    ✓ LayoutSQL;n=32768 (32454ms)
+    ✓ LayoutSQL;n=65536 (125353ms)
+
+
+  26 passing (5m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..1082f018962a9008d35b07059710113db112de5c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run6.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (29ms)
+    ✓ LayoutView;n=32 (12ms)
+    ✓ LayoutView;n=64 (22ms)
+    ✓ LayoutView;n=128 (43ms)
+    ✓ LayoutView;n=256 (103ms)
+    ✓ LayoutView;n=512 (195ms)
+    ✓ LayoutView;n=1024 (710ms)
+    ✓ LayoutView;n=2048 (1549ms)
+    ✓ LayoutView;n=4096 (668ms)
+    ✓ LayoutView;n=8192 (1933ms)
+    ✓ LayoutView;n=16384 (6697ms)
+    ✓ LayoutView;n=32768 (27451ms)
+    ✓ LayoutView;n=65536 (126925ms)
+    ✓ LayoutSQL;n=16 (10ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (28ms)
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (60ms)
+    ✓ LayoutSQL;n=1024 (238ms)
+    ✓ LayoutSQL;n=2048 (782ms)
+    ✓ LayoutSQL;n=4096 (4545ms)
+    ✓ LayoutSQL;n=8192 (2152ms)
+    ✓ LayoutSQL;n=16384 (7131ms)
+    ✓ LayoutSQL;n=32768 (31126ms)
+    ✓ LayoutSQL;n=65536 (128814ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..66c933205a3a015289313c0aed1b3b75df8feb1d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run7.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (64ms)
+    ✓ LayoutView;n=128 (41ms)
+    ✓ LayoutView;n=256 (81ms)
+    ✓ LayoutView;n=512 (161ms)
+    ✓ LayoutView;n=1024 (599ms)
+    ✓ LayoutView;n=2048 (958ms)
+    ✓ LayoutView;n=4096 (586ms)
+    ✓ LayoutView;n=8192 (1824ms)
+    ✓ LayoutView;n=16384 (6388ms)
+    ✓ LayoutView;n=32768 (27392ms)
+    ✓ LayoutView;n=65536 (125030ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (22ms)
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (55ms)
+    ✓ LayoutSQL;n=1024 (241ms)
+    ✓ LayoutSQL;n=2048 (827ms)
+    ✓ LayoutSQL;n=4096 (4162ms)
+    ✓ LayoutSQL;n=8192 (2106ms)
+    ✓ LayoutSQL;n=16384 (7109ms)
+    ✓ LayoutSQL;n=32768 (32911ms)
+    ✓ LayoutSQL;n=65536 (121894ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..be51b22bffd98bfc8221ff696bcbe1f4e6e7822b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run8.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (11ms)
+    ✓ LayoutView;n=64 (69ms)
+    ✓ LayoutView;n=128 (38ms)
+    ✓ LayoutView;n=256 (84ms)
+    ✓ LayoutView;n=512 (199ms)
+    ✓ LayoutView;n=1024 (622ms)
+    ✓ LayoutView;n=2048 (912ms)
+    ✓ LayoutView;n=4096 (639ms)
+    ✓ LayoutView;n=8192 (1903ms)
+    ✓ LayoutView;n=16384 (6496ms)
+    ✓ LayoutView;n=32768 (24864ms)
+    ✓ LayoutView;n=65536 (106832ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (10ms)
+    ✓ LayoutSQL;n=128 (18ms)
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (80ms)
+    ✓ LayoutSQL;n=1024 (227ms)
+    ✓ LayoutSQL;n=2048 (787ms)
+    ✓ LayoutSQL;n=4096 (4348ms)
+    ✓ LayoutSQL;n=8192 (2217ms)
+    ✓ LayoutSQL;n=16384 (7311ms)
+    ✓ LayoutSQL;n=32768 (30677ms)
+    ✓ LayoutSQL;n=65536 (141201ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-08/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..d1cba463cf9e9877139045c87e454d96deafcc96
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear4/run9.test
@@ -0,0 +1,44 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutView;n=16 (31ms)
+    ✓ LayoutView;n=32 (14ms)
+    ✓ LayoutView;n=64 (59ms)
+    ✓ LayoutView;n=128 (35ms)
+    ✓ LayoutView;n=256 (80ms)
+    ✓ LayoutView;n=512 (191ms)
+    ✓ LayoutView;n=1024 (592ms)
+    ✓ LayoutView;n=2048 (804ms)
+    ✓ LayoutView;n=4096 (562ms)
+    ✓ LayoutView;n=8192 (1889ms)
+    ✓ LayoutView;n=16384 (6826ms)
+    ✓ LayoutView;n=32768 (25688ms)
+    ✓ LayoutView;n=65536 (120914ms)
+    ✓ LayoutSQL;n=16 (9ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (9ms)
+    ✓ LayoutSQL;n=128 (16ms)
+    ✓ LayoutSQL;n=256 (29ms)
+    ✓ LayoutSQL;n=512 (77ms)
+    ✓ LayoutSQL;n=1024 (243ms)
+    ✓ LayoutSQL;n=2048 (884ms)
+    ✓ LayoutSQL;n=4096 (4373ms)
+    ✓ LayoutSQL;n=8192 (2136ms)
+    ✓ LayoutSQL;n=16384 (7227ms)
+    ✓ LayoutSQL;n=32768 (32329ms)
+    ✓ LayoutSQL;n=65536 (130831ms)
+
+
+  26 passing (6m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-Layout.R
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-Layout.R
@@ -0,0 +1,4 @@
+Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
+  line 2 did not have 11 elements
+Calls: read.table -> scan
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..9fdac1503b084057f6699a2bf580c26261854bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92783 ms: Mark-sweep 1322.4 (1434.7) -> 1320.8 (1434.7) MB, 5735.7 / 0.0 ms [allocation failure] [GC in old space requested].
+   98937 ms: Mark-sweep 1320.8 (1434.7) -> 1320.8 (1434.7) MB, 6153.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  104717 ms: Mark-sweep 1320.8 (1434.7) -> 1326.3 (1416.7) MB, 5779.3 / 0.0 ms [last resort gc].
+  110649 ms: Mark-sweep 1326.3 (1416.7) -> 1332.0 (1416.7) MB, 5932.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1c6d4a4cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3a185eaa1707] (this=0x2116c7b07ab9 <a Graph with map 0x243aaee840b1>,idV=0x1fb8a4f5dd61 <String[9]: dim:12882>,idU=0x1fb8a4f81f29 <String[9]: dim:12883>,value=0x28a60c319229 <a View with map 0x243aaee86d09>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3a185ea85735] (this=0x2116c7b07ab9 <a Graph with map 0x243aaee84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3a185e1079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..257cd91facc7484bd8a5d8709880ff931c2f7cc3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   88915 ms: Mark-sweep 1323.9 (1436.7) -> 1322.2 (1436.7) MB, 4538.0 / 0.0 ms [allocation failure] [GC in old space requested].
+   95275 ms: Mark-sweep 1322.2 (1436.7) -> 1322.2 (1436.7) MB, 6359.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  102098 ms: Mark-sweep 1322.2 (1436.7) -> 1326.5 (1413.7) MB, 6821.9 / 0.0 ms [last resort gc].
+  109522 ms: Mark-sweep 1326.5 (1413.7) -> 1331.0 (1413.7) MB, 7423.7 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x153e696cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x274887db8207] (this=0xbeb81afd281 <a Graph with map 0x2ac30ef84689>,idV=0x3c0e1e25b3a9 <String[9]: dim:13095>,idU=0x3c0e1e29d3f1 <String[9]: dim:13096>,value=0x3fb7a0416f79 <a View with map 0x2ac30ef872e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x274887d9c5f5] (this=0xbeb81afd281 <a Graph with map 0x2ac30ef8468...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2748874079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..b966d0c3f966e3ead08c499e9c82d5252c74120a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94578 ms: Mark-sweep 1323.8 (1436.7) -> 1322.1 (1436.7) MB, 6729.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  101525 ms: Mark-sweep 1322.1 (1436.7) -> 1322.1 (1436.7) MB, 6946.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  107120 ms: Mark-sweep 1322.1 (1436.7) -> 1326.5 (1413.7) MB, 5594.8 / 0.0 ms [last resort gc].
+  113522 ms: Mark-sweep 1326.5 (1413.7) -> 1331.0 (1413.7) MB, 6401.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x3803f34cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x22efe42f2f67] (this=0x1d4871c07039 <a Graph with map 0x1124c3984109>,idV=0xe88409aa3f1 <String[9]: dim:13088>,idU=0xe88409598f9 <String[9]: dim:13094>,value=0xa9a2e01c7e9 <a View with map 0x1124c3986d61>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x22efe42d6f95] (this=0x1d4871c07039 <a Graph with map 0x1124c3984109...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x22efe39079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..78d8f76bdafe2f7af57fd111ec0a690d6f2285ce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  124923 ms: Mark-sweep 1333.9 (1416.7) -> 1333.9 (1430.7) MB, 5391.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  129731 ms: Mark-sweep 1333.9 (1430.7) -> 1333.9 (1430.7) MB, 4807.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  134531 ms: Mark-sweep 1333.9 (1430.7) -> 1338.8 (1416.7) MB, 4799.2 / 0.0 ms [last resort gc].
+  139457 ms: Mark-sweep 1338.8 (1416.7) -> 1343.6 (1416.7) MB, 4926.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x392bb80cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xc9d794a9aba] (this=0x2bb93881cb31 <a Graph with map 0xafeffe84581>,idV=0x1526af0cb01 <String[9]: dim:13406>,idU=0xff0cefe9b11 <String[9]: dim:13408>,value=0xb48cb46ff19 <a View with map 0xafeffe871d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xc9d7948f535] (this=0x2bb93881cb31 <a Graph with map 0xafeffe84581>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xc9d78b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..b87cb95d3f19950fcdbcd7f4387deb20108ede92
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   99607 ms: Mark-sweep 1320.4 (1434.7) -> 1320.3 (1434.7) MB, 7830.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  107291 ms: Mark-sweep 1320.3 (1434.7) -> 1320.3 (1434.7) MB, 7683.6 / 0.0 ms [allocation failure] [GC in old space requested].
+  113235 ms: Mark-sweep 1320.3 (1434.7) -> 1325.2 (1414.7) MB, 5943.0 / 0.0 ms [last resort gc].
+  117436 ms: Mark-sweep 1325.2 (1414.7) -> 1330.3 (1413.7) MB, 4201.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x20de608cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c3c98f2587] (this=0x15f97910b821 <a Graph with map 0x3d7bdad84581>,idV=0x304190e73ea1 <String[9]: dim:12815>,idU=0x304190e7f899 <String[9]: dim:12816>,value=0x78ebf21b899 <a View with map 0x3d7bdad871d9>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c3c98ce6b5] (this=0x15f97910b821 <a Graph with map 0x3d7bdad84581...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3c3c8f079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..5adcbe8f70f25150c2ec942a4dd2704dedf56f08
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  123436 ms: Mark-sweep 1329.2 (1422.7) -> 1329.2 (1422.7) MB, 5114.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  127698 ms: Mark-sweep 1329.2 (1422.7) -> 1329.2 (1434.7) MB, 4262.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  132827 ms: Mark-sweep 1329.2 (1434.7) -> 1335.5 (1411.7) MB, 5128.7 / 0.0 ms [last resort gc].
+  138622 ms: Mark-sweep 1335.5 (1411.7) -> 1341.8 (1411.7) MB, 5794.6 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x68cd7ecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2870591619e7] (this=0x10da0073669 <a Graph with map 0xcbb85e843c9>,idV=0x2cd256b656f1 <String[9]: dim:12325>,idU=0x2cd256b60379 <String[9]: dim:12329>,value=0x3c38d57f5fe9 <a View with map 0xcbb85e87021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x287059147575] (this=0x10da0073669 <a Graph with map 0xcbb85e843c9>,v...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2870587079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..435876759678966d90d26cb77c954dbb2f6a4afa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  108972 ms: Mark-sweep 1333.5 (1414.7) -> 1333.5 (1423.7) MB, 5156.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  113431 ms: Mark-sweep 1333.5 (1423.7) -> 1333.5 (1423.7) MB, 4458.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  117709 ms: Mark-sweep 1333.5 (1423.7) -> 1339.1 (1414.7) MB, 4277.6 / 0.0 ms [last resort gc].
+  123176 ms: Mark-sweep 1339.1 (1414.7) -> 1344.6 (1414.7) MB, 5467.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xf35fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x383f3e8b2f58] (this=0x3fff5e8ca8e1 <a Graph with map 0x6035f1840b1>,idV=0xb03e01a7151 <String[9]: dim:13146>,idU=0xb03e016f4d1 <String[9]: dim:13150>,value=0x38b6f42e1581 <a View with map 0x6035f186d09>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x383f3e890775] (this=0x3fff5e8ca8e1 <a Graph with map 0x6035f1840b1>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x383f3df079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..604735ebb5cb68400a1306d11c91aeea26c613f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   92032 ms: Mark-sweep 1330.8 (1434.7) -> 1323.0 (1434.7) MB, 5948.8 / 0.0 ms [allocation failure] [GC in old space requested].
+   98575 ms: Mark-sweep 1323.0 (1434.7) -> 1323.0 (1434.7) MB, 6542.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  104936 ms: Mark-sweep 1323.0 (1434.7) -> 1328.4 (1416.7) MB, 6359.7 / 0.0 ms [last resort gc].
+  111209 ms: Mark-sweep 1328.4 (1416.7) -> 1334.0 (1416.7) MB, 6272.8 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x104ecdfcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2db7542a8127] (this=0x261742b32b49 <a Graph with map 0x2f3efc484001>,idV=0x3ece6511fa9 <String[9]: dim:13188>,idU=0x3ece651f169 <String[9]: dim:13192>,value=0xb6087d81a39 <a View with map 0x2f3efc486c59>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2db754291555] (this=0x261742b32b49 <a Graph with map 0x2f3efc484001...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2db7539079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..331c4fca9c95bd101631230508589cd3c6d789a4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94717 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 7809.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  100633 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 5915.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  106994 ms: Mark-sweep 1324.5 (1434.7) -> 1329.8 (1416.7) MB, 6360.0 / 0.0 ms [last resort gc].
+  114260 ms: Mark-sweep 1329.8 (1416.7) -> 1335.3 (1416.7) MB, 7266.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1413ec3cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x25ef92ec92c7] (this=0xf2f9b6e4651 <a Graph with map 0x34c24a984739>,idV=0x6be4bae4221 <String[9]: dim:13402>,idU=0x6be4ba383f1 <String[9]: dim:13403>,value=0x133aec171b71 <a View with map 0x34c24a987391>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x25ef92eb0a75] (this=0xf2f9b6e4651 <a Graph with map 0x34c24a984739>...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x25ef925079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..eb6cc88c9fe10b9da617e9eeaa748516fbb5b927
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   96287 ms: Mark-sweep 1323.9 (1437.7) -> 1322.2 (1437.7) MB, 6157.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  101823 ms: Mark-sweep 1322.2 (1437.7) -> 1322.2 (1437.7) MB, 5535.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  107544 ms: Mark-sweep 1322.2 (1437.7) -> 1327.7 (1414.7) MB, 5720.4 / 0.0 ms [last resort gc].
+  112474 ms: Mark-sweep 1327.7 (1414.7) -> 1333.4 (1414.7) MB, 4929.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xd2cc5fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1fae67fbe3d8] (this=0x28caee4f1cb9 <a Graph with map 0x70e76584269>,idV=0x2cf74bf4cc51 <String[9]: dim:13101>,idU=0x2cf74bfd3a31 <String[9]: dim:13103>,value=0x802f510ba01 <a View with map 0x70e76586ec1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1fae67fa1fd5] (this=0x28caee4f1cb9 <a Graph with map 0x70e76584269>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x1fae676079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..a13fc2122742a3fbfb81130ab8b0ca31c31f7e15
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   85877 ms: Mark-sweep 1323.9 (1436.7) -> 1322.2 (1436.7) MB, 6627.3 / 0.0 ms [allocation failure] [GC in old space requested].
+   93276 ms: Mark-sweep 1322.2 (1436.7) -> 1322.2 (1436.7) MB, 7397.9 / 0.0 ms [allocation failure] [GC in old space requested].
+   97885 ms: Mark-sweep 1322.2 (1436.7) -> 1326.0 (1413.7) MB, 4608.6 / 0.0 ms [last resort gc].
+  104014 ms: Mark-sweep 1326.0 (1413.7) -> 1330.0 (1413.7) MB, 6128.5 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xc16d4fcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x6dca5d6ce7] (this=0x1e107a1faa69 <a Graph with map 0xddbf25843c9>,idV=0x241b90ac3851 <String[9]: dim:13091>,idU=0x241b90ac8069 <String[9]: dim:13095>,value=0x3be257814701 <a View with map 0xddbf2587021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x6dca5bbaf5] (this=0x1e107a1faa69 <a Graph with map 0xddbf25843c9>,vie...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x6dc9c079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..518ca8edb845df1a56aeb39ee68b19d7a0e7774d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   99920 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 6309.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  107363 ms: Mark-sweep 1324.5 (1434.7) -> 1324.4 (1434.7) MB, 7442.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  114051 ms: Mark-sweep 1324.4 (1434.7) -> 1330.3 (1416.7) MB, 6687.1 / 0.0 ms [last resort gc].
+  120670 ms: Mark-sweep 1330.3 (1416.7) -> 1336.2 (1416.7) MB, 6619.2 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xe8a656cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xd61214d4227] (this=0xdfb247d09d9 <a Graph with map 0x200d2fa84269>,idV=0xf11242d13b9 <String[9]: dim:13391>,idU=0xf1124235b39 <String[9]: dim:13392>,value=0x1a4ab7a71941 <a View with map 0x200d2fa86ec1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xd61214bae35] (this=0xdfb247d09d9 <a Graph with map 0x200d2fa84269>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0xd6120b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..8720fb20dbd7ab2dce6dc3200362db1008455062
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   97526 ms: Mark-sweep 1322.6 (1434.7) -> 1322.6 (1434.7) MB, 6980.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  104929 ms: Mark-sweep 1322.6 (1434.7) -> 1322.5 (1434.7) MB, 7403.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  111079 ms: Mark-sweep 1322.5 (1434.7) -> 1326.7 (1415.7) MB, 6148.9 / 0.0 ms [last resort gc].
+  117621 ms: Mark-sweep 1326.7 (1415.7) -> 1330.9 (1415.7) MB, 6541.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x21e3d97cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x19f7bb4c8658] (this=0x223e0c3eee49 <a Graph with map 0x21136aa84319>,idV=0x2074e3d302b9 <String[9]: dim:13146>,idU=0x2074e3dad801 <String[9]: dim:13148>,value=0x21048de09931 <a View with map 0x21136aa86f71>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x19f7bb4ac835] (this=0x223e0c3eee49 <a Graph with map 0x21136aa84...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x19f7bab079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..89b112d4f7b5c0a342bcfeef205fa274aa643916
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94356 ms: Mark-sweep 1324.0 (1436.7) -> 1322.2 (1436.7) MB, 6508.0 / 0.0 ms [allocation failure] [GC in old space requested].
+  101434 ms: Mark-sweep 1322.2 (1436.7) -> 1322.2 (1436.7) MB, 7078.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  109487 ms: Mark-sweep 1322.2 (1436.7) -> 1326.8 (1413.7) MB, 8052.3 / 0.0 ms [last resort gc].
+  115396 ms: Mark-sweep 1326.8 (1413.7) -> 1331.6 (1413.7) MB, 5909.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1629dbecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2985439b2887] (this=0x3e946deef239 <a Graph with map 0x127d33884421>,idV=0x3f6785b2d11 <String[9]: dim:13103>,idU=0x3f678535259 <String[9]: dim:13104>,value=0x181083e092a1 <a View with map 0x127d33887079>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x298543999eb5] (this=0x3e946deef239 <a Graph with map 0x127d3388442...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2985430079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..cc6bb43c45a54f4fd5c66507829eff3117a0a66c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   98619 ms: Mark-sweep 1324.4 (1434.7) -> 1324.4 (1434.7) MB, 6332.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  104641 ms: Mark-sweep 1324.4 (1434.7) -> 1324.3 (1434.7) MB, 6020.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  110676 ms: Mark-sweep 1324.3 (1434.7) -> 1330.2 (1416.7) MB, 6034.9 / 0.0 ms [last resort gc].
+  116134 ms: Mark-sweep 1330.2 (1416.7) -> 1336.1 (1416.7) MB, 5457.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x333d9bccf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x388e408c2c9a] (this=0x32f5806ff6f9 <a Graph with map 0x32c83b2843c9>,idV=0x1965904971b9 <String[9]: dim:13396>,idU=0x196590442581 <String[9]: dim:13397>,value=0x38bee94aa799 <a View with map 0x32c83b287021>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x388e408abd75] (this=0x32f5806ff6f9 <a Graph with map 0x32c83b284...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x388e3ff079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..e8587891f1d89a3552c6772d30beb26747dda8dc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run5.test
@@ -0,0 +1,41 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   91088 ms: Mark-sweep 1325.0 (1434.7) -> 1318.9 (1434.7) MB, 5930.6 / 0.0 ms [allocation failure] [GC in old space requested].
+   97934 ms: Mark-sweep 1318.9 (1434.7) -> 1318.9 (1434.7) MB, 6846.3 / 0.0 ms [allocation failure] [GC in old space requested].
+  104837 ms: Mark-sweep 1318.9 (1434.7) -> 1324.4 (1411.7) MB, 6901.5 / 0.0 ms [last resort gc].
+  111960 ms: Mark-sweep 1324.4 (1411.7) -> 1330.1 (1411.7) MB, 7122.9 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x15f8cdecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35f0db5e1766] (this=0x62aa63c2d09 <a Graph with map 0x120de4184689>,idV=0x1f4f888a2e31 <String[9]: dim:12606>,idU=0x1f4f88846869 <String[9]: dim:12608>,value=0x17da917b1f31 <a View with map 0x120de41872e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x35f0db5b1a95] (this=0x62aa63c2d09 <a Graph with map 0x120de418468...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewMap(v8::internal::InstanceType, int, v8::internal::ElementsKind) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 8: v8::internal::Map::ShareDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::DescriptorArray>, v8::internal::Descriptor*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 9: v8::internal::Map::CopyAddDescriptor(v8::internal::Handle<v8::internal::Map>, v8::internal::Descriptor*, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+10: v8::internal::Map::CopyWithField(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::FieldType>, v8::internal::PropertyAttributes, v8::internal::Representation, v8::internal::TransitionFlag) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+11: v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+12: v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+13: v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::ShouldThrow, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+14: v8::internal::Object::SetProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode, v8::internal::Object::StoreFromKeyed) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+15: v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+16: v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+17: 0x35f0dac092a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..11aeb382c8261765a126dcb4c404842bdb1d5290
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   94079 ms: Mark-sweep 1325.8 (1434.7) -> 1322.6 (1434.7) MB, 5287.5 / 0.0 ms [allocation failure] [GC in old space requested].
+  100033 ms: Mark-sweep 1322.6 (1434.7) -> 1322.6 (1434.7) MB, 5953.4 / 0.0 ms [allocation failure] [GC in old space requested].
+  106218 ms: Mark-sweep 1322.6 (1434.7) -> 1326.8 (1415.7) MB, 6184.9 / 0.0 ms [last resort gc].
+  112493 ms: Mark-sweep 1326.8 (1415.7) -> 1331.2 (1415.7) MB, 6274.4 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xccb2f0cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x38d4982ce447] (this=0x21b5133f9b99 <a Graph with map 0x245922c84529>,idV=0x6db3f23a5e9 <String[9]: dim:13145>,idU=0x6db3f2a2a11 <String[9]: dim:13146>,value=0x2bc045c14661 <a View with map 0x245922c87181>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x38d4982b2475] (this=0x21b5133f9b99 <a Graph with map 0x245922c84529...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x38d4979079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..b05db30024b4094e86ce0b4615d12387321bbf03
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   90076 ms: Mark-sweep 1323.6 (1437.7) -> 1322.1 (1437.7) MB, 5314.4 / 0.0 ms [allocation failure] [GC in old space requested].
+   95809 ms: Mark-sweep 1322.1 (1437.7) -> 1322.0 (1437.7) MB, 5732.9 / 0.0 ms [allocation failure] [GC in old space requested].
+  102055 ms: Mark-sweep 1322.0 (1437.7) -> 1327.2 (1414.7) MB, 6245.5 / 0.0 ms [last resort gc].
+  108777 ms: Mark-sweep 1327.2 (1414.7) -> 1332.5 (1414.7) MB, 6721.1 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0x1c711bfcf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2922fdfbe478] (this=0xab819911161 <a Graph with map 0x1e20dd84319>,idV=0x249cd0e78b41 <String[9]: dim:13074>,idU=0x249cd0eb82f1 <String[9]: dim:13075>,value=0x1437c5d26431 <a View with map 0x1e20dd86f71>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2922fdfa6655] (this=0xab819911161 <a Graph with map 0x1e20dd84319>,...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x2922fd6079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..04ad70b78e536a4f44333f6b7ea8e9c68399cce4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+  105930 ms: Mark-sweep 1318.4 (1437.7) -> 1318.4 (1437.7) MB, 7475.1 / 0.0 ms [allocation failure] [GC in old space requested].
+  112907 ms: Mark-sweep 1318.4 (1437.7) -> 1318.3 (1437.7) MB, 6976.7 / 0.0 ms [allocation failure] [GC in old space requested].
+  119311 ms: Mark-sweep 1318.3 (1437.7) -> 1325.5 (1413.7) MB, 6403.3 / 0.0 ms [last resort gc].
+  125478 ms: Mark-sweep 1325.5 (1413.7) -> 1332.6 (1413.7) MB, 6167.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xc270eecf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1999216bf4d8] (this=0x27c581c2d1f1 <a Graph with map 0x1550eb883a29>,idV=0x1bc5d6bcb679 <String[9]: dim:12579>,idU=0x251d195076a9 <String[9]: dim:12581>,value=0x19d7892ca409 <a View with map 0x1550eb886681>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1999216a64b5] (this=0x27c581c2d1f1 <a Graph with map 0x1550eb883a...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x199920d079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-08/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-08/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..fe75f0f43ddec00a8cf4e89b26474a6022f27994
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-08/linear8/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+<--- Last few GCs --->
+
+   86933 ms: Mark-sweep 1333.6 (1434.7) -> 1324.5 (1434.7) MB, 6829.1 / 0.0 ms [allocation failure] [GC in old space requested].
+   94400 ms: Mark-sweep 1324.5 (1434.7) -> 1324.5 (1434.7) MB, 7466.8 / 0.0 ms [allocation failure] [GC in old space requested].
+  102004 ms: Mark-sweep 1324.5 (1434.7) -> 1330.2 (1417.7) MB, 7603.0 / 0.0 ms [last resort gc].
+  107304 ms: Mark-sweep 1330.2 (1417.7) -> 1336.0 (1416.7) MB, 5300.0 / 0.0 ms [last resort gc].
+
+
+<--- JS stacktrace --->
+
+==== JS stack trace =========================================
+
+Security context: 0xdc90c0cf781 <JS Object>
+    1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3d8b764c2bb8] (this=0xa0d836c7ee1 <a Graph with map 0x482cce84689>,idV=0x369416d94561 <String[9]: dim:13396>,idU=0x369416d363c1 <String[9]: dim:13399>,value=0xce12b4aa7e9 <a View with map 0x482cce872e1>)
+    2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3d8b764a87d5] (this=0xa0d836c7ee1 <a Graph with map 0x482cce84689>,vi...
+
+FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+ 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node]
+ 7: 0x3d8b75b079a7
+Aborted
+npm ERR! Test failed.  See above for more details.
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..098d52fd285c3f323337363f543a497d9e389d0c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (722ms)
+    ✓ MaxGraphSQL;n=32 (467ms)
+    ✓ MaxGraphSQL;n=64 (457ms)
+    ✓ MaxGraphSQL;n=128 (470ms)
+    ✓ MaxGraphSQL;n=256 (479ms)
+    ✓ MaxGraphSQL;n=512 (539ms)
+    ✓ MaxGraphSQL;n=1024 (751ms)
+    ✓ MaxGraphSQL;n=2048 (1553ms)
+    ✓ MaxGraphSQL;n=4096 (4215ms)
+    ✓ MaxGraphSQL;n=8192 (15316ms)
+    ✓ MaxGraphSQL;n=16384 (65815ms)
+    ✓ MaxGraphSQL;n=32768 (265259ms)
+    ✓ MaxGraphSQL;n=65536 (1091526ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..113c575e1e2d9c90a2b298c3ac5c6f802ca46b2f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (704ms)
+    ✓ MaxGraphSQL;n=32 (411ms)
+    ✓ MaxGraphSQL;n=64 (409ms)
+    ✓ MaxGraphSQL;n=128 (425ms)
+    ✓ MaxGraphSQL;n=256 (485ms)
+    ✓ MaxGraphSQL;n=512 (540ms)
+    ✓ MaxGraphSQL;n=1024 (733ms)
+    ✓ MaxGraphSQL;n=2048 (1500ms)
+    ✓ MaxGraphSQL;n=4096 (4071ms)
+    ✓ MaxGraphSQL;n=8192 (14721ms)
+    ✓ MaxGraphSQL;n=16384 (61401ms)
+    ✓ MaxGraphSQL;n=32768 (248522ms)
+    ✓ MaxGraphSQL;n=65536 (1131097ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..be9b92ad5180b672721322a046f8d378c900963d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (703ms)
+    ✓ MaxGraphSQL;n=32 (426ms)
+    ✓ MaxGraphSQL;n=64 (413ms)
+    ✓ MaxGraphSQL;n=128 (427ms)
+    ✓ MaxGraphSQL;n=256 (442ms)
+    ✓ MaxGraphSQL;n=512 (488ms)
+    ✓ MaxGraphSQL;n=1024 (673ms)
+    ✓ MaxGraphSQL;n=2048 (1395ms)
+    ✓ MaxGraphSQL;n=4096 (3809ms)
+    ✓ MaxGraphSQL;n=8192 (13546ms)
+    ✓ MaxGraphSQL;n=16384 (54646ms)
+    ✓ MaxGraphSQL;n=32768 (223357ms)
+    ✓ MaxGraphSQL;n=65536 (1102395ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..ddb14e6e82654b235892321819badeae3167cf07
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (702ms)
+    ✓ MaxGraphSQL;n=32 (427ms)
+    ✓ MaxGraphSQL;n=64 (410ms)
+    ✓ MaxGraphSQL;n=128 (427ms)
+    ✓ MaxGraphSQL;n=256 (435ms)
+    ✓ MaxGraphSQL;n=512 (491ms)
+    ✓ MaxGraphSQL;n=1024 (683ms)
+    ✓ MaxGraphSQL;n=2048 (1468ms)
+    ✓ MaxGraphSQL;n=4096 (3969ms)
+    ✓ MaxGraphSQL;n=8192 (13815ms)
+    ✓ MaxGraphSQL;n=16384 (59607ms)
+    ✓ MaxGraphSQL;n=32768 (237921ms)
+    ✓ MaxGraphSQL;n=65536 (1077626ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..43c8320e629e2f2e7772648d8e9d76f6f8dfb2c2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (687ms)
+    ✓ MaxGraphSQL;n=32 (427ms)
+    ✓ MaxGraphSQL;n=64 (413ms)
+    ✓ MaxGraphSQL;n=128 (423ms)
+    ✓ MaxGraphSQL;n=256 (438ms)
+    ✓ MaxGraphSQL;n=512 (488ms)
+    ✓ MaxGraphSQL;n=1024 (668ms)
+    ✓ MaxGraphSQL;n=2048 (1380ms)
+    ✓ MaxGraphSQL;n=4096 (3771ms)
+    ✓ MaxGraphSQL;n=8192 (13440ms)
+    ✓ MaxGraphSQL;n=16384 (53864ms)
+    ✓ MaxGraphSQL;n=32768 (242241ms)
+    ✓ MaxGraphSQL;n=65536 (1097081ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..69d154ad2495ed2d843f5ecc4876ef06f54a5d44
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (716ms)
+    ✓ MaxGraphSQL;n=32 (434ms)
+    ✓ MaxGraphSQL;n=64 (422ms)
+    ✓ MaxGraphSQL;n=128 (437ms)
+    ✓ MaxGraphSQL;n=256 (442ms)
+    ✓ MaxGraphSQL;n=512 (499ms)
+    ✓ MaxGraphSQL;n=1024 (682ms)
+    ✓ MaxGraphSQL;n=2048 (1427ms)
+    ✓ MaxGraphSQL;n=4096 (3903ms)
+    ✓ MaxGraphSQL;n=8192 (13789ms)
+    ✓ MaxGraphSQL;n=16384 (56039ms)
+    ✓ MaxGraphSQL;n=32768 (227497ms)
+    ✓ MaxGraphSQL;n=65536 (1064578ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..8277bd19f0ec96e29dec7e4499ec7d514789983c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (733ms)
+    ✓ MaxGraphSQL;n=32 (449ms)
+    ✓ MaxGraphSQL;n=64 (430ms)
+    ✓ MaxGraphSQL;n=128 (445ms)
+    ✓ MaxGraphSQL;n=256 (457ms)
+    ✓ MaxGraphSQL;n=512 (514ms)
+    ✓ MaxGraphSQL;n=1024 (702ms)
+    ✓ MaxGraphSQL;n=2048 (1484ms)
+    ✓ MaxGraphSQL;n=4096 (4070ms)
+    ✓ MaxGraphSQL;n=8192 (14497ms)
+    ✓ MaxGraphSQL;n=16384 (58610ms)
+    ✓ MaxGraphSQL;n=32768 (259090ms)
+    ✓ MaxGraphSQL;n=65536 (1047733ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..6d249745ba7f2d121fd3d030c579a2114e20d445
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (740ms)
+    ✓ MaxGraphSQL;n=32 (444ms)
+    ✓ MaxGraphSQL;n=64 (435ms)
+    ✓ MaxGraphSQL;n=128 (460ms)
+    ✓ MaxGraphSQL;n=256 (491ms)
+    ✓ MaxGraphSQL;n=512 (539ms)
+    ✓ MaxGraphSQL;n=1024 (723ms)
+    ✓ MaxGraphSQL;n=2048 (1457ms)
+    ✓ MaxGraphSQL;n=4096 (3919ms)
+    ✓ MaxGraphSQL;n=8192 (13996ms)
+    ✓ MaxGraphSQL;n=16384 (58453ms)
+    ✓ MaxGraphSQL;n=32768 (242573ms)
+    ✓ MaxGraphSQL;n=65536 (1126518ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..357bbaf71a3c7f083680f2886ce96eb6deb8c02e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (697ms)
+    ✓ MaxGraphSQL;n=32 (421ms)
+    ✓ MaxGraphSQL;n=64 (413ms)
+    ✓ MaxGraphSQL;n=128 (442ms)
+    ✓ MaxGraphSQL;n=256 (492ms)
+    ✓ MaxGraphSQL;n=512 (547ms)
+    ✓ MaxGraphSQL;n=1024 (733ms)
+    ✓ MaxGraphSQL;n=2048 (1506ms)
+    ✓ MaxGraphSQL;n=4096 (4044ms)
+    ✓ MaxGraphSQL;n=8192 (14325ms)
+    ✓ MaxGraphSQL;n=16384 (59281ms)
+    ✓ MaxGraphSQL;n=32768 (254139ms)
+    ✓ MaxGraphSQL;n=65536 (1088322ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..07e82554930029c4f67433f67d15621cabccb0ee
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (668ms)
+    ✓ MaxGraphSQL;n=32 (419ms)
+    ✓ MaxGraphSQL;n=64 (399ms)
+    ✓ MaxGraphSQL;n=128 (417ms)
+    ✓ MaxGraphSQL;n=256 (424ms)
+    ✓ MaxGraphSQL;n=512 (469ms)
+    ✓ MaxGraphSQL;n=1024 (649ms)
+    ✓ MaxGraphSQL;n=2048 (1345ms)
+    ✓ MaxGraphSQL;n=4096 (3659ms)
+    ✓ MaxGraphSQL;n=8192 (12876ms)
+    ✓ MaxGraphSQL;n=16384 (51570ms)
+    ✓ MaxGraphSQL;n=32768 (211074ms)
+    ✓ MaxGraphSQL;n=65536 (1103741ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..94e2f4b02701f3ce1c67cf060c98a45f2347d026
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (705ms)
+    ✓ MaxGraphSQL;n=32 (418ms)
+    ✓ MaxGraphSQL;n=64 (411ms)
+    ✓ MaxGraphSQL;n=128 (422ms)
+    ✓ MaxGraphSQL;n=256 (431ms)
+    ✓ MaxGraphSQL;n=512 (482ms)
+    ✓ MaxGraphSQL;n=1024 (652ms)
+    ✓ MaxGraphSQL;n=2048 (1370ms)
+    ✓ MaxGraphSQL;n=4096 (3732ms)
+    ✓ MaxGraphSQL;n=8192 (13246ms)
+    ✓ MaxGraphSQL;n=16384 (52593ms)
+    ✓ MaxGraphSQL;n=32768 (223135ms)
+    ✓ MaxGraphSQL;n=65536 (1142678ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..fd07a07e05ffdb57adb5d6cbf6d0fc573fd5703b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (686ms)
+    ✓ MaxGraphSQL;n=32 (419ms)
+    ✓ MaxGraphSQL;n=64 (412ms)
+    ✓ MaxGraphSQL;n=128 (439ms)
+    ✓ MaxGraphSQL;n=256 (437ms)
+    ✓ MaxGraphSQL;n=512 (490ms)
+    ✓ MaxGraphSQL;n=1024 (672ms)
+    ✓ MaxGraphSQL;n=2048 (1412ms)
+    ✓ MaxGraphSQL;n=4096 (3841ms)
+    ✓ MaxGraphSQL;n=8192 (13733ms)
+    ✓ MaxGraphSQL;n=16384 (57670ms)
+    ✓ MaxGraphSQL;n=32768 (244291ms)
+    ✓ MaxGraphSQL;n=65536 (1043866ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..9bbd16752528afe02b43e3767312294a5dcd1671
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (698ms)
+    ✓ MaxGraphSQL;n=32 (432ms)
+    ✓ MaxGraphSQL;n=64 (420ms)
+    ✓ MaxGraphSQL;n=128 (441ms)
+    ✓ MaxGraphSQL;n=256 (502ms)
+    ✓ MaxGraphSQL;n=512 (556ms)
+    ✓ MaxGraphSQL;n=1024 (735ms)
+    ✓ MaxGraphSQL;n=2048 (1464ms)
+    ✓ MaxGraphSQL;n=4096 (3891ms)
+    ✓ MaxGraphSQL;n=8192 (13815ms)
+    ✓ MaxGraphSQL;n=16384 (57383ms)
+    ✓ MaxGraphSQL;n=32768 (247439ms)
+    ✓ MaxGraphSQL;n=65536 (1047245ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..cb64f676151af43aa4d6cb2279e99d69111e2ecd
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (707ms)
+    ✓ MaxGraphSQL;n=32 (415ms)
+    ✓ MaxGraphSQL;n=64 (407ms)
+    ✓ MaxGraphSQL;n=128 (425ms)
+    ✓ MaxGraphSQL;n=256 (430ms)
+    ✓ MaxGraphSQL;n=512 (487ms)
+    ✓ MaxGraphSQL;n=1024 (667ms)
+    ✓ MaxGraphSQL;n=2048 (1419ms)
+    ✓ MaxGraphSQL;n=4096 (3928ms)
+    ✓ MaxGraphSQL;n=8192 (14138ms)
+    ✓ MaxGraphSQL;n=16384 (56678ms)
+    ✓ MaxGraphSQL;n=32768 (237839ms)
+    ✓ MaxGraphSQL;n=65536 (1091635ms)
+
+
+  13 passing (23m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..014fa297417a766236dbf635094a0ede0d6e7a44
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (725ms)
+    ✓ MaxGraphSQL;n=32 (444ms)
+    ✓ MaxGraphSQL;n=64 (442ms)
+    ✓ MaxGraphSQL;n=128 (459ms)
+    ✓ MaxGraphSQL;n=256 (487ms)
+    ✓ MaxGraphSQL;n=512 (535ms)
+    ✓ MaxGraphSQL;n=1024 (703ms)
+    ✓ MaxGraphSQL;n=2048 (1400ms)
+    ✓ MaxGraphSQL;n=4096 (3682ms)
+    ✓ MaxGraphSQL;n=8192 (12850ms)
+    ✓ MaxGraphSQL;n=16384 (50792ms)
+    ✓ MaxGraphSQL;n=32768 (242488ms)
+    ✓ MaxGraphSQL;n=65536 (1099814ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..166b9941bfb419e3ebdddcfba7b139042d2559f8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (715ms)
+    ✓ MaxGraphSQL;n=32 (453ms)
+    ✓ MaxGraphSQL;n=64 (461ms)
+    ✓ MaxGraphSQL;n=128 (488ms)
+    ✓ MaxGraphSQL;n=256 (506ms)
+    ✓ MaxGraphSQL;n=512 (564ms)
+    ✓ MaxGraphSQL;n=1024 (739ms)
+    ✓ MaxGraphSQL;n=2048 (1473ms)
+    ✓ MaxGraphSQL;n=4096 (3867ms)
+    ✓ MaxGraphSQL;n=8192 (13671ms)
+    ✓ MaxGraphSQL;n=16384 (57131ms)
+    ✓ MaxGraphSQL;n=32768 (253613ms)
+    ✓ MaxGraphSQL;n=65536 (1076569ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..5464715e89d11069b41462062dedb2414b722b6b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (760ms)
+    ✓ MaxGraphSQL;n=32 (444ms)
+    ✓ MaxGraphSQL;n=64 (423ms)
+    ✓ MaxGraphSQL;n=128 (437ms)
+    ✓ MaxGraphSQL;n=256 (444ms)
+    ✓ MaxGraphSQL;n=512 (494ms)
+    ✓ MaxGraphSQL;n=1024 (665ms)
+    ✓ MaxGraphSQL;n=2048 (1370ms)
+    ✓ MaxGraphSQL;n=4096 (3683ms)
+    ✓ MaxGraphSQL;n=8192 (13163ms)
+    ✓ MaxGraphSQL;n=16384 (52865ms)
+    ✓ MaxGraphSQL;n=32768 (244061ms)
+    ✓ MaxGraphSQL;n=65536 (1105742ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..02600d13aa2618d67106a6e7acb4420cbdb312c8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (682ms)
+    ✓ MaxGraphSQL;n=32 (416ms)
+    ✓ MaxGraphSQL;n=64 (412ms)
+    ✓ MaxGraphSQL;n=128 (421ms)
+    ✓ MaxGraphSQL;n=256 (434ms)
+    ✓ MaxGraphSQL;n=512 (482ms)
+    ✓ MaxGraphSQL;n=1024 (662ms)
+    ✓ MaxGraphSQL;n=2048 (1364ms)
+    ✓ MaxGraphSQL;n=4096 (3721ms)
+    ✓ MaxGraphSQL;n=8192 (13092ms)
+    ✓ MaxGraphSQL;n=16384 (52670ms)
+    ✓ MaxGraphSQL;n=32768 (215540ms)
+    ✓ MaxGraphSQL;n=65536 (978924ms)
+
+
+  13 passing (21m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..7a6365df7211ca9ec946b922ddecf0efce37cef9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (695ms)
+    ✓ MaxGraphSQL;n=32 (414ms)
+    ✓ MaxGraphSQL;n=64 (403ms)
+    ✓ MaxGraphSQL;n=128 (412ms)
+    ✓ MaxGraphSQL;n=256 (427ms)
+    ✓ MaxGraphSQL;n=512 (486ms)
+    ✓ MaxGraphSQL;n=1024 (665ms)
+    ✓ MaxGraphSQL;n=2048 (1413ms)
+    ✓ MaxGraphSQL;n=4096 (3889ms)
+    ✓ MaxGraphSQL;n=8192 (13832ms)
+    ✓ MaxGraphSQL;n=16384 (55535ms)
+    ✓ MaxGraphSQL;n=32768 (242123ms)
+    ✓ MaxGraphSQL;n=65536 (1115478ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-09/linear2/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..35013c29d445a39393b68924df65843c0ac67292
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear2/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (652ms)
+    ✓ MaxGraphSQL;n=32 (412ms)
+    ✓ MaxGraphSQL;n=64 (409ms)
+    ✓ MaxGraphSQL;n=128 (431ms)
+    ✓ MaxGraphSQL;n=256 (502ms)
+    ✓ MaxGraphSQL;n=512 (554ms)
+    ✓ MaxGraphSQL;n=1024 (739ms)
+    ✓ MaxGraphSQL;n=2048 (1465ms)
+    ✓ MaxGraphSQL;n=4096 (3945ms)
+    ✓ MaxGraphSQL;n=8192 (14093ms)
+    ✓ MaxGraphSQL;n=16384 (58254ms)
+    ✓ MaxGraphSQL;n=32768 (243896ms)
+    ✓ MaxGraphSQL;n=65536 (1085322ms)
+
+
+  13 passing (24m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.05% ( 583/1022 )
+Branches     : 31.38% ( 134/427 )
+Functions    : 53.54% ( 106/198 )
+Lines        : 57.6% ( 557/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/1024-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/128-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/16-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/16384-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/2048-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/256-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/32-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/32768-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/4096-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/512-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/64-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/65536-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.R
@@ -0,0 +1,3 @@
+Error in read.table(opt, header = FALSE, sep = " ") : 
+  no lines available in input
+Execution halted
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/8192-LayoutSQL.res
@@ -0,0 +1 @@
+
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..6e7c7e732e3b206a9581a971a211bd3332da90e0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run1.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1243ms)
+    ✓ MaxGraphSQL;n=32 (829ms)
+    ✓ MaxGraphSQL;n=64 (823ms)
+    ✓ MaxGraphSQL;n=128 (838ms)
+    ✓ MaxGraphSQL;n=256 (860ms)
+    ✓ MaxGraphSQL;n=512 (875ms)
+    ✓ MaxGraphSQL;n=1024 (934ms)
+    ✓ MaxGraphSQL;n=2048 (1077ms)
+    ✓ MaxGraphSQL;n=4096 (1543ms)
+    ✓ MaxGraphSQL;n=8192 (3023ms)
+    ✓ MaxGraphSQL;n=16384 (8292ms)
+    ✓ MaxGraphSQL;n=32768 (31239ms)
+    ✓ MaxGraphSQL;n=65536 (134422ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..c67b071c6337268e357d7bfebf2040a8c9e8e38a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run10.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1153ms)
+    ✓ MaxGraphSQL;n=32 (791ms)
+    ✓ MaxGraphSQL;n=64 (779ms)
+    ✓ MaxGraphSQL;n=128 (781ms)
+    ✓ MaxGraphSQL;n=256 (783ms)
+    ✓ MaxGraphSQL;n=512 (813ms)
+    ✓ MaxGraphSQL;n=1024 (861ms)
+    ✓ MaxGraphSQL;n=2048 (976ms)
+    ✓ MaxGraphSQL;n=4096 (1399ms)
+    ✓ MaxGraphSQL;n=8192 (2743ms)
+    ✓ MaxGraphSQL;n=16384 (7531ms)
+    ✓ MaxGraphSQL;n=32768 (26680ms)
+    ✓ MaxGraphSQL;n=65536 (106618ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..5bf437035602ffde48ef5b640490715bce39ef81
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run11.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1224ms)
+    ✓ MaxGraphSQL;n=32 (802ms)
+    ✓ MaxGraphSQL;n=64 (799ms)
+    ✓ MaxGraphSQL;n=128 (802ms)
+    ✓ MaxGraphSQL;n=256 (812ms)
+    ✓ MaxGraphSQL;n=512 (835ms)
+    ✓ MaxGraphSQL;n=1024 (906ms)
+    ✓ MaxGraphSQL;n=2048 (1033ms)
+    ✓ MaxGraphSQL;n=4096 (1437ms)
+    ✓ MaxGraphSQL;n=8192 (2810ms)
+    ✓ MaxGraphSQL;n=16384 (7661ms)
+    ✓ MaxGraphSQL;n=32768 (29037ms)
+    ✓ MaxGraphSQL;n=65536 (123632ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..cd6b75a55106077e54af8e83ec4bd663bdcf85e4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run12.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1191ms)
+    ✓ MaxGraphSQL;n=32 (782ms)
+    ✓ MaxGraphSQL;n=64 (778ms)
+    ✓ MaxGraphSQL;n=128 (779ms)
+    ✓ MaxGraphSQL;n=256 (791ms)
+    ✓ MaxGraphSQL;n=512 (805ms)
+    ✓ MaxGraphSQL;n=1024 (874ms)
+    ✓ MaxGraphSQL;n=2048 (1012ms)
+    ✓ MaxGraphSQL;n=4096 (1449ms)
+    ✓ MaxGraphSQL;n=8192 (2939ms)
+    ✓ MaxGraphSQL;n=16384 (8171ms)
+    ✓ MaxGraphSQL;n=32768 (29549ms)
+    ✓ MaxGraphSQL;n=65536 (117334ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..abaf41dbb0bf54a4bc422ea17912264624e1431b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run13.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1169ms)
+    ✓ MaxGraphSQL;n=32 (807ms)
+    ✓ MaxGraphSQL;n=64 (803ms)
+    ✓ MaxGraphSQL;n=128 (801ms)
+    ✓ MaxGraphSQL;n=256 (806ms)
+    ✓ MaxGraphSQL;n=512 (827ms)
+    ✓ MaxGraphSQL;n=1024 (886ms)
+    ✓ MaxGraphSQL;n=2048 (1005ms)
+    ✓ MaxGraphSQL;n=4096 (1449ms)
+    ✓ MaxGraphSQL;n=8192 (2836ms)
+    ✓ MaxGraphSQL;n=16384 (7712ms)
+    ✓ MaxGraphSQL;n=32768 (28108ms)
+    ✓ MaxGraphSQL;n=65536 (116860ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..48199f0833c863ee98a038a0d99d8b74d316d592
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run14.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1248ms)
+    ✓ MaxGraphSQL;n=32 (874ms)
+    ✓ MaxGraphSQL;n=64 (864ms)
+    ✓ MaxGraphSQL;n=128 (872ms)
+    ✓ MaxGraphSQL;n=256 (884ms)
+    ✓ MaxGraphSQL;n=512 (897ms)
+    ✓ MaxGraphSQL;n=1024 (963ms)
+    ✓ MaxGraphSQL;n=2048 (1106ms)
+    ✓ MaxGraphSQL;n=4096 (1549ms)
+    ✓ MaxGraphSQL;n=8192 (3016ms)
+    ✓ MaxGraphSQL;n=16384 (8249ms)
+    ✓ MaxGraphSQL;n=32768 (29735ms)
+    ✓ MaxGraphSQL;n=65536 (118530ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..eca9bcfd5b2ff2aeff0993d38c6a885cd8a38eb0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run15.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1126ms)
+    ✓ MaxGraphSQL;n=32 (744ms)
+    ✓ MaxGraphSQL;n=64 (736ms)
+    ✓ MaxGraphSQL;n=128 (743ms)
+    ✓ MaxGraphSQL;n=256 (754ms)
+    ✓ MaxGraphSQL;n=512 (772ms)
+    ✓ MaxGraphSQL;n=1024 (879ms)
+    ✓ MaxGraphSQL;n=2048 (1002ms)
+    ✓ MaxGraphSQL;n=4096 (1435ms)
+    ✓ MaxGraphSQL;n=8192 (2827ms)
+    ✓ MaxGraphSQL;n=16384 (7767ms)
+    ✓ MaxGraphSQL;n=32768 (29197ms)
+    ✓ MaxGraphSQL;n=65536 (124142ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..8082374e5bca261299eb410e2855c27f290b09d1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run16.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1156ms)
+    ✓ MaxGraphSQL;n=32 (783ms)
+    ✓ MaxGraphSQL;n=64 (775ms)
+    ✓ MaxGraphSQL;n=128 (784ms)
+    ✓ MaxGraphSQL;n=256 (800ms)
+    ✓ MaxGraphSQL;n=512 (889ms)
+    ✓ MaxGraphSQL;n=1024 (979ms)
+    ✓ MaxGraphSQL;n=2048 (1068ms)
+    ✓ MaxGraphSQL;n=4096 (1477ms)
+    ✓ MaxGraphSQL;n=8192 (2863ms)
+    ✓ MaxGraphSQL;n=16384 (7749ms)
+    ✓ MaxGraphSQL;n=32768 (28071ms)
+    ✓ MaxGraphSQL;n=65536 (117421ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..0ea0d43fbf6234f46ebdd9ce0bd6fafa4a46be4e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run17.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1298ms)
+    ✓ MaxGraphSQL;n=32 (880ms)
+    ✓ MaxGraphSQL;n=64 (872ms)
+    ✓ MaxGraphSQL;n=128 (886ms)
+    ✓ MaxGraphSQL;n=256 (895ms)
+    ✓ MaxGraphSQL;n=512 (903ms)
+    ✓ MaxGraphSQL;n=1024 (964ms)
+    ✓ MaxGraphSQL;n=2048 (1096ms)
+    ✓ MaxGraphSQL;n=4096 (1569ms)
+    ✓ MaxGraphSQL;n=8192 (3053ms)
+    ✓ MaxGraphSQL;n=16384 (8190ms)
+    ✓ MaxGraphSQL;n=32768 (29960ms)
+    ✓ MaxGraphSQL;n=65536 (132453ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..f3940eb84a811d2b4dc637eb6dedaf01caf8d24b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run18.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1209ms)
+    ✓ MaxGraphSQL;n=32 (809ms)
+    ✓ MaxGraphSQL;n=64 (791ms)
+    ✓ MaxGraphSQL;n=128 (790ms)
+    ✓ MaxGraphSQL;n=256 (856ms)
+    ✓ MaxGraphSQL;n=512 (877ms)
+    ✓ MaxGraphSQL;n=1024 (929ms)
+    ✓ MaxGraphSQL;n=2048 (1054ms)
+    ✓ MaxGraphSQL;n=4096 (1496ms)
+    ✓ MaxGraphSQL;n=8192 (2909ms)
+    ✓ MaxGraphSQL;n=16384 (7849ms)
+    ✓ MaxGraphSQL;n=32768 (28369ms)
+    ✓ MaxGraphSQL;n=65536 (121619ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..1a51b7ff707929971434a08d4cdabd586f740e12
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run19.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1187ms)
+    ✓ MaxGraphSQL;n=32 (841ms)
+    ✓ MaxGraphSQL;n=64 (829ms)
+    ✓ MaxGraphSQL;n=128 (846ms)
+    ✓ MaxGraphSQL;n=256 (818ms)
+    ✓ MaxGraphSQL;n=512 (830ms)
+    ✓ MaxGraphSQL;n=1024 (897ms)
+    ✓ MaxGraphSQL;n=2048 (1008ms)
+    ✓ MaxGraphSQL;n=4096 (1436ms)
+    ✓ MaxGraphSQL;n=8192 (2813ms)
+    ✓ MaxGraphSQL;n=16384 (7791ms)
+    ✓ MaxGraphSQL;n=32768 (28111ms)
+    ✓ MaxGraphSQL;n=65536 (112445ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..e893faf61e9dd2e8c710343732688e9bda3bb4b1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run2.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1276ms)
+    ✓ MaxGraphSQL;n=32 (885ms)
+    ✓ MaxGraphSQL;n=64 (858ms)
+    ✓ MaxGraphSQL;n=128 (852ms)
+    ✓ MaxGraphSQL;n=256 (858ms)
+    ✓ MaxGraphSQL;n=512 (876ms)
+    ✓ MaxGraphSQL;n=1024 (944ms)
+    ✓ MaxGraphSQL;n=2048 (1086ms)
+    ✓ MaxGraphSQL;n=4096 (1498ms)
+    ✓ MaxGraphSQL;n=8192 (2915ms)
+    ✓ MaxGraphSQL;n=16384 (7978ms)
+    ✓ MaxGraphSQL;n=32768 (30174ms)
+    ✓ MaxGraphSQL;n=65536 (125461ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..4f4b4c984598818569490f7da4176b2262ca3f6c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run20.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1137ms)
+    ✓ MaxGraphSQL;n=32 (776ms)
+    ✓ MaxGraphSQL;n=64 (773ms)
+    ✓ MaxGraphSQL;n=128 (773ms)
+    ✓ MaxGraphSQL;n=256 (792ms)
+    ✓ MaxGraphSQL;n=512 (810ms)
+    ✓ MaxGraphSQL;n=1024 (885ms)
+    ✓ MaxGraphSQL;n=2048 (1008ms)
+    ✓ MaxGraphSQL;n=4096 (1429ms)
+    ✓ MaxGraphSQL;n=8192 (2850ms)
+    ✓ MaxGraphSQL;n=16384 (7848ms)
+    ✓ MaxGraphSQL;n=32768 (28565ms)
+    ✓ MaxGraphSQL;n=65536 (114446ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..e2ff046b0e4b68f6f7831c62dfe8b1af9653a872
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run3.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1130ms)
+    ✓ MaxGraphSQL;n=32 (757ms)
+    ✓ MaxGraphSQL;n=64 (747ms)
+    ✓ MaxGraphSQL;n=128 (752ms)
+    ✓ MaxGraphSQL;n=256 (762ms)
+    ✓ MaxGraphSQL;n=512 (780ms)
+    ✓ MaxGraphSQL;n=1024 (842ms)
+    ✓ MaxGraphSQL;n=2048 (953ms)
+    ✓ MaxGraphSQL;n=4096 (1372ms)
+    ✓ MaxGraphSQL;n=8192 (2727ms)
+    ✓ MaxGraphSQL;n=16384 (7518ms)
+    ✓ MaxGraphSQL;n=32768 (26738ms)
+    ✓ MaxGraphSQL;n=65536 (106791ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..012a8abf86bdbe3ffebabec35a4b457db9399265
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run4.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1169ms)
+    ✓ MaxGraphSQL;n=32 (769ms)
+    ✓ MaxGraphSQL;n=64 (768ms)
+    ✓ MaxGraphSQL;n=128 (772ms)
+    ✓ MaxGraphSQL;n=256 (814ms)
+    ✓ MaxGraphSQL;n=512 (823ms)
+    ✓ MaxGraphSQL;n=1024 (887ms)
+    ✓ MaxGraphSQL;n=2048 (1015ms)
+    ✓ MaxGraphSQL;n=4096 (1461ms)
+    ✓ MaxGraphSQL;n=8192 (2888ms)
+    ✓ MaxGraphSQL;n=16384 (8050ms)
+    ✓ MaxGraphSQL;n=32768 (30226ms)
+    ✓ MaxGraphSQL;n=65536 (130814ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..7b0b53b8e7fb7e1f1ddb943a2f2edfdd1d88ec7f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run5.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1147ms)
+    ✓ MaxGraphSQL;n=32 (765ms)
+    ✓ MaxGraphSQL;n=64 (753ms)
+    ✓ MaxGraphSQL;n=128 (763ms)
+    ✓ MaxGraphSQL;n=256 (770ms)
+    ✓ MaxGraphSQL;n=512 (806ms)
+    ✓ MaxGraphSQL;n=1024 (842ms)
+    ✓ MaxGraphSQL;n=2048 (966ms)
+    ✓ MaxGraphSQL;n=4096 (1403ms)
+    ✓ MaxGraphSQL;n=8192 (2780ms)
+    ✓ MaxGraphSQL;n=16384 (7684ms)
+    ✓ MaxGraphSQL;n=32768 (28143ms)
+    ✓ MaxGraphSQL;n=65536 (119061ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..671fd436ecd9d96effd323b892e105fc582c934b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run6.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1386ms)
+    ✓ MaxGraphSQL;n=32 (793ms)
+    ✓ MaxGraphSQL;n=64 (782ms)
+    ✓ MaxGraphSQL;n=128 (791ms)
+    ✓ MaxGraphSQL;n=256 (799ms)
+    ✓ MaxGraphSQL;n=512 (825ms)
+    ✓ MaxGraphSQL;n=1024 (858ms)
+    ✓ MaxGraphSQL;n=2048 (984ms)
+    ✓ MaxGraphSQL;n=4096 (1404ms)
+    ✓ MaxGraphSQL;n=8192 (2726ms)
+    ✓ MaxGraphSQL;n=16384 (7411ms)
+    ✓ MaxGraphSQL;n=32768 (26556ms)
+    ✓ MaxGraphSQL;n=65536 (106625ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..f7e2172d2b71fe11e5c361b655c1c20309ea60f4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run7.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1188ms)
+    ✓ MaxGraphSQL;n=32 (794ms)
+    ✓ MaxGraphSQL;n=64 (780ms)
+    ✓ MaxGraphSQL;n=128 (791ms)
+    ✓ MaxGraphSQL;n=256 (794ms)
+    ✓ MaxGraphSQL;n=512 (811ms)
+    ✓ MaxGraphSQL;n=1024 (870ms)
+    ✓ MaxGraphSQL;n=2048 (999ms)
+    ✓ MaxGraphSQL;n=4096 (1443ms)
+    ✓ MaxGraphSQL;n=8192 (2885ms)
+    ✓ MaxGraphSQL;n=16384 (7917ms)
+    ✓ MaxGraphSQL;n=32768 (29938ms)
+    ✓ MaxGraphSQL;n=65536 (123796ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..26cdeaecf2982642c54ed9539d31bf532528b917
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run8.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1182ms)
+    ✓ MaxGraphSQL;n=32 (789ms)
+    ✓ MaxGraphSQL;n=64 (799ms)
+    ✓ MaxGraphSQL;n=128 (797ms)
+    ✓ MaxGraphSQL;n=256 (810ms)
+    ✓ MaxGraphSQL;n=512 (815ms)
+    ✓ MaxGraphSQL;n=1024 (889ms)
+    ✓ MaxGraphSQL;n=2048 (1013ms)
+    ✓ MaxGraphSQL;n=4096 (1475ms)
+    ✓ MaxGraphSQL;n=8192 (2942ms)
+    ✓ MaxGraphSQL;n=16384 (8079ms)
+    ✓ MaxGraphSQL;n=32768 (28771ms)
+    ✓ MaxGraphSQL;n=65536 (113820ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-09/linear4/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..f946fa6e121c6a47624327e72ae7eea4b847ecac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear4/run9.test
@@ -0,0 +1,31 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ MaxGraphSQL;n=16 (1146ms)
+    ✓ MaxGraphSQL;n=32 (770ms)
+    ✓ MaxGraphSQL;n=64 (766ms)
+    ✓ MaxGraphSQL;n=128 (761ms)
+    ✓ MaxGraphSQL;n=256 (769ms)
+    ✓ MaxGraphSQL;n=512 (788ms)
+    ✓ MaxGraphSQL;n=1024 (850ms)
+    ✓ MaxGraphSQL;n=2048 (990ms)
+    ✓ MaxGraphSQL;n=4096 (1404ms)
+    ✓ MaxGraphSQL;n=8192 (2772ms)
+    ✓ MaxGraphSQL;n=16384 (7623ms)
+    ✓ MaxGraphSQL;n=32768 (26981ms)
+    ✓ MaxGraphSQL;n=65536 (108291ms)
+
+
+  13 passing (3m)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..f024c9d2489e7ad9938340ceb2f8a911f97e3f91
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 70.1
+Mediana        = 63
+Variancia      = 161.04
+Desvio Padrao  = 12.69
+Coef. Variacao = 0.18
+Min            = 58
+Max            = 93
+Esq, Dir.      = 65.4325 , 74.7675
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f8105406df2590c71b322e8078dd1087e567e286
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/1024-LayoutSQL.res
@@ -0,0 +1,20 @@
+1024 58
+1024 73
+1024 60
+1024 64
+1024 62
+1024 93
+1024 62
+1024 87
+1024 67
+1024 60
+1024 62
+1024 66
+1024 92
+1024 61
+1024 61
+1024 89
+1024 62
+1024 61
+1024 92
+1024 70
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..354f42f5f4b4f432db9c38201914b529b9c5e1ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 18.75
+Mediana        = 13.5
+Variancia      = 160.09
+Desvio Padrao  = 12.65
+Coef. Variacao = 0.67
+Min            = 11
+Max            = 51
+Esq, Dir.      = 14.0963 , 23.4037
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b60814845933607ce27287559e159189264b44d3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/128-LayoutSQL.res
@@ -0,0 +1,20 @@
+128 12
+128 11
+128 15
+128 50
+128 13
+128 13
+128 13
+128 13
+128 51
+128 12
+128 13
+128 14
+128 11
+128 15
+128 13
+128 14
+128 15
+128 41
+128 22
+128 14
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..67f89f6e72e98472c314f1206ac35bc27b341a92
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 28.1
+Mediana        = 27.5
+Variancia      = 38.94
+Desvio Padrao  = 6.24
+Coef. Variacao = 0.22
+Min            = 20
+Max            = 49
+Esq, Dir.      = 25.8049 , 30.3951
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2495e2991b40cb46fb40b3acc406e3fb3b77a1cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/16-LayoutSQL.res
@@ -0,0 +1,20 @@
+16 28
+16 26
+16 28
+16 32
+16 32
+16 22
+16 27
+16 21
+16 30
+16 24
+16 26
+16 31
+16 22
+16 31
+16 31
+16 20
+16 31
+16 24
+16 49
+16 27
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..957fe8a71d11e5a3bc204eabcf2824880e40a0fc
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2399.15
+Mediana        = 2239
+Variancia      = 475613.4
+Desvio Padrao  = 689.65
+Coef. Variacao = 0.29
+Min            = 2129
+Max            = 5301
+Esq, Dir.      = 2145.4974 , 2652.8026
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..5e44beaf43bc774daa752690c33223db7508866c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/16384-LayoutSQL.res
@@ -0,0 +1,20 @@
+16384 2183
+16384 2193
+16384 2246
+16384 2517
+16384 2301
+16384 2260
+16384 2158
+16384 2184
+16384 2434
+16384 2136
+16384 2186
+16384 2256
+16384 2287
+16384 2216
+16384 2129
+16384 2234
+16384 2189
+16384 2329
+16384 5301
+16384 2244
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4e7b0dbc4d814997211f7335d89533a765fd5fa5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 175.9
+Mediana        = 168.5
+Variancia      = 559.57
+Desvio Padrao  = 23.66
+Coef. Variacao = 0.13
+Min            = 155
+Max            = 259
+Esq, Dir.      = 167.1996 , 184.6004
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..48bde2d348c615eb5d076627fbc0bfaf4315d8ce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/2048-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 162
+2048 155
+2048 178
+2048 185
+2048 189
+2048 165
+2048 170
+2048 155
+2048 202
+2048 161
+2048 165
+2048 193
+2048 167
+2048 185
+2048 156
+2048 160
+2048 173
+2048 172
+2048 259
+2048 166
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..14d6677ddd48fdf03efbe926241c96c33ef3e4cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 27.75
+Mediana        = 28.5
+Variancia      = 120.83
+Desvio Padrao  = 10.99
+Coef. Variacao = 0.4
+Min            = 16
+Max            = 67
+Esq, Dir.      = 23.7071 , 31.7929
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4328b87a3d894c0dc6056a31d343f77f5bb1c9ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/256-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 20
+256 21
+256 24
+256 32
+256 21
+256 31
+256 30
+256 31
+256 27
+256 16
+256 18
+256 67
+256 21
+256 33
+256 32
+256 30
+256 30
+256 18
+256 34
+256 19
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b79cc4e62f0d0877472240ba7d7e3a85d365df5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.15
+Mediana        = 4
+Variancia      = 0.98
+Desvio Padrao  = 0.99
+Coef. Variacao = 0.24
+Min            = 3
+Max            = 8
+Esq, Dir.      = 3.7866 , 4.5134
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b4e958be3c4e3e7ea7de79f0691df7cba644518f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/32-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 3
+32 4
+32 4
+32 4
+32 4
+32 4
+32 3
+32 4
+32 4
+32 4
+32 5
+32 4
+32 8
+32 4
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..caf48b94c83a748bfc4e45f2d9dc99a3d157a8b1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10099.5
+Mediana        = 10732.5
+Variancia      = 2360619.84
+Desvio Padrao  = 1536.43
+Coef. Variacao = 0.15
+Min            = 6697
+Max            = 11394
+Esq, Dir.      = 9534.4 , 10664.6
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f4034cd30637ef5a739f53e56be998b6a36d07b8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/32768-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 10638
+32768 7113
+32768 11120
+32768 11393
+32768 10693
+32768 11394
+32768 10638
+32768 7323
+32768 10120
+32768 11100
+32768 10746
+32768 10840
+32768 11138
+32768 10811
+32768 7867
+32768 9513
+32768 10728
+32768 10737
+32768 6697
+32768 11381
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8848fa9f12ad6be75a3ba0fd1d8eba8333264631
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 347.2
+Mediana        = 336.5
+Variancia      = 4193.75
+Desvio Padrao  = 64.76
+Coef. Variacao = 0.19
+Min            = 312
+Max            = 618
+Esq, Dir.      = 323.3816 , 371.0184
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..267959c31ec79477add1e9e00c441233cda07b52
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/4096-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 325
+4096 361
+4096 339
+4096 345
+4096 338
+4096 341
+4096 312
+4096 324
+4096 329
+4096 322
+4096 340
+4096 344
+4096 339
+4096 329
+4096 316
+4096 324
+4096 339
+4096 324
+4096 618
+4096 335
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7a331771e76ea3d5d78c72e72b3eb4e4ffd50587
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 44.7
+Mediana        = 34.5
+Variancia      = 263.06
+Desvio Padrao  = 16.22
+Coef. Variacao = 0.36
+Min            = 30
+Max            = 72
+Esq, Dir.      = 38.7346 , 50.6654
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e908c5a7462a754ca0e63e801ca51016039223e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/512-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 65
+512 72
+512 34
+512 36
+512 34
+512 36
+512 30
+512 33
+512 31
+512 61
+512 65
+512 35
+512 34
+512 31
+512 66
+512 32
+512 68
+512 32
+512 34
+512 65
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0eb866679f8f86ad6bcbc2abf5c4d8d21837a59b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11.1
+Mediana        = 7
+Variancia      = 124.73
+Desvio Padrao  = 11.17
+Coef. Variacao = 1.01
+Min            = 5
+Max            = 45
+Esq, Dir.      = 6.9924 , 15.2076
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c0075b44b78af4d8bb826a1cdfcce5a064ec322a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/64-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 7
+64 7
+64 41
+64 7
+64 6
+64 7
+64 6
+64 7
+64 7
+64 7
+64 7
+64 7
+64 5
+64 45
+64 8
+64 11
+64 8
+64 6
+64 16
+64 7
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..85136819d4cf9379c9ed406e9754f7995adf4ff9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 28880.9
+Mediana        = 29020.5
+Variancia      = 1599277.46
+Desvio Padrao  = 1264.63
+Coef. Variacao = 0.04
+Min            = 26090
+Max            = 30832
+Esq, Dir.      = 28415.7702 , 29346.0298
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e7244988b0177e47ccc872e52fe3db1e0768a930
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/65536-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 30832
+65536 26758
+65536 28869
+65536 29411
+65536 28652
+65536 30102
+65536 28700
+65536 28460
+65536 29885
+65536 30071
+65536 29512
+65536 30420
+65536 29997
+65536 29373
+65536 27563
+65536 26090
+65536 29172
+65536 27498
+65536 27536
+65536 28717
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1044559f6ebd4cd6f30a63f4935f42f9090401aa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 809.1
+Mediana        = 796
+Variancia      = 3401.15
+Desvio Padrao  = 58.32
+Coef. Variacao = 0.07
+Min            = 759
+Max            = 995
+Esq, Dir.      = 787.6501 , 830.5499
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..250574b362e6a67a0ca210ebf603431aabecd70a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/8192-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 780
+8192 781
+8192 812
+8192 830
+8192 815
+8192 811
+8192 761
+8192 794
+8192 782
+8192 762
+8192 767
+8192 821
+8192 814
+8192 796
+8192 759
+8192 796
+8192 936
+8192 771
+8192 995
+8192 799
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run1.test
new file mode 100644
index 0000000000000000000000000000000000000000..d0d7efc54ec305266c99e29dffa91260dc37dee9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run1.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (26ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (18ms)
+    ✓ LayoutSQL;n=512 (65ms)
+    ✓ LayoutSQL;n=1024 (62ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (340ms)
+    ✓ LayoutSQL;n=8192 (767ms)
+    ✓ LayoutSQL;n=16384 (2186ms)
+    ✓ LayoutSQL;n=32768 (10746ms)
+    ✓ LayoutSQL;n=65536 (29512ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run10.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run10.test
new file mode 100644
index 0000000000000000000000000000000000000000..9bd9b1263063530b860ee4368798ff1f3f5a718d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run10.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (12ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (16ms)
+    ✓ LayoutSQL;n=512 (61ms)
+    ✓ LayoutSQL;n=1024 (60ms)
+    ✓ LayoutSQL;n=2048 (161ms)
+    ✓ LayoutSQL;n=4096 (322ms)
+    ✓ LayoutSQL;n=8192 (762ms)
+    ✓ LayoutSQL;n=16384 (2136ms)
+    ✓ LayoutSQL;n=32768 (11100ms)
+    ✓ LayoutSQL;n=65536 (30071ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run11.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run11.test
new file mode 100644
index 0000000000000000000000000000000000000000..812d1fedb4b06173cbf1e49fa0732ca218e3ead1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run11.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (27ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (14ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (19ms)
+    ✓ LayoutSQL;n=512 (65ms)
+    ✓ LayoutSQL;n=1024 (70ms)
+    ✓ LayoutSQL;n=2048 (166ms)
+    ✓ LayoutSQL;n=4096 (335ms)
+    ✓ LayoutSQL;n=8192 (799ms)
+    ✓ LayoutSQL;n=16384 (2244ms)
+    ✓ LayoutSQL;n=32768 (11381ms)
+    ✓ LayoutSQL;n=65536 (28717ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run12.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run12.test
new file mode 100644
index 0000000000000000000000000000000000000000..76f5c6a4c64f3679175a8850b34eedfa856c6df6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run12.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (21ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (33ms)
+    ✓ LayoutSQL;n=1024 (87ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (324ms)
+    ✓ LayoutSQL;n=8192 (794ms)
+    ✓ LayoutSQL;n=16384 (2184ms)
+    ✓ LayoutSQL;n=32768 (7323ms)
+    ✓ LayoutSQL;n=65536 (28460ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run13.test
new file mode 100644
index 0000000000000000000000000000000000000000..779a352825e73dc9af991369c26ad9a6e4dc4fb5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run13.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (20ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (11ms)
+    ✓ LayoutSQL;n=128 (14ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (32ms)
+    ✓ LayoutSQL;n=1024 (89ms)
+    ✓ LayoutSQL;n=2048 (160ms)
+    ✓ LayoutSQL;n=4096 (324ms)
+    ✓ LayoutSQL;n=8192 (796ms)
+    ✓ LayoutSQL;n=16384 (2234ms)
+    ✓ LayoutSQL;n=32768 (9513ms)
+    ✓ LayoutSQL;n=65536 (26090ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run14.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run14.test
new file mode 100644
index 0000000000000000000000000000000000000000..42274335d8e1f44b24ba2ccafbfc674bde025878
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run14.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (32ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (50ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (36ms)
+    ✓ LayoutSQL;n=1024 (64ms)
+    ✓ LayoutSQL;n=2048 (185ms)
+    ✓ LayoutSQL;n=4096 (345ms)
+    ✓ LayoutSQL;n=8192 (830ms)
+    ✓ LayoutSQL;n=16384 (2517ms)
+    ✓ LayoutSQL;n=32768 (11393ms)
+    ✓ LayoutSQL;n=65536 (29411ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run15.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run15.test
new file mode 100644
index 0000000000000000000000000000000000000000..64e860454c67e11d4f17a5dcb07f6097bf0a77cf
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run15.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (27ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (30ms)
+    ✓ LayoutSQL;n=1024 (62ms)
+    ✓ LayoutSQL;n=2048 (170ms)
+    ✓ LayoutSQL;n=4096 (312ms)
+    ✓ LayoutSQL;n=8192 (761ms)
+    ✓ LayoutSQL;n=16384 (2158ms)
+    ✓ LayoutSQL;n=32768 (10638ms)
+    ✓ LayoutSQL;n=65536 (28700ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run16.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run16.test
new file mode 100644
index 0000000000000000000000000000000000000000..18425076cc23a6e3d09413daff900089a00fbe36
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run16.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (49ms)
+    ✓ LayoutSQL;n=32 (8ms)
+    ✓ LayoutSQL;n=64 (16ms)
+    ✓ LayoutSQL;n=128 (22ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (34ms)
+    ✓ LayoutSQL;n=512 (34ms)
+    ✓ LayoutSQL;n=1024 (92ms)
+    ✓ LayoutSQL;n=2048 (259ms)
+    ✓ LayoutSQL;n=4096 (618ms)
+    ✓ LayoutSQL;n=8192 (995ms)
+    ✓ LayoutSQL;n=16384 (5301ms)
+    ✓ LayoutSQL;n=32768 (6697ms)
+    ✓ LayoutSQL;n=65536 (27536ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run17.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run17.test
new file mode 100644
index 0000000000000000000000000000000000000000..76d662c3dae0794c5f034090ce6bb7e8d44a85ad
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run17.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (31ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (14ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (67ms)
+    ✓ LayoutSQL;n=512 (35ms)
+    ✓ LayoutSQL;n=1024 (66ms)
+    ✓ LayoutSQL;n=2048 (193ms)
+    ✓ LayoutSQL;n=4096 (344ms)
+    ✓ LayoutSQL;n=8192 (821ms)
+    ✓ LayoutSQL;n=16384 (2256ms)
+    ✓ LayoutSQL;n=32768 (10840ms)
+    ✓ LayoutSQL;n=65536 (30420ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run18.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run18.test
new file mode 100644
index 0000000000000000000000000000000000000000..ebe654fbab4d8a22e6be69d1c3c53064e2049d1b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run18.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (24ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (41ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (18ms)
+    ✓ LayoutSQL;n=512 (32ms)
+    ✓ LayoutSQL;n=1024 (61ms)
+    ✓ LayoutSQL;n=2048 (172ms)
+    ✓ LayoutSQL;n=4096 (324ms)
+    ✓ LayoutSQL;n=8192 (771ms)
+    ✓ LayoutSQL;n=16384 (2329ms)
+    ✓ LayoutSQL;n=32768 (10737ms)
+    ✓ LayoutSQL;n=65536 (27498ms)
+
+
+  13 passing (42s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run19.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run19.test
new file mode 100644
index 0000000000000000000000000000000000000000..9ce1cbf4d689312169841d39e48804a629323e5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run19.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (28ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (12ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (20ms)
+    ✓ LayoutSQL;n=512 (65ms)
+    ✓ LayoutSQL;n=1024 (58ms)
+    ✓ LayoutSQL;n=2048 (162ms)
+    ✓ LayoutSQL;n=4096 (325ms)
+    ✓ LayoutSQL;n=8192 (780ms)
+    ✓ LayoutSQL;n=16384 (2183ms)
+    ✓ LayoutSQL;n=32768 (10638ms)
+    ✓ LayoutSQL;n=65536 (30832ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run2.test
new file mode 100644
index 0000000000000000000000000000000000000000..72c87a0a7ee42a23206687ac4ecc9b8e3fa8abc1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run2.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (28ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (41ms)
+    ✓ LayoutSQL;n=128 (15ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (24ms)
+    ✓ LayoutSQL;n=512 (34ms)
+    ✓ LayoutSQL;n=1024 (60ms)
+    ✓ LayoutSQL;n=2048 (178ms)
+    ✓ LayoutSQL;n=4096 (339ms)
+    ✓ LayoutSQL;n=8192 (812ms)
+    ✓ LayoutSQL;n=16384 (2246ms)
+    ✓ LayoutSQL;n=32768 (11120ms)
+    ✓ LayoutSQL;n=65536 (28869ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run20.test
new file mode 100644
index 0000000000000000000000000000000000000000..bc4e088d34618c44f6d7e4ae1ced50d90bdee5d7
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run20.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (26ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (11ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (21ms)
+    ✓ LayoutSQL;n=512 (72ms)
+    ✓ LayoutSQL;n=1024 (73ms)
+    ✓ LayoutSQL;n=2048 (155ms)
+    ✓ LayoutSQL;n=4096 (361ms)
+    ✓ LayoutSQL;n=8192 (781ms)
+    ✓ LayoutSQL;n=16384 (2193ms)
+    ✓ LayoutSQL;n=32768 (7113ms)
+    ✓ LayoutSQL;n=65536 (26758ms)
+
+
+  13 passing (38s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run3.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run3.test
new file mode 100644
index 0000000000000000000000000000000000000000..e072d0aff2ec25ee8fa4f241d2fca814f289d535
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run3.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (31ms)
+    ✓ LayoutSQL;n=32 (5ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (15ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (30ms)
+    ✓ LayoutSQL;n=512 (68ms)
+    ✓ LayoutSQL;n=1024 (62ms)
+    ✓ LayoutSQL;n=2048 (173ms)
+    ✓ LayoutSQL;n=4096 (339ms)
+    ✓ LayoutSQL;n=8192 (936ms)
+    ✓ LayoutSQL;n=16384 (2189ms)
+    ✓ LayoutSQL;n=32768 (10728ms)
+    ✓ LayoutSQL;n=65536 (29172ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run4.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run4.test
new file mode 100644
index 0000000000000000000000000000000000000000..836ad6994d85214cfc876448fd5dbbf7164ea695
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run4.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (31ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (8ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (32ms)
+    ✓ LayoutSQL;n=512 (66ms)
+    ✓ LayoutSQL;n=1024 (61ms)
+    ✓ LayoutSQL;n=2048 (156ms)
+    ✓ LayoutSQL;n=4096 (316ms)
+    ✓ LayoutSQL;n=8192 (759ms)
+    ✓ LayoutSQL;n=16384 (2129ms)
+    ✓ LayoutSQL;n=32768 (7867ms)
+    ✓ LayoutSQL;n=65536 (27563ms)
+
+
+  13 passing (39s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run5.test
new file mode 100644
index 0000000000000000000000000000000000000000..4a01e27601e5ac4b7342fc30a74583cf7b5f4c0d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run5.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (32ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (6ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (21ms)
+    ✓ LayoutSQL;n=512 (34ms)
+    ✓ LayoutSQL;n=1024 (62ms)
+    ✓ LayoutSQL;n=2048 (189ms)
+    ✓ LayoutSQL;n=4096 (338ms)
+    ✓ LayoutSQL;n=8192 (815ms)
+    ✓ LayoutSQL;n=16384 (2301ms)
+    ✓ LayoutSQL;n=32768 (10693ms)
+    ✓ LayoutSQL;n=65536 (28652ms)
+
+
+  13 passing (43s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run6.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run6.test
new file mode 100644
index 0000000000000000000000000000000000000000..e25a51c6dd773bdec4646d50fc82b54ffd95400f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run6.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (22ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (13ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (31ms)
+    ✓ LayoutSQL;n=512 (36ms)
+    ✓ LayoutSQL;n=1024 (93ms)
+    ✓ LayoutSQL;n=2048 (165ms)
+    ✓ LayoutSQL;n=4096 (341ms)
+    ✓ LayoutSQL;n=8192 (811ms)
+    ✓ LayoutSQL;n=16384 (2260ms)
+    ✓ LayoutSQL;n=32768 (11394ms)
+    ✓ LayoutSQL;n=65536 (30102ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run7.test
new file mode 100644
index 0000000000000000000000000000000000000000..e838c6947a3adf1efa3be907a7bdc3b886a022d6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run7.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (22ms)
+    ✓ LayoutSQL;n=32 (3ms)
+    ✓ LayoutSQL;n=64 (5ms)
+    ✓ LayoutSQL;n=128 (11ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (21ms)
+    ✓ LayoutSQL;n=512 (34ms)
+    ✓ LayoutSQL;n=1024 (92ms)
+    ✓ LayoutSQL;n=2048 (167ms)
+    ✓ LayoutSQL;n=4096 (339ms)
+    ✓ LayoutSQL;n=8192 (814ms)
+    ✓ LayoutSQL;n=16384 (2287ms)
+    ✓ LayoutSQL;n=32768 (11138ms)
+    ✓ LayoutSQL;n=65536 (29997ms)
+
+
+  13 passing (45s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run8.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run8.test
new file mode 100644
index 0000000000000000000000000000000000000000..c0b895087da67e845b6a0b427001c53a360e99eb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run8.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (30ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (7ms)
+    ✓ LayoutSQL;n=128 (51ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (27ms)
+    ✓ LayoutSQL;n=512 (31ms)
+    ✓ LayoutSQL;n=1024 (67ms)
+    ✓ LayoutSQL;n=2048 (202ms)
+    ✓ LayoutSQL;n=4096 (329ms)
+    ✓ LayoutSQL;n=8192 (782ms)
+    ✓ LayoutSQL;n=16384 (2434ms)
+    ✓ LayoutSQL;n=32768 (10120ms)
+    ✓ LayoutSQL;n=65536 (29885ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2018-10-09/linear8/run9.test b/experiments/develop_processed_var_graph/2018-10-09/linear8/run9.test
new file mode 100644
index 0000000000000000000000000000000000000000..330046a49a61bbfe5b228a170fc7ddd7b939485e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2018-10-09/linear8/run9.test
@@ -0,0 +1,33 @@
+
+> blendb@0.0.1 test /home/blendb/blendb
+> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha
+
+
+
+  Article experiments
+    ✓ LayoutSQL;n=16 (31ms)
+    ✓ LayoutSQL;n=32 (4ms)
+    ✓ LayoutSQL;n=64 (45ms)
+    ✓ LayoutSQL;n=128 (15ms)
+
+  Article experiments
+    ✓ LayoutSQL;n=256 (33ms)
+    ✓ LayoutSQL;n=512 (31ms)
+    ✓ LayoutSQL;n=1024 (61ms)
+    ✓ LayoutSQL;n=2048 (185ms)
+    ✓ LayoutSQL;n=4096 (329ms)
+    ✓ LayoutSQL;n=8192 (796ms)
+    ✓ LayoutSQL;n=16384 (2216ms)
+    ✓ LayoutSQL;n=32768 (10811ms)
+    ✓ LayoutSQL;n=65536 (29373ms)
+
+
+  13 passing (44s)
+
+
+=============================== Coverage summary ===============================
+Statements   : 57.44% ( 587/1022 )
+Branches     : 32.32% ( 138/427 )
+Functions    : 54.04% ( 107/198 )
+Lines        : 57.91% ( 560/967 )
+================================================================================
diff --git a/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..aad5e152a9b2a36d7b324a6e4c87aa8807994b7a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1390.15
+Mediana        = 1227
+Variancia      = 254611.42
+Desvio Padrao  = 504.59
+Coef. Variacao = 0.36
+Min            = 1086
+Max            = 3590
+Esq, Dir.      = 1314.3838 , 1465.9162
diff --git a/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..edb5bec31dcdec2b11d70273ae8f1aa27b6e3cc4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+2048 1269
+2048 1329
+2048 1233
+2048 1315
+2048 1167
+2048 1236
+2048 1276
+2048 1172
+2048 1248
+2048 1211
+2048 1211
+2048 1151
+2048 1198
+2048 1131
+2048 1213
+2048 1184
+2048 1266
+2048 1182
+2048 1222
+2048 1186
+2048 2133
+2048 2581
+2048 2478
+2048 1445
+2048 3409
+2048 3172
+2048 1441
+2048 1134
+2048 3590
+2048 3163
+2048 1412
+2048 3066
+2048 2350
+2048 1791
+2048 2050
+2048 3249
+2048 2164
+2048 1620
+2048 1302
+2048 1264
+2048 1254
+2048 1179
+2048 1154
+2048 1231
+2048 1284
+2048 1117
+2048 1307
+2048 1159
+2048 1233
+2048 1346
+2048 1180
+2048 1275
+2048 1206
+2048 1163
+2048 1201
+2048 1313
+2048 1228
+2048 1301
+2048 1115
+2048 1184
+2048 1147
+2048 1356
+2048 1372
+2048 1179
+2048 1269
+2048 1252
+2048 1185
+2048 1151
+2048 1327
+2048 1191
+2048 1314
+2048 1323
+2048 1133
+2048 1099
+2048 1153
+2048 1284
+2048 1156
+2048 1240
+2048 1463
+2048 1214
+2048 1138
+2048 1228
+2048 1138
+2048 1202
+2048 1226
+2048 1342
+2048 1105
+2048 1143
+2048 1209
+2048 1145
+2048 1213
+2048 1217
+2048 1221
+2048 1145
+2048 1128
+2048 1220
+2048 1176
+2048 1228
+2048 1301
+2048 1175
+2048 1146
+2048 1274
+2048 1270
+2048 1230
+2048 1167
+2048 1302
+2048 1223
+2048 1240
+2048 1416
+2048 1144
+2048 1232
+2048 1216
+2048 1205
+2048 1284
+2048 1226
+2048 1086
+2048 1193
+2048 1189
+2048 1232
+2048 1191
diff --git a/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a17acbf15bc6155fbef7fb1bb3f5351afbc8028a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 940.83
+Mediana        = 901
+Variancia      = 57708.46
+Desvio Padrao  = 240.23
+Coef. Variacao = 0.26
+Min            = 694
+Max            = 2147
+Esq, Dir.      = 904.7541 , 976.8959
diff --git a/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ab5f3bbe3477e63eeb7bc2f286cd55e5fd379465
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+2048 1001
+2048 917
+2048 897
+2048 842
+2048 934
+2048 967
+2048 910
+2048 997
+2048 1033
+2048 733
+2048 923
+2048 718
+2048 947
+2048 982
+2048 893
+2048 720
+2048 730
+2048 991
+2048 870
+2048 952
+2048 1547
+2048 1172
+2048 1054
+2048 1222
+2048 1087
+2048 1265
+2048 963
+2048 1764
+2048 1079
+2048 1452
+2048 984
+2048 1194
+2048 1995
+2048 983
+2048 1124
+2048 1038
+2048 2147
+2048 1250
+2048 1750
+2048 1314
+2048 878
+2048 920
+2048 985
+2048 905
+2048 760
+2048 782
+2048 1070
+2048 958
+2048 787
+2048 860
+2048 911
+2048 725
+2048 827
+2048 884
+2048 734
+2048 881
+2048 709
+2048 749
+2048 850
+2048 752
+2048 725
+2048 715
+2048 874
+2048 714
+2048 948
+2048 754
+2048 728
+2048 754
+2048 998
+2048 938
+2048 712
+2048 723
+2048 1040
+2048 977
+2048 925
+2048 730
+2048 872
+2048 774
+2048 983
+2048 881
+2048 842
+2048 1052
+2048 726
+2048 876
+2048 739
+2048 883
+2048 951
+2048 989
+2048 702
+2048 833
+2048 715
+2048 995
+2048 876
+2048 727
+2048 967
+2048 734
+2048 884
+2048 864
+2048 881
+2048 700
+2048 908
+2048 994
+2048 725
+2048 1029
+2048 884
+2048 959
+2048 870
+2048 1002
+2048 730
+2048 941
+2048 775
+2048 910
+2048 855
+2048 954
+2048 1092
+2048 886
+2048 971
+2048 694
+2048 887
+2048 864
diff --git a/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4e7b0dbc4d814997211f7335d89533a765fd5fa5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 175.9
+Mediana        = 168.5
+Variancia      = 559.57
+Desvio Padrao  = 23.66
+Coef. Variacao = 0.13
+Min            = 155
+Max            = 259
+Esq, Dir.      = 167.1996 , 184.6004
diff --git a/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..48bde2d348c615eb5d076627fbc0bfaf4315d8ce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/2048-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+2048 162
+2048 155
+2048 178
+2048 185
+2048 189
+2048 165
+2048 170
+2048 155
+2048 202
+2048 161
+2048 165
+2048 193
+2048 167
+2048 185
+2048 156
+2048 160
+2048 173
+2048 172
+2048 259
+2048 166
diff --git a/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..4bdb2cb97868707686593fb197bc9dcbbe039ae5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 47.41
+Mediana        = 34
+Variancia      = 1393.62
+Desvio Padrao  = 37.33
+Coef. Variacao = 0.79
+Min            = 31
+Max            = 237
+Esq, Dir.      = 41.8029 , 53.0138
diff --git a/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..30641d031eeb3b0e3bc61ef4cadf34ec045e07e9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+256 35
+256 36
+256 33
+256 33
+256 33
+256 33
+256 35
+256 33
+256 36
+256 35
+256 36
+256 32
+256 34
+256 33
+256 35
+256 37
+256 36
+256 35
+256 37
+256 33
+256 168
+256 74
+256 163
+256 43
+256 77
+256 74
+256 85
+256 68
+256 36
+256 186
+256 184
+256 237
+256 160
+256 35
+256 81
+256 80
+256 118
+256 183
+256 75
+256 88
+256 35
+256 33
+256 31
+256 33
+256 35
+256 32
+256 36
+256 33
+256 33
+256 36
+256 32
+256 36
+256 36
+256 33
+256 35
+256 34
+256 34
+256 36
+256 32
+256 34
+256 33
+256 36
+256 36
+256 33
+256 87
+256 36
+256 33
+256 33
+256 35
+256 34
+256 33
+256 36
+256 34
+256 33
+256 34
+256 34
+256 32
+256 35
+256 39
+256 34
+256 32
+256 34
+256 34
+256 32
+256 34
+256 36
+256 31
+256 33
+256 33
+256 34
+256 37
+256 34
+256 36
+256 34
+256 34
+256 34
+256 34
+256 34
+256 36
+256 34
+256 33
+256 35
+256 37
+256 35
+256 34
+256 36
+256 33
+256 34
+256 37
+256 32
+256 34
+256 34
+256 34
+256 38
+256 34
+256 32
+256 32
+256 35
+256 33
+256 33
diff --git a/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..12649ab2896d1d7f29d2371022fed88ac3b9d932
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 34.62
+Mediana        = 30
+Variancia      = 176.19
+Desvio Padrao  = 13.27
+Coef. Variacao = 0.38
+Min            = 25
+Max            = 95
+Esq, Dir.      = 32.6319 , 36.6181
diff --git a/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..79c98c3ca9293efb0beb409a94410e1dd0d97d76
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+256 31
+256 32
+256 28
+256 39
+256 28
+256 30
+256 30
+256 33
+256 30
+256 27
+256 28
+256 30
+256 29
+256 33
+256 29
+256 30
+256 31
+256 30
+256 28
+256 32
+256 53
+256 62
+256 50
+256 56
+256 55
+256 27
+256 50
+256 72
+256 50
+256 32
+256 76
+256 36
+256 95
+256 87
+256 25
+256 60
+256 47
+256 89
+256 58
+256 75
+256 32
+256 32
+256 31
+256 30
+256 29
+256 30
+256 29
+256 30
+256 33
+256 28
+256 32
+256 26
+256 27
+256 29
+256 30
+256 28
+256 29
+256 29
+256 33
+256 31
+256 29
+256 29
+256 32
+256 30
+256 27
+256 30
+256 29
+256 37
+256 29
+256 29
+256 32
+256 30
+256 28
+256 30
+256 30
+256 32
+256 31
+256 30
+256 30
+256 29
+256 29
+256 29
+256 31
+256 30
+256 30
+256 30
+256 28
+256 29
+256 27
+256 40
+256 29
+256 28
+256 28
+256 29
+256 28
+256 29
+256 29
+256 28
+256 27
+256 28
+256 39
+256 30
+256 27
+256 32
+256 31
+256 30
+256 30
+256 31
+256 28
+256 30
+256 30
+256 30
+256 30
+256 33
+256 30
+256 29
+256 30
+256 25
+256 30
+256 30
diff --git a/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..14d6677ddd48fdf03efbe926241c96c33ef3e4cb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 27.75
+Mediana        = 28.5
+Variancia      = 120.83
+Desvio Padrao  = 10.99
+Coef. Variacao = 0.4
+Min            = 16
+Max            = 67
+Esq, Dir.      = 23.7071 , 31.7929
diff --git a/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..4328b87a3d894c0dc6056a31d343f77f5bb1c9ac
--- /dev/null
+++ b/experiments/develop_processed_var_graph/256-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+256 20
+256 21
+256 24
+256 32
+256 21
+256 31
+256 30
+256 31
+256 27
+256 16
+256 18
+256 67
+256 21
+256 33
+256 32
+256 30
+256 30
+256 18
+256 34
+256 19
diff --git a/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..08467a19c72fc96b6117451a18ae23ed07827e71
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 7.61
+Mediana        = 6
+Variancia      = 32.48
+Desvio Padrao  = 5.7
+Coef. Variacao = 0.75
+Min            = 4
+Max            = 37
+Esq, Dir.      = 6.7526 , 8.464
diff --git a/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f0bdd2e2edc09071a1a01c64812990f3f7bb937a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+32 6
+32 5
+32 5
+32 5
+32 12
+32 5
+32 6
+32 12
+32 6
+32 6
+32 6
+32 5
+32 5
+32 5
+32 5
+32 6
+32 12
+32 6
+32 6
+32 5
+32 34
+32 12
+32 37
+32 7
+32 11
+32 14
+32 9
+32 7
+32 6
+32 22
+32 22
+32 33
+32 20
+32 6
+32 9
+32 18
+32 8
+32 23
+32 11
+32 9
+32 6
+32 6
+32 5
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 6
+32 5
+32 5
+32 12
+32 6
+32 5
+32 13
+32 5
+32 5
+32 6
+32 12
+32 5
+32 6
+32 6
+32 7
+32 6
+32 7
+32 4
+32 6
+32 6
+32 6
+32 7
+32 5
+32 5
+32 5
+32 5
+32 5
+32 6
+32 5
+32 5
+32 5
+32 6
+32 5
+32 6
+32 7
+32 5
+32 5
+32 12
+32 12
+32 5
+32 5
+32 5
+32 4
+32 7
+32 6
+32 6
+32 5
+32 6
+32 6
+32 6
+32 6
+32 6
+32 5
+32 5
+32 4
+32 6
+32 5
+32 5
+32 5
+32 6
+32 5
+32 5
+32 6
+32 6
+32 4
+32 4
+32 6
+32 5
+32 5
diff --git a/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a6a408bdcd0c418d5c254f72f0d0c671a91911b1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 5.62
+Mediana        = 5
+Variancia      = 14.15
+Desvio Padrao  = 3.76
+Coef. Variacao = 0.67
+Min            = 4
+Max            = 34
+Esq, Dir.      = 5.0518 , 6.1816
diff --git a/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..1fba3755ac1b21f6cd4ec564e153168780c2baba
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+32 5
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
+32 4
+32 13
+32 8
+32 9
+32 9
+32 9
+32 8
+32 24
+32 8
+32 14
+32 9
+32 5
+32 13
+32 14
+32 4
+32 9
+32 5
+32 34
+32 13
+32 9
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 5
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 5
+32 4
+32 4
+32 4
+32 5
+32 5
+32 4
+32 4
+32 4
+32 5
+32 6
+32 5
+32 5
+32 4
+32 5
+32 5
+32 5
+32 4
+32 5
+32 5
+32 4
+32 5
+32 4
+32 4
+32 5
+32 5
+32 4
+32 5
+32 5
diff --git a/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b79cc4e62f0d0877472240ba7d7e3a85d365df5a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4.15
+Mediana        = 4
+Variancia      = 0.98
+Desvio Padrao  = 0.99
+Coef. Variacao = 0.24
+Min            = 3
+Max            = 8
+Esq, Dir.      = 3.7866 , 4.5134
diff --git a/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b4e958be3c4e3e7ea7de79f0691df7cba644518f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+32 4
+32 4
+32 4
+32 4
+32 4
+32 4
+32 3
+32 4
+32 4
+32 4
+32 4
+32 4
+32 3
+32 4
+32 4
+32 4
+32 5
+32 4
+32 8
+32 4
diff --git a/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..87ed4a0ac88ed4b759438dbe3819a5bcdfe48683
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 373388.44
+Mediana        = 327953.5
+Variancia      = 13372308769.64
+Desvio Padrao  = 115638.7
+Coef. Variacao = 0.31
+Min            = 267872
+Max            = 723872
+Esq, Dir.      = 356024.8393 , 390752.044
diff --git a/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..832e4c62ac8b38b0bfb15038ceb1937281339e3d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+32768 315861
+32768 358428
+32768 332914
+32768 338682
+32768 321377
+32768 330866
+32768 344370
+32768 325033
+32768 293889
+32768 360118
+32768 325729
+32768 331873
+32768 311508
+32768 299734
+32768 315608
+32768 314960
+32768 320330
+32768 349788
+32768 334996
+32768 309098
+32768 635689
+32768 601664
+32768 593219
+32768 643746
+32768 723872
+32768 587302
+32768 601944
+32768 596924
+32768 608508
+32768 545852
+32768 687097
+32768 648829
+32768 577259
+32768 663640
+32768 631900
+32768 665900
+32768 585672
+32768 597186
+32768 661728
+32768 619165
+32768 294515
+32768 283549
+32768 318139
+32768 312451
+32768 320003
+32768 320367
+32768 321677
+32768 335704
+32768 317774
+32768 343758
+32768 307082
+32768 333104
+32768 296309
+32768 303653
+32768 325266
+32768 345166
+32768 339591
+32768 352048
+32768 292407
+32768 306975
+32768 310163
+32768 332041
+32768 361270
+32768 332875
+32768 309171
+32768 316930
+32768 294160
+32768 320167
+32768 344493
+32768 314931
+32768 340305
+32768 350194
+32768 291707
+32768 313058
+32768 290954
+32768 326769
+32768 306105
+32768 329278
+32768 379872
+32768 287752
+32768 318256
+32768 317073
+32768 326236
+32768 358641
+32768 329954
+32768 378239
+32768 284436
+32768 284464
+32768 339424
+32768 316604
+32768 318622
+32768 336626
+32768 327041
+32768 322047
+32768 299434
+32768 308278
+32768 343561
+32768 328866
+32768 372815
+32768 269336
+32768 317792
+32768 343379
+32768 353088
+32768 320261
+32768 320711
+32768 360009
+32768 329482
+32768 336690
+32768 352026
+32768 277433
+32768 325614
+32768 326821
+32768 313121
+32768 358097
+32768 334558
+32768 267872
+32768 296838
+32768 333280
+32768 315605
+32768 309992
diff --git a/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..82ac237dbc63e95832c5eeaf68d9f260991f687e
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 36004.97
+Mediana        = 32383
+Variancia      = 86008446.7
+Desvio Padrao  = 9274.07
+Coef. Variacao = 0.26
+Min            = 28655
+Max            = 68604
+Esq, Dir.      = 34612.4282 , 37397.5051
diff --git a/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b23aa413a9507dfb7a7e5a57aca7c5cd9089a0eb
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+32768 31052
+32768 30684
+32768 34027
+32768 31181
+32768 32728
+32768 31505
+32768 32270
+32768 32379
+32768 31672
+32768 31010
+32768 31522
+32768 31435
+32768 32079
+32768 36285
+32768 32704
+32768 31742
+32768 28655
+32768 30817
+32768 30219
+32768 32179
+32768 47932
+32768 60590
+32768 49840
+32768 62001
+32768 60847
+32768 47617
+32768 51926
+32768 55998
+32768 53012
+32768 53014
+32768 67528
+32768 62530
+32768 68604
+32768 47664
+32768 44493
+32768 50964
+32768 60565
+32768 57697
+32768 55021
+32768 52615
+32768 34923
+32768 30588
+32768 36051
+32768 33411
+32768 32454
+32768 31126
+32768 34144
+32768 33671
+32768 30677
+32768 32922
+32768 31505
+32768 31483
+32768 32911
+32768 32329
+32768 30835
+32768 35112
+32768 30257
+32768 31977
+32768 30597
+32768 31699
+32768 32650
+32768 31660
+32768 31257
+32768 30347
+32768 32627
+32768 34491
+32768 32319
+32768 30180
+32768 30228
+32768 33725
+32768 33814
+32768 33048
+32768 31767
+32768 32727
+32768 30268
+32768 31944
+32768 32906
+32768 32937
+32768 32901
+32768 32334
+32768 31536
+32768 32774
+32768 32265
+32768 31489
+32768 30013
+32768 32653
+32768 34368
+32768 32088
+32768 32439
+32768 30001
+32768 33635
+32768 33254
+32768 31247
+32768 29096
+32768 31230
+32768 32822
+32768 31204
+32768 31599
+32768 32395
+32768 30201
+32768 32825
+32768 32387
+32768 31259
+32768 30542
+32768 32915
+32768 31111
+32768 32856
+32768 33213
+32768 32226
+32768 31740
+32768 33772
+32768 34827
+32768 31196
+32768 35580
+32768 31689
+32768 33966
+32768 29811
+32768 30183
+32768 31341
+32768 31443
diff --git a/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..caf48b94c83a748bfc4e45f2d9dc99a3d157a8b1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10099.5
+Mediana        = 10732.5
+Variancia      = 2360619.84
+Desvio Padrao  = 1536.43
+Coef. Variacao = 0.15
+Min            = 6697
+Max            = 11394
+Esq, Dir.      = 9534.4 , 10664.6
diff --git a/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f4034cd30637ef5a739f53e56be998b6a36d07b8
--- /dev/null
+++ b/experiments/develop_processed_var_graph/32768-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+32768 10638
+32768 7113
+32768 11120
+32768 11393
+32768 10693
+32768 11394
+32768 10638
+32768 7323
+32768 10120
+32768 11100
+32768 10746
+32768 10840
+32768 11138
+32768 10811
+32768 7867
+32768 9513
+32768 10728
+32768 10737
+32768 6697
+32768 11381
diff --git a/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..aa221fd62ea9c7d9ae8adb0d7caa2cd7e7c02ee6
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 5420.73
+Mediana        = 4755
+Variancia      = 4402896.49
+Desvio Padrao  = 2098.31
+Coef. Variacao = 0.39
+Min            = 4091
+Max            = 14304
+Esq, Dir.      = 5105.6559 , 5735.7941
diff --git a/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..a0ee9a4c27d28cb891f897d07dd21f7b8b37505c
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+4096 4785
+4096 5230
+4096 4798
+4096 4646
+4096 4296
+4096 4770
+4096 5378
+4096 4538
+4096 4523
+4096 4762
+4096 4327
+4096 4965
+4096 4761
+4096 4326
+4096 4878
+4096 4512
+4096 4452
+4096 4512
+4096 4660
+4096 4575
+4096 9877
+4096 10333
+4096 10024
+4096 6452
+4096 14304
+4096 12796
+4096 4962
+4096 8799
+4096 13062
+4096 12152
+4096 7766
+4096 8782
+4096 10435
+4096 5135
+4096 4903
+4096 12923
+4096 8308
+4096 11403
+4096 6489
+4096 5244
+4096 4787
+4096 4178
+4096 4638
+4096 4749
+4096 4916
+4096 4308
+4096 4885
+4096 4425
+4096 4732
+4096 5019
+4096 4331
+4096 4819
+4096 4913
+4096 4383
+4096 4609
+4096 4959
+4096 4552
+4096 4999
+4096 4477
+4096 4586
+4096 4841
+4096 5236
+4096 4928
+4096 4550
+4096 4892
+4096 4786
+4096 4481
+4096 4773
+4096 4992
+4096 4511
+4096 4594
+4096 4724
+4096 4353
+4096 4217
+4096 4563
+4096 4880
+4096 4479
+4096 4799
+4096 5234
+4096 4835
+4096 4349
+4096 4290
+4096 4354
+4096 4479
+4096 4614
+4096 5166
+4096 4267
+4096 4219
+4096 4537
+4096 4473
+4096 4371
+4096 4763
+4096 4725
+4096 4933
+4096 4396
+4096 4466
+4096 4434
+4096 4417
+4096 4909
+4096 4628
+4096 4327
+4096 4857
+4096 5323
+4096 4853
+4096 4384
+4096 5044
+4096 4643
+4096 4652
+4096 5337
+4096 4424
+4096 4828
+4096 4327
+4096 4486
+4096 5072
+4096 4741
+4096 4091
+4096 4645
+4096 4466
+4096 4915
+4096 4506
diff --git a/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..5b3265e699150eceab7edeb8f5302da6b8785aa1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 4687.91
+Mediana        = 4337
+Variancia      = 1367762.69
+Desvio Padrao  = 1169.51
+Coef. Variacao = 0.25
+Min            = 3439
+Max            = 9086
+Esq, Dir.      = 4512.3013 , 4863.5154
diff --git a/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b08aaa50ba0480a423cd9af0dfa8d713bb1e9a55
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+4096 4798
+4096 4247
+4096 4346
+4096 4130
+4096 4172
+4096 4820
+4096 4324
+4096 4182
+4096 4821
+4096 4187
+4096 4981
+4096 3709
+4096 4555
+4096 4553
+4096 4902
+4096 4010
+4096 4021
+4096 4315
+4096 4289
+4096 4883
+4096 6799
+4096 8062
+4096 6166
+4096 6693
+4096 6311
+4096 6746
+4096 4930
+4096 8137
+4096 6183
+4096 8289
+4096 4792
+4096 6189
+4096 9086
+4096 7313
+4096 6299
+4096 6872
+4096 8777
+4096 6496
+4096 8323
+4096 5719
+4096 4825
+4096 4321
+4096 4542
+4096 4619
+4096 4276
+4096 4545
+4096 5032
+4096 4717
+4096 4348
+4096 4134
+4096 3827
+4096 3926
+4096 4162
+4096 4373
+4096 3588
+4096 4214
+4096 3607
+4096 3823
+4096 4252
+4096 3808
+4096 3688
+4096 3744
+4096 4229
+4096 3755
+4096 4842
+4096 4166
+4096 3681
+4096 3619
+4096 4615
+4096 4607
+4096 3469
+4096 3771
+4096 4598
+4096 4631
+4096 4209
+4096 4595
+4096 4643
+4096 4025
+4096 4654
+4096 4557
+4096 4306
+4096 4541
+4096 4003
+4096 4239
+4096 4014
+4096 4558
+4096 4584
+4096 4608
+4096 3439
+4096 4328
+4096 3442
+4096 4732
+4096 4085
+4096 3612
+4096 4377
+4096 3493
+4096 3975
+4096 4255
+4096 4121
+4096 3713
+4096 4024
+4096 4529
+4096 3563
+4096 4949
+4096 4220
+4096 4108
+4096 4239
+4096 4264
+4096 3473
+4096 5169
+4096 3948
+4096 4387
+4096 4316
+4096 3752
+4096 4207
+4096 4367
+4096 4539
+4096 3645
+4096 4559
+4096 4402
diff --git a/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..8848fa9f12ad6be75a3ba0fd1d8eba8333264631
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 347.2
+Mediana        = 336.5
+Variancia      = 4193.75
+Desvio Padrao  = 64.76
+Coef. Variacao = 0.19
+Min            = 312
+Max            = 618
+Esq, Dir.      = 323.3816 , 371.0184
diff --git a/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..267959c31ec79477add1e9e00c441233cda07b52
--- /dev/null
+++ b/experiments/develop_processed_var_graph/4096-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+4096 325
+4096 361
+4096 339
+4096 345
+4096 338
+4096 341
+4096 312
+4096 324
+4096 329
+4096 322
+4096 340
+4096 344
+4096 339
+4096 329
+4096 316
+4096 324
+4096 339
+4096 324
+4096 618
+4096 335
diff --git a/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..a32e4060ce3010906ed6858d4a3ca2abf55b6ba3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 185.25
+Mediana        = 102
+Variancia      = 60127.87
+Desvio Padrao  = 245.21
+Coef. Variacao = 1.32
+Min            = 92
+Max            = 1332
+Esq, Dir.      = 148.4308 , 222.0692
diff --git a/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..1b87cdd34324a77727b5b06c0b60481e38431ce9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+512 104
+512 109
+512 103
+512 99
+512 100
+512 104
+512 103
+512 100
+512 103
+512 104
+512 104
+512 98
+512 101
+512 92
+512 101
+512 100
+512 107
+512 100
+512 101
+512 101
+512 1013
+512 215
+512 1085
+512 120
+512 241
+512 248
+512 532
+512 484
+512 317
+512 1089
+512 1332
+512 1158
+512 937
+512 104
+512 501
+512 458
+512 950
+512 646
+512 186
+512 487
+512 105
+512 98
+512 94
+512 99
+512 106
+512 93
+512 106
+512 98
+512 98
+512 108
+512 94
+512 105
+512 107
+512 97
+512 100
+512 104
+512 99
+512 106
+512 94
+512 102
+512 94
+512 111
+512 111
+512 97
+512 109
+512 104
+512 101
+512 96
+512 105
+512 102
+512 99
+512 103
+512 96
+512 95
+512 98
+512 99
+512 96
+512 103
+512 143
+512 98
+512 93
+512 100
+512 97
+512 95
+512 105
+512 110
+512 94
+512 94
+512 95
+512 103
+512 101
+512 99
+512 102
+512 96
+512 94
+512 99
+512 101
+512 100
+512 102
+512 99
+512 95
+512 105
+512 112
+512 102
+512 97
+512 110
+512 99
+512 104
+512 117
+512 96
+512 99
+512 100
+512 102
+512 109
+512 101
+512 92
+512 99
+512 102
+512 103
+512 97
diff --git a/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0ee6ba64a3422af4cfd8e7d387757161ced3dee3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 80.12
+Mediana        = 74
+Variancia      = 770.01
+Desvio Padrao  = 27.75
+Coef. Variacao = 0.35
+Min            = 53
+Max            = 188
+Esq, Dir.      = 75.9584 , 84.2916
diff --git a/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..b0aea5f678e4e98b422ed4421c84650742429dc4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+512 85
+512 82
+512 63
+512 77
+512 83
+512 73
+512 61
+512 87
+512 63
+512 84
+512 60
+512 78
+512 58
+512 74
+512 58
+512 74
+512 65
+512 86
+512 63
+512 87
+512 174
+512 156
+512 107
+512 113
+512 111
+512 54
+512 83
+512 150
+512 119
+512 67
+512 69
+512 80
+512 188
+512 154
+512 58
+512 182
+512 132
+512 169
+512 144
+512 155
+512 79
+512 76
+512 60
+512 69
+512 64
+512 60
+512 79
+512 74
+512 80
+512 57
+512 78
+512 73
+512 55
+512 77
+512 75
+512 86
+512 72
+512 56
+512 74
+512 59
+512 59
+512 77
+512 64
+512 53
+512 60
+512 82
+512 77
+512 81
+512 59
+512 61
+512 60
+512 70
+512 72
+512 90
+512 93
+512 61
+512 83
+512 89
+512 83
+512 86
+512 82
+512 74
+512 62
+512 78
+512 62
+512 72
+512 80
+512 70
+512 59
+512 81
+512 76
+512 86
+512 56
+512 58
+512 67
+512 62
+512 56
+512 58
+512 59
+512 56
+512 79
+512 90
+512 74
+512 79
+512 77
+512 89
+512 72
+512 63
+512 83
+512 61
+512 68
+512 62
+512 60
+512 79
+512 71
+512 60
+512 63
+512 71
+512 83
+512 88
diff --git a/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7a331771e76ea3d5d78c72e72b3eb4e4ffd50587
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 44.7
+Mediana        = 34.5
+Variancia      = 263.06
+Desvio Padrao  = 16.22
+Coef. Variacao = 0.36
+Min            = 30
+Max            = 72
+Esq, Dir.      = 38.7346 , 50.6654
diff --git a/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e908c5a7462a754ca0e63e801ca51016039223e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/512-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+512 65
+512 72
+512 34
+512 36
+512 34
+512 36
+512 30
+512 33
+512 31
+512 61
+512 65
+512 35
+512 34
+512 31
+512 66
+512 32
+512 68
+512 32
+512 34
+512 65
diff --git a/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..ecabd67caae7613afe40449a2987d15940c51521
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 10.06
+Mediana        = 8
+Variancia      = 66.19
+Desvio Padrao  = 8.14
+Coef. Variacao = 0.81
+Min            = 6
+Max            = 62
+Esq, Dir.      = 8.8367 , 11.2799
diff --git a/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..531f0b400e540ad373d102d6d041ea67fd8199c2
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+64 8
+64 7
+64 7
+64 7
+64 8
+64 8
+64 8
+64 8
+64 8
+64 7
+64 8
+64 8
+64 7
+64 7
+64 7
+64 8
+64 9
+64 9
+64 9
+64 6
+64 43
+64 16
+64 41
+64 9
+64 18
+64 16
+64 14
+64 12
+64 9
+64 27
+64 35
+64 62
+64 27
+64 8
+64 14
+64 29
+64 12
+64 34
+64 16
+64 15
+64 8
+64 6
+64 7
+64 6
+64 7
+64 7
+64 8
+64 7
+64 7
+64 7
+64 7
+64 9
+64 7
+64 8
+64 9
+64 7
+64 6
+64 7
+64 7
+64 7
+64 7
+64 9
+64 7
+64 7
+64 8
+64 9
+64 7
+64 7
+64 7
+64 7
+64 8
+64 8
+64 7
+64 7
+64 8
+64 7
+64 7
+64 7
+64 8
+64 7
+64 7
+64 7
+64 7
+64 7
+64 7
+64 8
+64 6
+64 7
+64 8
+64 9
+64 8
+64 7
+64 8
+64 7
+64 7
+64 8
+64 7
+64 8
+64 8
+64 9
+64 8
+64 6
+64 8
+64 8
+64 8
+64 7
+64 7
+64 15
+64 8
+64 7
+64 7
+64 7
+64 7
+64 8
+64 8
+64 7
+64 6
+64 7
+64 8
+64 6
diff --git a/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..91e5608163b23fa2cad483c95bf09e051feae4b5
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11.57
+Mediana        = 10
+Variancia      = 20.38
+Desvio Padrao  = 4.51
+Coef. Variacao = 0.39
+Min            = 8
+Max            = 26
+Esq, Dir.      = 10.8888 , 12.2446
diff --git a/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..2034313760256aab3f999a90676d7de8e414e8c1
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+64 10
+64 10
+64 11
+64 10
+64 10
+64 10
+64 11
+64 10
+64 11
+64 9
+64 10
+64 9
+64 9
+64 9
+64 9
+64 9
+64 11
+64 11
+64 10
+64 10
+64 24
+64 19
+64 23
+64 24
+64 22
+64 24
+64 23
+64 17
+64 17
+64 26
+64 23
+64 10
+64 24
+64 11
+64 9
+64 22
+64 11
+64 25
+64 25
+64 23
+64 11
+64 8
+64 9
+64 10
+64 9
+64 10
+64 10
+64 10
+64 10
+64 9
+64 10
+64 9
+64 10
+64 9
+64 11
+64 10
+64 10
+64 9
+64 10
+64 10
+64 9
+64 9
+64 10
+64 9
+64 9
+64 11
+64 10
+64 11
+64 9
+64 10
+64 9
+64 10
+64 9
+64 9
+64 14
+64 9
+64 10
+64 9
+64 9
+64 10
+64 9
+64 10
+64 11
+64 10
+64 11
+64 9
+64 9
+64 9
+64 10
+64 9
+64 10
+64 11
+64 10
+64 10
+64 9
+64 10
+64 11
+64 10
+64 9
+64 9
+64 11
+64 10
+64 10
+64 11
+64 10
+64 10
+64 11
+64 10
+64 10
+64 11
+64 11
+64 11
+64 8
+64 10
+64 10
+64 12
+64 10
+64 8
+64 9
+64 9
diff --git a/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..0eb866679f8f86ad6bcbc2abf5c4d8d21837a59b
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 11.1
+Mediana        = 7
+Variancia      = 124.73
+Desvio Padrao  = 11.17
+Coef. Variacao = 1.01
+Min            = 5
+Max            = 45
+Esq, Dir.      = 6.9924 , 15.2076
diff --git a/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..c0075b44b78af4d8bb826a1cdfcce5a064ec322a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/64-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+64 7
+64 7
+64 41
+64 7
+64 6
+64 7
+64 6
+64 7
+64 7
+64 7
+64 7
+64 7
+64 5
+64 45
+64 8
+64 11
+64 8
+64 6
+64 16
+64 7
diff --git a/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..7d5c897c497326e2c14d260814e040120a5d57fa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 1695113.04
+Mediana        = 1328250
+Variancia      = 724958544990.53
+Desvio Padrao  = 851444.97
+Coef. Variacao = 0.5
+Min            = 1138802
+Max            = 3783762
+Esq, Dir.      = 1567265.2531 , 1822960.8303
diff --git a/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..ae60b6776d9fb9a06827796bdfc3e1fd53ccbdce
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+65536 1366654
+65536 1518349
+65536 1372289
+65536 1247321
+65536 1340352
+65536 1383030
+65536 1394152
+65536 1193744
+65536 1254620
+65536 1427546
+65536 1210541
+65536 1328581
+65536 1304952
+65536 1353851
+65536 1298279
+65536 1289316
+65536 1248413
+65536 1214157
+65536 1322943
+65536 1340997
+65536 3487022
+65536 3497059
+65536 3557820
+65536 3753961
+65536 3783762
+65536 3543227
+65536 3470671
+65536 3507657
+65536 3526868
+65536 3511704
+65536 3506762
+65536 3569747
+65536 3611263
+65536 3758999
+65536 3648128
+65536 3555953
+65536 3584701
+65536 3722420
+65536 3469782
+65536 3607940
+65536 1230120
+65536 1183926
+65536 1304857
+65536 1317612
+65536 1279810
+65536 1343925
+65536 1383951
+65536 1274075
+65536 1382416
+65536 1428122
+65536 1167128
+65536 1300973
+65536 1269647
+65536 1326794
+65536 1278691
+65536 1408007
+65536 1278204
+65536 1438511
+65536 1368325
+65536 1270278
+65536 1316729
+65536 1294522
+65536 1286800
+65536 1388401
+65536 1401408
+65536 1280018
+65536 1266269
+65536 1322843
+65536 1296845
+65536 1385728
+65536 1300751
+65536 1419162
+65536 1299453
+65536 1287508
+65536 1268646
+65536 1320349
+65536 1320387
+65536 1326405
+65536 1297843
+65536 1255639
+65536 1397925
+65536 1170986
+65536 1353141
+65536 1404333
+65536 1390394
+65536 1353556
+65536 1342395
+65536 1283566
+65536 1267506
+65536 1271031
+65536 1183970
+65536 1339833
+65536 1305147
+65536 1319282
+65536 1249128
+65536 1320531
+65536 1374757
+65536 1284867
+65536 1317276
+65536 1332009
+65536 1345035
+65536 1388940
+65536 1521791
+65536 1325232
+65536 1357110
+65536 1419414
+65536 1286648
+65536 1338210
+65536 1327919
+65536 1138802
+65536 1356258
+65536 1263253
+65536 1277587
+65536 1330484
+65536 1320636
+65536 1171679
+65536 1315097
+65536 1360540
+65536 1318535
+65536 1332151
diff --git a/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..b6051096ddd12956625db6c0c8cceed056d45180
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 138323.11
+Mediana        = 127971
+Variancia      = 859174365.29
+Desvio Padrao  = 29311.68
+Coef. Variacao = 0.21
+Min            = 110319
+Max            = 230386
+Esq, Dir.      = 133921.8457 , 142724.371
diff --git a/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..6dad9100739de34aeaa4bd92859d438f2ad949fe
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+65536 132402
+65536 137806
+65536 127007
+65536 121236
+65536 123256
+65536 129626
+65536 134050
+65536 138572
+65536 126698
+65536 129157
+65536 126877
+65536 110548
+65536 124314
+65536 133631
+65536 112732
+65536 125829
+65536 125384
+65536 122370
+65536 130038
+65536 129274
+65536 207371
+65536 183504
+65536 213711
+65536 223920
+65536 212819
+65536 230386
+65536 209905
+65536 206217
+65536 218816
+65536 181902
+65536 192927
+65536 215524
+65536 179267
+65536 180416
+65536 167840
+65536 157274
+65536 210702
+65536 206420
+65536 197871
+65536 188020
+65536 140374
+65536 124516
+65536 137603
+65536 127577
+65536 125353
+65536 128814
+65536 119027
+65536 132492
+65536 141201
+65536 129261
+65536 121346
+65536 123533
+65536 121894
+65536 130831
+65536 126762
+65536 131723
+65536 126791
+65536 111629
+65536 124967
+65536 117035
+65536 142667
+65536 124400
+65536 124345
+65536 127328
+65536 131390
+65536 123654
+65536 139722
+65536 110319
+65536 132519
+65536 125051
+65536 125103
+65536 128618
+65536 127215
+65536 136132
+65536 123912
+65536 129868
+65536 124985
+65536 113758
+65536 129626
+65536 114824
+65536 118206
+65536 129307
+65536 117369
+65536 133113
+65536 112572
+65536 130272
+65536 118792
+65536 112934
+65536 115826
+65536 114913
+65536 127790
+65536 122183
+65536 119381
+65536 146575
+65536 125231
+65536 130902
+65536 129874
+65536 113997
+65536 132379
+65536 128923
+65536 128633
+65536 127444
+65536 122183
+65536 115784
+65536 127424
+65536 115859
+65536 126271
+65536 137860
+65536 123814
+65536 126047
+65536 135696
+65536 139970
+65536 112888
+65536 118774
+65536 128341
+65536 126140
+65536 128152
+65536 125142
+65536 133771
+65536 114257
diff --git a/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..85136819d4cf9379c9ed406e9754f7995adf4ff9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 28880.9
+Mediana        = 29020.5
+Variancia      = 1599277.46
+Desvio Padrao  = 1264.63
+Coef. Variacao = 0.04
+Min            = 26090
+Max            = 30832
+Esq, Dir.      = 28415.7702 , 29346.0298
diff --git a/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..e7244988b0177e47ccc872e52fe3db1e0768a930
--- /dev/null
+++ b/experiments/develop_processed_var_graph/65536-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+65536 30832
+65536 26758
+65536 28869
+65536 29411
+65536 28652
+65536 30102
+65536 28700
+65536 28460
+65536 29885
+65536 30071
+65536 29512
+65536 30420
+65536 29997
+65536 29373
+65536 27563
+65536 26090
+65536 29172
+65536 27498
+65536 27536
+65536 28717
diff --git a/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..733074e5172d0886b6aff4ac6f34de5782871fc4
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 21794
+Mediana        = 18996
+Variancia      = 63827668.55
+Desvio Padrao  = 7989.22
+Coef. Variacao = 0.37
+Min            = 16701
+Max            = 55103
+Esq, Dir.      = 20594.3871 , 22993.6129
diff --git a/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..f497d421098b2311dcd5612e4af57f184aefcf7f
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear2-LayoutSQL.res
@@ -0,0 +1,120 @@
+8192 19937
+8192 20416
+8192 18962
+8192 18872
+8192 17125
+8192 18540
+8192 20378
+8192 18174
+8192 16720
+8192 19410
+8192 18850
+8192 20653
+8192 18399
+8192 17012
+8192 20603
+8192 17763
+8192 18281
+8192 18660
+8192 19896
+8192 18644
+8192 40256
+8192 42143
+8192 39163
+8192 36760
+8192 48673
+8192 33568
+8192 21836
+8192 35939
+8192 55103
+8192 45790
+8192 38933
+8192 20984
+8192 39484
+8192 23440
+8192 29300
+8192 48544
+8192 40214
+8192 49622
+8192 26033
+8192 22825
+8192 19208
+8192 17098
+8192 19603
+8192 19124
+8192 19953
+8192 17125
+8192 19541
+8192 17807
+8192 18326
+8192 19749
+8192 16868
+8192 19090
+8192 19457
+8192 18110
+8192 17997
+8192 20400
+8192 19208
+8192 20106
+8192 18284
+8192 18688
+8192 18653
+8192 21551
+8192 20829
+8192 18201
+8192 19766
+8192 19026
+8192 17602
+8192 17841
+8192 20094
+8192 18696
+8192 17495
+8192 18655
+8192 17252
+8192 16701
+8192 18079
+8192 20101
+8192 19034
+8192 17669
+8192 21042
+8192 19277
+8192 18041
+8192 16841
+8192 17788
+8192 18909
+8192 18992
+8192 21591
+8192 17289
+8192 17400
+8192 17762
+8192 18418
+8192 17559
+8192 19000
+8192 19430
+8192 18727
+8192 17264
+8192 18075
+8192 18369
+8192 18042
+8192 18780
+8192 17681
+8192 17127
+8192 19608
+8192 19839
+8192 19259
+8192 18145
+8192 21705
+8192 18499
+8192 19237
+8192 21111
+8192 17948
+8192 19605
+8192 18348
+8192 18032
+8192 20829
+8192 19433
+8192 17221
+8192 18278
+8192 18444
+8192 19362
+8192 18081
diff --git a/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..9b177bdef9a5d0fa4013c5a4411b34aed9ab0aa9
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 2356.07
+Mediana        = 2125.5
+Variancia      = 354223.68
+Desvio Padrao  = 595.17
+Coef. Variacao = 0.25
+Min            = 1962
+Max            = 4611
+Esq, Dir.      = 2266.7084 , 2445.4416
diff --git a/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..bb3d99ad65f24341d40cc73947d1a87f1b5ae9b0
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear4-LayoutSQL.res
@@ -0,0 +1,120 @@
+8192 2036
+8192 2017
+8192 2169
+8192 2051
+8192 2134
+8192 2052
+8192 2069
+8192 2124
+8192 2108
+8192 2078
+8192 2127
+8192 2030
+8192 2111
+8192 2202
+8192 2218
+8192 2031
+8192 1962
+8192 2100
+8192 2120
+8192 2134
+8192 4056
+8192 3136
+8192 3811
+8192 3863
+8192 3832
+8192 3397
+8192 2323
+8192 4037
+8192 3486
+8192 4196
+8192 3483
+8192 2761
+8192 4611
+8192 4039
+8192 3001
+8192 3222
+8192 4566
+8192 2649
+8192 3633
+8192 2865
+8192 2104
+8192 2046
+8192 2067
+8192 2124
+8192 2095
+8192 2152
+8192 2076
+8192 2255
+8192 2217
+8192 2144
+8192 2055
+8192 2105
+8192 2106
+8192 2136
+8192 2112
+8192 2158
+8192 2059
+8192 2133
+8192 2183
+8192 2120
+8192 2156
+8192 2216
+8192 2163
+8192 2220
+8192 2063
+8192 2197
+8192 2088
+8192 2175
+8192 2226
+8192 2280
+8192 2210
+8192 2137
+8192 2148
+8192 2094
+8192 2040
+8192 2054
+8192 2141
+8192 2101
+8192 2144
+8192 2084
+8192 2053
+8192 2071
+8192 2138
+8192 2076
+8192 2016
+8192 2195
+8192 2205
+8192 2137
+8192 2112
+8192 2269
+8192 2218
+8192 2104
+8192 2064
+8192 1991
+8192 2072
+8192 2170
+8192 2215
+8192 2055
+8192 2090
+8192 1984
+8192 2081
+8192 2157
+8192 2098
+8192 2050
+8192 2115
+8192 2124
+8192 1995
+8192 2121
+8192 2108
+8192 2092
+8192 2277
+8192 2116
+8192 2154
+8192 2049
+8192 2201
+8192 2242
+8192 2059
+8192 2027
+8192 2100
+8192 2104
diff --git a/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.R
new file mode 100644
index 0000000000000000000000000000000000000000..1044559f6ebd4cd6f30a63f4935f42f9090401aa
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.R
@@ -0,0 +1,8 @@
+Media          = 809.1
+Mediana        = 796
+Variancia      = 3401.15
+Desvio Padrao  = 58.32
+Coef. Variacao = 0.07
+Min            = 759
+Max            = 995
+Esq, Dir.      = 787.6501 , 830.5499
diff --git a/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.res
new file mode 100644
index 0000000000000000000000000000000000000000..250574b362e6a67a0ca210ebf603431aabecd70a
--- /dev/null
+++ b/experiments/develop_processed_var_graph/8192-linear8-LayoutSQL.res
@@ -0,0 +1,20 @@
+8192 780
+8192 781
+8192 812
+8192 830
+8192 815
+8192 811
+8192 761
+8192 794
+8192 782
+8192 762
+8192 767
+8192 821
+8192 814
+8192 796
+8192 759
+8192 796
+8192 936
+8192 771
+8192 995
+8192 799
diff --git a/experiments/develop_processed_var_graph/mean_by_linear2-ordered.res b/experiments/develop_processed_var_graph/mean_by_linear2-ordered.res
new file mode 100644
index 0000000000000000000000000000000000000000..5907ec216086aedbd15afaaf1090bcb1faa93022
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear2-ordered.res
@@ -0,0 +1,13 @@
+16 13.91
+32 7.61
+64 10.06
+128 29.82
+256 47.41
+512 185.25
+1024 606.98
+2048 1390.15
+4096 5420.73
+8192 21794
+16384 92785.34
+32768 373388.44
+65536 1695113.04
diff --git a/experiments/develop_processed_var_graph/mean_by_linear2.res b/experiments/develop_processed_var_graph/mean_by_linear2.res
new file mode 100644
index 0000000000000000000000000000000000000000..0166e9e1cf52f45b800262fc7b05890ccba94153
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear2.res
@@ -0,0 +1,13 @@
+1024 606.98
+128 29.82
+16384 92785.34
+16 13.91
+2048 1390.15
+256 47.41
+32768 373388.44
+32 7.61
+4096 5420.73
+512 185.25
+64 10.06
+65536 1695113.04
+8192 21794
diff --git a/experiments/develop_processed_var_graph/mean_by_linear4-ordered.res b/experiments/develop_processed_var_graph/mean_by_linear4-ordered.res
new file mode 100644
index 0000000000000000000000000000000000000000..14582626c9a41af28bbe291cef3a7b74d8ad8837
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear4-ordered.res
@@ -0,0 +1,13 @@
+16 10.74
+32 5.62
+64 11.57
+128 23
+256 34.62
+512 80.12
+1024 264.82
+2048 940.83
+4096 4687.91
+8192 2356.07
+16384 7819.13
+32768 36004.97
+65536 138323.11
diff --git a/experiments/develop_processed_var_graph/mean_by_linear4.res b/experiments/develop_processed_var_graph/mean_by_linear4.res
new file mode 100644
index 0000000000000000000000000000000000000000..a8022ae1540a276e1aff8d40865790c9ee5b89e3
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear4.res
@@ -0,0 +1,13 @@
+1024 264.82
+128 23
+16384 7819.13
+16 10.74
+2048 940.83
+256 34.62
+32768 36004.97
+32 5.62
+4096 4687.91
+512 80.12
+64 11.57
+65536 138323.11
+8192 2356.07
diff --git a/experiments/develop_processed_var_graph/mean_by_linear8-ordered.res b/experiments/develop_processed_var_graph/mean_by_linear8-ordered.res
new file mode 100644
index 0000000000000000000000000000000000000000..466bbb0e3e09095fd4f00b652ca66555e24eff67
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear8-ordered.res
@@ -0,0 +1,13 @@
+16 28.1
+32 4.15
+64 11.1
+128 18.75
+256 27.75
+512 44.7
+1024 70.1
+2048 175.9
+4096 347.2
+8192 809.1
+16384 2399.15
+32768 10099.5
+65536 28880.9
diff --git a/experiments/develop_processed_var_graph/mean_by_linear8.res b/experiments/develop_processed_var_graph/mean_by_linear8.res
new file mode 100644
index 0000000000000000000000000000000000000000..f8997b484a0174a1a5c5dfb3e1a825f578d9bc1d
--- /dev/null
+++ b/experiments/develop_processed_var_graph/mean_by_linear8.res
@@ -0,0 +1,13 @@
+1024 70.1
+128 18.75
+16384 2399.15
+16 28.1
+2048 175.9
+256 27.75
+32768 10099.5
+32 4.15
+4096 347.2
+512 44.7
+64 11.1
+65536 28880.9
+8192 809.1
diff --git a/experiments/extract_results.sh b/experiments/extract_results.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e98310224327c62e249ad9a98f7d350bd444120d
--- /dev/null
+++ b/experiments/extract_results.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+
+# default dir is develop at the current directory.
+
+DIR="develop"
+DIR=${1:-$DIR}
+
+get_results() {
+    local layout=$1
+
+    for i in 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536; do
+        tmp=$(find -name '*.test' -exec grep -o "$layout;n=$i ([0-9]*ms)" {} \;)
+        vals=$(grep -o '[0-9]* ([0-9]*ms)' <<<$tmp)
+        vals=$(tr -d '(' <<<$vals)
+        vals=$(tr -d 'ms)' <<<$vals)
+        echo "$vals" > "${i}-${layout}.test"
+    done
+}
+
+for d in $(ls -d $DIR/*/); do
+    for d2 in 2 4 8; do
+        pushd "$d/linear${d2}"
+        #get_results "LayoutView"
+        get_results "LayoutSQL"
+        popd
+    done
+done
diff --git a/experiments/extract_results_all.sh b/experiments/extract_results_all.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e50c169d536db99e8e23cd95e4c1cdba21ccfe88
--- /dev/null
+++ b/experiments/extract_results_all.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+# default dir is develop at the current directory.
+
+DIR="develop"
+DIR=${1:-$DIR}
+
+get_results() {
+    local layout=$1 linear=$2
+
+    for i in 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536; do
+        #tmp=$(find -name '*.test' | grep "$linear" | xargs grep -o "$layout;n=$i ([0-9]*ms)")
+        tmp=$(find -name '*.test' | xargs grep -o "$layout;n=$i ([0-9]*ms)")
+        vals=$(grep -o '[0-9]* ([0-9]*ms)' <<<$tmp)
+        vals=$(tr -d '(' <<<$vals)
+        vals=$(tr -d 'ms)' <<<$vals)
+        echo "$vals" > "${i}-${linear}-${layout}.res"
+    done
+}
+
+pushd $DIR
+#for d2 in 2 4 8; do
+#    get_results "LayoutView"
+#    get_results "LayoutSQL" "linear${d2}"
+#    get_results "MaxGraphSQL" "linear${d2}"
+#done
+get_results "MaxGraphSQL" "linear248"
+popd
+
+exit 0
diff --git a/experiments/get_average.sh b/experiments/get_average.sh
new file mode 100755
index 0000000000000000000000000000000000000000..56d92541e65c7b9cd1dd664797b5457e2a5fc9f8
--- /dev/null
+++ b/experiments/get_average.sh
@@ -0,0 +1,39 @@
+#!/usr/bin/env bash
+
+pushd "develop"
+:> tmp.res
+for i in $(ls -1 *.R); do
+    n=$(cut -d'-' -f1 <<<$i)
+    t=$(head -1 $i | awk -F'= ' '{print $2}')
+    echo "$n $t" >> tmp.res
+done
+sort -n tmp.res > mean_by_linear248.res
+rm tmp.res
+
+#sort -n tmp.res > mean_by_linear2.res
+#:> tmp.res
+#for i in $(ls -1 *linear2-*.R); do
+#    n=$(cut -d'-' -f1 <<<$i)
+#    t=$(head -1 $i | awk -F'= ' '{print $2}')
+#    echo "$n $t" >> tmp.res
+#done
+#sort -n tmp.res > mean_by_linear2.res
+#:> tmp.res
+#
+#for i in $(ls -1 *linear4-*.R); do
+#    n=$(cut -d'-' -f1 <<<$i)
+#    t=$(head -1 $i | awk -F'= ' '{print $2}')
+#    echo "$n $t" >> tmp.res
+#done
+#sort -n tmp.res > mean_by_linear4.res
+#:> tmp.res
+#
+#for i in $(ls -1 *linear8-*.R); do
+#    n=$(cut -d'-' -f1 <<<$i)
+#    t=$(head -1 $i | awk -F'= ' '{print $2}')
+#    echo "$n $t" >> tmp.res
+#done
+#sort -n tmp.res > mean_by_linear8.res
+#rm tmp.res
+
+popd
diff --git a/experiments/get_statistics.sh b/experiments/get_statistics.sh
new file mode 100755
index 0000000000000000000000000000000000000000..30542cc7057d8437b8ff61b8baba214a49e8ff94
--- /dev/null
+++ b/experiments/get_statistics.sh
@@ -0,0 +1,22 @@
+#!/usr/bin/env bash
+
+calc="$HOME/blendb/experiments/calc.R"
+
+# default dir is develop at the current directory.
+DIR="develop"
+DIR=${1:-$DIR}
+
+
+get_results() {
+    local layout=$1
+
+    for i in $(ls -1 *.res); do
+        $calc "$i" &> ${i::-4}.R
+    done
+}
+
+pushd $DIR
+#for d2 in 2 4 8; do
+    get_results
+#done
+popd
diff --git a/experiments/graphGen.sh b/experiments/graphGen.sh
new file mode 100755
index 0000000000000000000000000000000000000000..6a924ea25e029657c3377949208ebfec36a63f19
--- /dev/null
+++ b/experiments/graphGen.sh
@@ -0,0 +1,94 @@
+#! /bin/bash
+
+writeView() {
+    DATA_PATH="./"
+    dimInit=${1:-1}
+    howMany=${2:-2}
+    dimEnd=$(($dimInit + $howMany -1))
+    semiIdent="        "
+    ident="$semiIdent    "
+    alias="view-${dimInit}-${dimEnd}"
+    echo "${semiIdent}-"
+    echo "${ident}alias: \"$alias\""
+    echo "${ident}data: \"${DATA_PATH}${alias}.json\""
+    echo "${ident}origin: true"
+    echo "${ident}dimensions:"
+    for i in $(seq $dimInit $dimEnd); do
+        echo "${ident}    - \"dim:$i\""
+    done
+}
+
+writeMetric() {
+    met1=${1:-1}
+    semiIdent="        "
+    ident="$semiIdent    "
+    echo "${semiIdent}-"
+    echo "${ident}name: \"met:$met1\""
+    echo "${ident}dataType: \"integer\""
+    echo "${ident}aggregation: \"sum\""
+    echo "${ident}description: \"No meaning, just used for test\""
+}
+
+writeDimension() {
+    dim1=${1:-1}
+    semiIdent="        "
+    ident="$semiIdent    "
+    echo "${semiIdent}-"
+    echo "${ident}name: \"dim:$dim1\""
+    echo "${ident}dataType: \"integer\""
+    echo "${ident}description: \"No meaning, just used for test\""
+}
+
+writeInitView() {
+    semiIdent="        "
+    ident="$semiIdent    "
+    alias="view-0"
+    echo "${semiIdent}-"
+    echo "${ident}alias: \"$alias\""
+    echo "${ident}data: \"${DATA_PATH}${alias}.json\""
+    echo "${ident}origin: true"
+    echo "${ident}dimensions:"
+    echo "${ident}    - \"dim:1\""
+    echo "${ident}metrics:"
+    echo "${ident}    - \"met:1\""
+}
+
+writeLinearGraph() {
+    nDims=${1:-10}
+    echo "enumTypes:"
+    echo "    links: []"
+    echo "    obj: []"
+    echo "sources:"
+    echo "    links: []"
+    echo "    obj: []"
+    echo "views:"
+    echo "    links: []"
+    echo "    obj:"
+    writeInitView
+    for i in $(seq 1 $(($nDims-1))); do
+        writeView $i 2
+    done
+    for i in $(seq 1 $(($nDims-3))); do
+        writeView $i 4
+    done
+    for i in $(seq 1 $(($nDims-7))); do
+        writeView $i 8
+    done
+    echo "dimensions:"
+    echo "    links: []"
+    echo "    obj:"
+    for i in $(seq 1 $nDims); do
+        writeDimension $i
+    done
+    echo "metrics:"
+    echo "    links: []"
+    echo "    obj:"
+    for i in $(seq 1 1); do
+        writeMetric $i
+    done
+}
+
+nDims=${1:-10}
+output=${2:-./tests/develop/linear248/$nDims.yaml}
+
+writeLinearGraph $nDims > $output
diff --git a/experiments/increaser.sh b/experiments/increaser.sh
new file mode 100755
index 0000000000000000000000000000000000000000..fc7ee6232690aae17fda664cff8ad6882ad45c94
--- /dev/null
+++ b/experiments/increaser.sh
@@ -0,0 +1,11 @@
+#! /bin/bash
+
+dir=${1:-'2018-10-11/linear248'}
+inc=${2:-20}
+
+files=$(ls $dir | grep run.*.test | sed -e 's/run//' -e 's/.test//')
+
+for file in $files; do
+    newFile=$(($file+$inc))
+    mv $dir/run$file.test $dir/run$newFile.test
+done
diff --git a/experiments/plot-MaxGraph.plot b/experiments/plot-MaxGraph.plot
new file mode 100755
index 0000000000000000000000000000000000000000..dda213c7b4136f1aa39b6543d1bf9418992fde66
--- /dev/null
+++ b/experiments/plot-MaxGraph.plot
@@ -0,0 +1,33 @@
+#!/usr/bin/env gnuplot
+
+clear
+reset
+set key left above vertical maxrows 2
+set grid
+set border 3
+set xrange [16:65536]
+set yzeroaxis
+#set boxwidth 0.5 absolute
+#set macro
+set logscale xy 2
+
+set xlabel "# of dimensions required"
+#set format x "%.0f%%"
+set ylabel "Time (ms)"
+
+set terminal postscript eps enhanced color font 'Helvetica,18'
+
+#xmax = 100
+#ymax=250000
+set style line 1 lc rgb 'red' pt 5 ps 1.5  # square
+set style line 2 lc rgb '#009933' pt 7 ps 1.5  # circle
+set style line 3 lc rgb 'blue' pt 9 ps 1.5  # triangle
+set style line 4 lc rgb 'purple' pt 13 ps 1.5  # 
+set title "Latencies by numbers of dimensions required in log scale"
+
+set output "time_x_n_dim_req.eps"
+plot "develop_processed_dimentions_required/mean_by_linear2.res" title "Linear by 2" with linespoints ls 1,\
+    "develop_processed_dimentions_required/mean_by_linear4.res" title "Linear by 4" with linespoints ls 2,\
+    "develop_processed_dimentions_required/mean_by_linear8.res" title "Linear by 8" with linespoints ls 3,\
+    "develop_processed_experiments2-linear248/mean_by_linear248.res" title "Linear combined" with linespoints ls 4
+
diff --git a/experiments/plot.plot b/experiments/plot.plot
new file mode 100755
index 0000000000000000000000000000000000000000..7532d3b78787178bc80b921ceb4617607a88439c
--- /dev/null
+++ b/experiments/plot.plot
@@ -0,0 +1,33 @@
+#!/usr/bin/env gnuplot
+
+clear
+reset
+set key left above vertical maxrows 2
+set grid
+set border 3
+set xrange [16:65536]
+set yzeroaxis
+#set boxwidth 0.5 absolute
+#set macro
+set logscale xy 2
+
+set xlabel "# of vertexes in the graph"
+#set format x "%.0f%%"
+set ylabel "Time (ms)"
+
+set terminal postscript eps enhanced color font 'Helvetica,18'
+
+#xmax = 100
+#ymax=250000
+set style line 1 lc rgb 'red' pt 5 ps 1.5  # square
+set style line 2 lc rgb '#009933' pt 7 ps 1.5  # circle
+set style line 3 lc rgb 'blue' pt 9 ps 1.5  # triangle
+set style line 4 lc rgb 'purple' pt 13 ps 1.5  #
+set title "Latencies by numbers of vertexes in log scale"
+
+set output "time_x_n.eps"
+plot "develop_processed_var_graph/mean_by_linear2-ordered.res" title "Linear by 2" with linespoints ls 1,\
+    "develop_processed_var_graph/mean_by_linear4-ordered.res" title "Linear by 4" with linespoints ls 2,\
+    "develop_processed_var_graph/mean_by_linear8-ordered.res" title "Linear by 8" with linespoints ls 3,\
+    "develop_processed_experiments4-16-linear248/mean_by_linear248.res" title "Linear combined" with linespoints ls 4
+
diff --git a/experiments/runTest.sh b/experiments/runTest.sh
new file mode 100755
index 0000000000000000000000000000000000000000..727f3615872069486ae213913f56eeae45529868
--- /dev/null
+++ b/experiments/runTest.sh
@@ -0,0 +1,24 @@
+#! /bin/bash
+
+exPath=${1:-'/home/blendb/blendb/experiments'}
+ntests=${2:-20}
+
+#graphLayouts="linear2 linear4 linear8"
+graphLayouts="linear248"
+testPath='tests/develop/layout'
+outputDir="$(date --iso-8601)"
+
+npmPath='/home/blendb/.nvm/versions/node/v6.14.4/bin'
+PATH="$PATH:$npmPath"
+
+cd $exPath
+for layout in $graphLayouts; do
+    mkdir -p $outputDir/$layout
+    ln -s $layout $testPath
+    for i in $(seq 1 $ntests); do
+        npm test &> $outputDir/$layout/run${i}.test &
+    done
+    wait
+    rm $testPath
+done
+
diff --git a/experiments/testGen.sh b/experiments/testGen.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f50c4462f94b807598e6f66488eabd65d2f7e609
--- /dev/null
+++ b/experiments/testGen.sh
@@ -0,0 +1,15 @@
+#! /bin/bash
+
+
+min=4
+max=16
+
+n=2
+for i in $(seq 2 $min); do
+    n=$((n*2))
+done
+for i in $(seq $min $max); do
+    ./graphGen.sh $n
+    n=$((n*2))
+done
+
diff --git a/experiments/time_x_n.eps b/experiments/time_x_n.eps
new file mode 100644
index 0000000000000000000000000000000000000000..349f5af0b8141e52bacf12793680509f7593ab87
--- /dev/null
+++ b/experiments/time_x_n.eps
@@ -0,0 +1,1198 @@
+%!PS-Adobe-2.0 EPSF-2.0
+%%Title: time_x_n.eps
+%%Creator: gnuplot 5.0 patchlevel 5
+%%CreationDate: Thu Oct 11 17:04:57 2018
+%%DocumentFonts: (atend)
+%%BoundingBox: 50 50 410 302
+%%EndComments
+%%BeginProlog
+/gnudict 256 dict def
+gnudict begin
+%
+% The following true/false flags may be edited by hand if desired.
+% The unit line width and grayscale image gamma correction may also be changed.
+%
+/Color true def
+/Blacktext false def
+/Solid false def
+/Dashlength 1 def
+/Landscape false def
+/Level1 false def
+/Level3 false def
+/Rounded false def
+/ClipToBoundingBox false def
+/SuppressPDFMark false def
+/TransparentPatterns false def
+/gnulinewidth 5.000 def
+/userlinewidth gnulinewidth def
+/Gamma 1.0 def
+/BackgroundColor {-1.000 -1.000 -1.000} def
+%
+/vshift -60 def
+/dl1 {
+  10.0 Dashlength userlinewidth gnulinewidth div mul mul mul
+  Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if
+} def
+/dl2 {
+  10.0 Dashlength userlinewidth gnulinewidth div mul mul mul
+  Rounded { currentlinewidth 0.75 mul add } if
+} def
+/hpt_ 31.5 def
+/vpt_ 31.5 def
+/hpt hpt_ def
+/vpt vpt_ def
+/doclip {
+  ClipToBoundingBox {
+    newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath
+    clip
+  } if
+} def
+%
+% Gnuplot Prolog Version 5.1 (Oct 2015)
+%
+%/SuppressPDFMark true def
+%
+/M {moveto} bind def
+/L {lineto} bind def
+/R {rmoveto} bind def
+/V {rlineto} bind def
+/N {newpath moveto} bind def
+/Z {closepath} bind def
+/C {setrgbcolor} bind def
+/f {rlineto fill} bind def
+/g {setgray} bind def
+/Gshow {show} def   % May be redefined later in the file to support UTF-8
+/vpt2 vpt 2 mul def
+/hpt2 hpt 2 mul def
+/Lshow {currentpoint stroke M 0 vshift R 
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R 
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def
+  /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def
+/DL {Color {setrgbcolor Solid {pop []} if 0 setdash}
+ {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def
+/BL {stroke userlinewidth 2 mul setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+/AL {stroke userlinewidth 2 div setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+/UL {dup gnulinewidth mul /userlinewidth exch def
+	dup 1 lt {pop 1} if 10 mul /udl exch def} def
+/PL {stroke userlinewidth setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+3.8 setmiterlimit
+% Classic Line colors (version 5.0)
+/LCw {1 1 1} def
+/LCb {0 0 0} def
+/LCa {0 0 0} def
+/LC0 {1 0 0} def
+/LC1 {0 1 0} def
+/LC2 {0 0 1} def
+/LC3 {1 0 1} def
+/LC4 {0 1 1} def
+/LC5 {1 1 0} def
+/LC6 {0 0 0} def
+/LC7 {1 0.3 0} def
+/LC8 {0.5 0.5 0.5} def
+% Default dash patterns (version 5.0)
+/LTB {BL [] LCb DL} def
+/LTw {PL [] 1 setgray} def
+/LTb {PL [] LCb DL} def
+/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def
+/LT0 {PL [] LC0 DL} def
+/LT1 {PL [2 dl1 3 dl2] LC1 DL} def
+/LT2 {PL [1 dl1 1.5 dl2] LC2 DL} def
+/LT3 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC3 DL} def
+/LT4 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def
+/LT5 {PL [4 dl1 2 dl2] LC5 DL} def
+/LT6 {PL [1.5 dl1 1.5 dl2 1.5 dl1 1.5 dl2 1.5 dl1 6 dl2] LC6 DL} def
+/LT7 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC7 DL} def
+/LT8 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC8 DL} def
+/SL {[] 0 setdash} def
+/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def
+/Dia {stroke [] 0 setdash 2 copy vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke
+  Pnt} def
+/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V
+  currentpoint stroke M
+  hpt neg vpt neg R hpt2 0 V stroke
+ } def
+/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke
+  Pnt} def
+/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M
+  hpt2 vpt2 neg V currentpoint stroke M
+  hpt2 neg 0 R hpt2 vpt2 V stroke} def
+/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke
+  Pnt} def
+/Star {2 copy Pls Crs} def
+/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath fill} def
+/TriUF {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath fill} def
+/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke
+  Pnt} def
+/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath fill} def
+/DiaF {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath fill} def
+/Pent {stroke [] 0 setdash 2 copy gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore Pnt} def
+/PentF {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath fill grestore} def
+/Circle {stroke [] 0 setdash 2 copy
+  hpt 0 360 arc stroke Pnt} def
+/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def
+/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def
+/C1 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C2 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C3 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C4 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 180 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C5 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc
+	2 copy moveto
+	2 copy vpt 180 270 arc closepath fill
+	vpt 0 360 arc} bind def
+/C6 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C7 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C8 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 270 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C9 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 270 450 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill
+	2 copy moveto
+	2 copy vpt 90 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C11 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 180 arc closepath fill
+	2 copy moveto
+	2 copy vpt 270 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C12 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 180 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C13 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc closepath fill
+	2 copy moveto
+	2 copy vpt 180 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C14 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 360 arc closepath fill
+	vpt 0 360 arc} bind def
+/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
+	neg 0 rlineto closepath} bind def
+/Square {dup Rec} bind def
+/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def
+/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def
+/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def
+/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def
+/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill
+	exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill
+	2 copy vpt Square fill Bsquare} bind def
+/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def
+/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill
+	Bsquare} bind def
+/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill
+	Bsquare} bind def
+/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def
+/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+	2 copy vpt Square fill Bsquare} bind def
+/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+	2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def
+/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def
+/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def
+/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def
+/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def
+/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def
+/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def
+/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def
+/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def
+/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def
+/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def
+/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def
+/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def
+/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def
+/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def
+/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def
+/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def
+/DiaE {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke} def
+/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke} def
+/TriUE {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke} def
+/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke} def
+/PentE {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore} def
+/CircE {stroke [] 0 setdash 
+  hpt 0 360 arc stroke} def
+/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def
+/DiaW {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V Opaque stroke} def
+/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V Opaque stroke} def
+/TriUW {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V Opaque stroke} def
+/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V Opaque stroke} def
+/PentW {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  Opaque stroke grestore} def
+/CircW {stroke [] 0 setdash 
+  hpt 0 360 arc Opaque stroke} def
+/BoxFill {gsave Rec 1 setgray fill grestore} def
+/Density {
+  /Fillden exch def
+  currentrgbcolor
+  /ColB exch def /ColG exch def /ColR exch def
+  /ColR ColR Fillden mul Fillden sub 1 add def
+  /ColG ColG Fillden mul Fillden sub 1 add def
+  /ColB ColB Fillden mul Fillden sub 1 add def
+  ColR ColG ColB setrgbcolor} def
+/BoxColFill {gsave Rec PolyFill} def
+/PolyFill {gsave Density fill grestore grestore} def
+/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def
+%
+% PostScript Level 1 Pattern Fill routine for rectangles
+% Usage: x y w h s a XX PatternFill
+%	x,y = lower left corner of box to be filled
+%	w,h = width and height of box
+%	  a = angle in degrees between lines and x-axis
+%	 XX = 0/1 for no/yes cross-hatch
+%
+/PatternFill {gsave /PFa [ 9 2 roll ] def
+  PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate
+  PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec
+  TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
+  clip
+  currentlinewidth 0.5 mul setlinewidth
+  /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def
+  0 0 M PFa 5 get rotate PFs -2 div dup translate
+  0 1 PFs PFa 4 get div 1 add floor cvi
+	{PFa 4 get mul 0 M 0 PFs V} for
+  0 PFa 6 get ne {
+	0 1 PFs PFa 4 get div 1 add floor cvi
+	{PFa 4 get mul 0 2 1 roll M PFs 0 V} for
+ } if
+  stroke grestore} def
+%
+/languagelevel where
+ {pop languagelevel} {1} ifelse
+dup 2 lt
+	{/InterpretLevel1 true def
+	 /InterpretLevel3 false def}
+	{/InterpretLevel1 Level1 def
+	 2 gt
+	    {/InterpretLevel3 Level3 def}
+	    {/InterpretLevel3 false def}
+	 ifelse }
+ ifelse
+%
+% PostScript level 2 pattern fill definitions
+%
+/Level2PatternFill {
+/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8}
+	bind def
+/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} 
+>> matrix makepattern
+/Pat1 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke
+	0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke}
+>> matrix makepattern
+/Pat2 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L
+	8 8 L 8 0 L 0 0 L fill}
+>> matrix makepattern
+/Pat3 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L
+	0 12 M 12 0 L stroke}
+>> matrix makepattern
+/Pat4 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L
+	0 -4 M 12 8 L stroke}
+>> matrix makepattern
+/Pat5 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L
+	0 12 M 8 -4 L 4 12 M 10 0 L stroke}
+>> matrix makepattern
+/Pat6 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L
+	0 -4 M 8 12 L 4 -4 M 10 8 L stroke}
+>> matrix makepattern
+/Pat7 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L
+	12 0 M -4 8 L 12 4 M 0 10 L stroke}
+>> matrix makepattern
+/Pat8 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L
+	-4 0 M 12 8 L -4 4 M 8 10 L stroke}
+>> matrix makepattern
+/Pat9 exch def
+/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def
+/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def
+/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def
+/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def
+/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def
+/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def
+/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def
+} def
+%
+%
+%End of PostScript Level 2 code
+%
+/PatternBgnd {
+  TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
+} def
+%
+% Substitute for Level 2 pattern fill codes with
+% grayscale if Level 2 support is not selected.
+%
+/Level1PatternFill {
+/Pattern1 {0.250 Density} bind def
+/Pattern2 {0.500 Density} bind def
+/Pattern3 {0.750 Density} bind def
+/Pattern4 {0.125 Density} bind def
+/Pattern5 {0.375 Density} bind def
+/Pattern6 {0.625 Density} bind def
+/Pattern7 {0.875 Density} bind def
+} def
+%
+% Now test for support of Level 2 code
+%
+Level1 {Level1PatternFill} {Level2PatternFill} ifelse
+%
+/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont
+dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall
+currentdict end definefont pop
+%
+/MFshow {
+   { dup 5 get 3 ge
+     { 5 get 3 eq {gsave} {grestore} ifelse }
+     {dup dup 0 get findfont exch 1 get scalefont setfont
+     [ currentpoint ] exch dup 2 get 0 exch R dup 5 get 2 ne {dup dup 6
+     get exch 4 get {textshow} {stringwidth pop 0 R} ifelse }if dup 5 get 0 eq
+     {dup 3 get {2 get neg 0 exch R pop} {pop aload pop M} ifelse} {dup 5
+     get 1 eq {dup 2 get exch dup 3 get exch 6 get stringwidth pop -2 div
+     dup 0 R} {dup 6 get stringwidth pop -2 div 0 R 6 get
+     textshow 2 index {aload pop M neg 3 -1 roll neg R pop pop} {pop pop pop
+     pop aload pop M} ifelse }ifelse }ifelse }
+     ifelse }
+   forall} def
+/Gswidth {dup type /stringtype eq {stringwidth} {pop (n) stringwidth} ifelse} def
+/MFwidth {0 exch { dup 5 get 3 ge { 5 get 3 eq { 0 } { pop } ifelse }
+ {dup 3 get{dup dup 0 get findfont exch 1 get scalefont setfont
+     6 get Gswidth pop add} {pop} ifelse} ifelse} forall} def
+/MLshow { currentpoint stroke M
+  0 exch R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MRshow { currentpoint stroke M
+  exch dup MFwidth neg 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MCshow { currentpoint stroke M
+  exch dup MFwidth -2 div 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/XYsave    { [( ) 1 2 true false 3 ()] } bind def
+/XYrestore { [( ) 1 2 true false 4 ()] } bind def
+Level1 SuppressPDFMark or 
+{} {
+/SDict 10 dict def
+systemdict /pdfmark known not {
+  userdict /pdfmark systemdict /cleartomark get put
+} if
+SDict begin [
+  /Title (time_x_n.eps)
+  /Subject (gnuplot plot)
+  /Creator (gnuplot 5.0 patchlevel 5)
+%  /Producer (gnuplot)
+%  /Keywords ()
+  /CreationDate (Thu Oct 11 17:04:57 2018)
+  /DOCINFO pdfmark
+end
+} ifelse
+%
+% Support for boxed text - Ethan A Merritt May 2005
+%
+/InitTextBox { userdict /TBy2 3 -1 roll put userdict /TBx2 3 -1 roll put
+           userdict /TBy1 3 -1 roll put userdict /TBx1 3 -1 roll put
+	   /Boxing true def } def
+/ExtendTextBox { Boxing
+    { gsave dup false charpath pathbbox
+      dup TBy2 gt {userdict /TBy2 3 -1 roll put} {pop} ifelse
+      dup TBx2 gt {userdict /TBx2 3 -1 roll put} {pop} ifelse
+      dup TBy1 lt {userdict /TBy1 3 -1 roll put} {pop} ifelse
+      dup TBx1 lt {userdict /TBx1 3 -1 roll put} {pop} ifelse
+      grestore } if } def
+/PopTextBox { newpath TBx1 TBxmargin sub TBy1 TBymargin sub M
+               TBx1 TBxmargin sub TBy2 TBymargin add L
+	       TBx2 TBxmargin add TBy2 TBymargin add L
+	       TBx2 TBxmargin add TBy1 TBymargin sub L closepath } def
+/DrawTextBox { PopTextBox stroke /Boxing false def} def
+/FillTextBox { gsave PopTextBox 1 1 1 setrgbcolor fill grestore /Boxing false def} def
+0 0 0 0 InitTextBox
+/TBxmargin 20 def
+/TBymargin 20 def
+/Boxing false def
+/textshow { ExtendTextBox Gshow } def
+%
+% redundant definitions for compatibility with prologue.ps older than 5.0.2
+/LTB {BL [] LCb DL} def
+/LTb {PL [] LCb DL} def
+end
+%%EndProlog
+%%Page: 1 1
+gnudict begin
+gsave
+doclip
+50 50 translate
+0.050 0.050 scale
+0 setgray
+newpath
+(Helvetica) findfont 180 scalefont setfont
+BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if
+1.000 UL
+LTb
+LCb setrgbcolor
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 576 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 576 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 576 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 738 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 900 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 900 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 900 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1062 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 1224 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1224 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 1224 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1386 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 1548 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1548 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 1548 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 64)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1710 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 1872 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1872 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 1872 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 256)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2034 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 2196 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2196 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 2196 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1024)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2358 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 2519 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2519 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 2519 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4096)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2681 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 2843 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2843 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 2843 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16384)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3005 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 3167 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3167 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 3167 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 65536)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3329 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 3491 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3491 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 3491 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 262144)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3653 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 3815 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3815 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 3815 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1.04858x10)]
+[(Helvetica) 144.0 90.0 true true 0 (6)]
+] -78.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3977 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 4139 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 4139 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 4139 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4.1943x10)]
+[(Helvetica) 144.0 90.0 true true 0 (6)]
+] -78.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+1638 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+2074 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+2511 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+2511 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+2511 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 64)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+2947 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+3384 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+3384 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+3384 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 256)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+3820 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+4257 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+4257 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+4257 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1024)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+4693 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+5129 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+5129 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+5129 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4096)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+5566 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+6002 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+6002 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+6002 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16384)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+6439 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+6875 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+6875 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+6875 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 65536)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1.000 UL
+LTB
+LCb setrgbcolor
+1638 4139 M
+0 -3563 V
+5237 0 V
+0 3563 R
+-5237 0 R
+1.000 UP
+stroke
+LTb
+LCb setrgbcolor
+LCb setrgbcolor
+144 2357 M
+currentpoint gsave translate -270 rotate 0 0 moveto
+[ [(Helvetica) 180.0 0.0 true true 0 (Time \(ms\))]
+] -60.0 MCshow
+grestore
+LTb
+LCb setrgbcolor
+4256 126 M
+[ [(Helvetica) 180.0 0.0 true true 0 (# of vertexes in the graph)]
+] -60.0 MCshow
+LTb
+LCb setrgbcolor
+4256 4409 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Latencies by numbers of vertexes in log scale)]
+] -60.0 MCshow
+% Begin plot #1
+1.500 UP
+1.000 UL
+LTb
+1.00 0.00 0.00 C LCb setrgbcolor
+3258 4887 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 2)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+1.00 0.00 0.00 C 3366 4887 M
+495 0 V
+1638 1191 M
+436 -141 V
+437 65 V
+436 254 V
+437 109 V
+436 318 V
+437 277 V
+436 194 V
+436 318 V
+437 325 V
+436 339 V
+437 325 V
+436 353 V
+1638 1191 BoxF
+2074 1050 BoxF
+2511 1115 BoxF
+2947 1369 BoxF
+3384 1478 BoxF
+3820 1796 BoxF
+4257 2073 BoxF
+4693 2267 BoxF
+5129 2585 BoxF
+5566 2910 BoxF
+6002 3249 BoxF
+6439 3574 BoxF
+6875 3927 BoxF
+3613 4887 BoxF
+% End plot #1
+% Begin plot #2
+1.500 UP
+1.000 UL
+LTb
+0.00 0.60 0.20 C LCb setrgbcolor
+3258 4707 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 4)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.00 0.60 0.20 C 3366 4707 M
+495 0 V
+1638 1131 M
+2074 979 L
+437 169 V
+436 161 V
+437 95 V
+436 196 V
+437 280 V
+436 296 V
+436 375 V
+437 -161 V
+436 281 V
+437 356 V
+436 315 V
+1638 1131 CircleF
+2074 979 CircleF
+2511 1148 CircleF
+2947 1309 CircleF
+3384 1404 CircleF
+3820 1600 CircleF
+4257 1880 CircleF
+4693 2176 CircleF
+5129 2551 CircleF
+5566 2390 CircleF
+6002 2671 CircleF
+6439 3027 CircleF
+6875 3342 CircleF
+3613 4707 CircleF
+% End plot #2
+% Begin plot #3
+1.500 UP
+1.000 UL
+LTb
+0.00 0.00 1.00 C LCb setrgbcolor
+5589 4887 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 8)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.00 0.00 1.00 C 5697 4887 M
+495 0 V
+1638 1355 M
+2074 909 L
+437 229 V
+436 123 V
+437 91 V
+436 112 V
+437 105 V
+436 215 V
+436 159 V
+437 198 V
+436 253 V
+437 336 V
+436 246 V
+1638 1355 TriUF
+2074 909 TriUF
+2511 1138 TriUF
+2947 1261 TriUF
+3384 1352 TriUF
+3820 1464 TriUF
+4257 1569 TriUF
+4693 1784 TriUF
+5129 1943 TriUF
+5566 2141 TriUF
+6002 2394 TriUF
+6439 2730 TriUF
+6875 2976 TriUF
+5944 4887 TriUF
+% End plot #3
+% Begin plot #4
+1.500 UP
+1.000 UL
+LTb
+0.75 0.50 1.00 C LCb setrgbcolor
+5589 4707 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear combined)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.75 0.50 1.00 C 5697 4707 M
+495 0 V
+1638 847 M
+436 -51 V
+437 84 V
+436 140 V
+437 159 V
+436 170 V
+437 357 V
+436 62 V
+436 188 V
+437 199 V
+436 248 V
+437 263 V
+436 294 V
+1638 847 DiaF
+2074 796 DiaF
+2511 880 DiaF
+2947 1020 DiaF
+3384 1179 DiaF
+3820 1349 DiaF
+4257 1706 DiaF
+4693 1768 DiaF
+5129 1956 DiaF
+5566 2155 DiaF
+6002 2403 DiaF
+6439 2666 DiaF
+6875 2960 DiaF
+5944 4707 DiaF
+% End plot #4
+2.000 UL
+LTb
+LCb setrgbcolor
+1.000 UL
+LTB
+LCb setrgbcolor
+1638 4139 M
+0 -3563 V
+5237 0 V
+0 3563 R
+-5237 0 R
+1.000 UP
+stroke
+LTb
+LCb setrgbcolor
+stroke
+grestore
+end
+showpage
+%%Trailer
+%%DocumentFonts: Helvetica
diff --git a/experiments/time_x_n_dim_req.eps b/experiments/time_x_n_dim_req.eps
new file mode 100644
index 0000000000000000000000000000000000000000..60851d44931d27649a804c6bf38dfd32849e0d60
--- /dev/null
+++ b/experiments/time_x_n_dim_req.eps
@@ -0,0 +1,1098 @@
+%!PS-Adobe-2.0 EPSF-2.0
+%%Title: time_x_n_dim_req.eps
+%%Creator: gnuplot 5.0 patchlevel 5
+%%CreationDate: Thu Oct 11 17:05:02 2018
+%%DocumentFonts: (atend)
+%%BoundingBox: 50 50 410 302
+%%EndComments
+%%BeginProlog
+/gnudict 256 dict def
+gnudict begin
+%
+% The following true/false flags may be edited by hand if desired.
+% The unit line width and grayscale image gamma correction may also be changed.
+%
+/Color true def
+/Blacktext false def
+/Solid false def
+/Dashlength 1 def
+/Landscape false def
+/Level1 false def
+/Level3 false def
+/Rounded false def
+/ClipToBoundingBox false def
+/SuppressPDFMark false def
+/TransparentPatterns false def
+/gnulinewidth 5.000 def
+/userlinewidth gnulinewidth def
+/Gamma 1.0 def
+/BackgroundColor {-1.000 -1.000 -1.000} def
+%
+/vshift -60 def
+/dl1 {
+  10.0 Dashlength userlinewidth gnulinewidth div mul mul mul
+  Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if
+} def
+/dl2 {
+  10.0 Dashlength userlinewidth gnulinewidth div mul mul mul
+  Rounded { currentlinewidth 0.75 mul add } if
+} def
+/hpt_ 31.5 def
+/vpt_ 31.5 def
+/hpt hpt_ def
+/vpt vpt_ def
+/doclip {
+  ClipToBoundingBox {
+    newpath 50 50 moveto 410 50 lineto 410 302 lineto 50 302 lineto closepath
+    clip
+  } if
+} def
+%
+% Gnuplot Prolog Version 5.1 (Oct 2015)
+%
+%/SuppressPDFMark true def
+%
+/M {moveto} bind def
+/L {lineto} bind def
+/R {rmoveto} bind def
+/V {rlineto} bind def
+/N {newpath moveto} bind def
+/Z {closepath} bind def
+/C {setrgbcolor} bind def
+/f {rlineto fill} bind def
+/g {setgray} bind def
+/Gshow {show} def   % May be redefined later in the file to support UTF-8
+/vpt2 vpt 2 mul def
+/hpt2 hpt 2 mul def
+/Lshow {currentpoint stroke M 0 vshift R 
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R 
+	Blacktext {gsave 0 setgray textshow grestore} {textshow} ifelse} def
+/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def
+  /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def
+/DL {Color {setrgbcolor Solid {pop []} if 0 setdash}
+ {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def
+/BL {stroke userlinewidth 2 mul setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+/AL {stroke userlinewidth 2 div setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+/UL {dup gnulinewidth mul /userlinewidth exch def
+	dup 1 lt {pop 1} if 10 mul /udl exch def} def
+/PL {stroke userlinewidth setlinewidth
+	Rounded {1 setlinejoin 1 setlinecap} if} def
+3.8 setmiterlimit
+% Classic Line colors (version 5.0)
+/LCw {1 1 1} def
+/LCb {0 0 0} def
+/LCa {0 0 0} def
+/LC0 {1 0 0} def
+/LC1 {0 1 0} def
+/LC2 {0 0 1} def
+/LC3 {1 0 1} def
+/LC4 {0 1 1} def
+/LC5 {1 1 0} def
+/LC6 {0 0 0} def
+/LC7 {1 0.3 0} def
+/LC8 {0.5 0.5 0.5} def
+% Default dash patterns (version 5.0)
+/LTB {BL [] LCb DL} def
+/LTw {PL [] 1 setgray} def
+/LTb {PL [] LCb DL} def
+/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def
+/LT0 {PL [] LC0 DL} def
+/LT1 {PL [2 dl1 3 dl2] LC1 DL} def
+/LT2 {PL [1 dl1 1.5 dl2] LC2 DL} def
+/LT3 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC3 DL} def
+/LT4 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def
+/LT5 {PL [4 dl1 2 dl2] LC5 DL} def
+/LT6 {PL [1.5 dl1 1.5 dl2 1.5 dl1 1.5 dl2 1.5 dl1 6 dl2] LC6 DL} def
+/LT7 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC7 DL} def
+/LT8 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC8 DL} def
+/SL {[] 0 setdash} def
+/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def
+/Dia {stroke [] 0 setdash 2 copy vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke
+  Pnt} def
+/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V
+  currentpoint stroke M
+  hpt neg vpt neg R hpt2 0 V stroke
+ } def
+/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke
+  Pnt} def
+/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M
+  hpt2 vpt2 neg V currentpoint stroke M
+  hpt2 neg 0 R hpt2 vpt2 V stroke} def
+/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke
+  Pnt} def
+/Star {2 copy Pls Crs} def
+/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath fill} def
+/TriUF {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath fill} def
+/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke
+  Pnt} def
+/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath fill} def
+/DiaF {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath fill} def
+/Pent {stroke [] 0 setdash 2 copy gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore Pnt} def
+/PentF {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath fill grestore} def
+/Circle {stroke [] 0 setdash 2 copy
+  hpt 0 360 arc stroke Pnt} def
+/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def
+/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def
+/C1 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C2 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C3 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C4 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 180 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C5 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc
+	2 copy moveto
+	2 copy vpt 180 270 arc closepath fill
+	vpt 0 360 arc} bind def
+/C6 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C7 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 270 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C8 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 270 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C9 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 270 450 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill
+	2 copy moveto
+	2 copy vpt 90 180 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C11 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 180 arc closepath fill
+	2 copy moveto
+	2 copy vpt 270 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C12 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 180 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C13 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 0 90 arc closepath fill
+	2 copy moveto
+	2 copy vpt 180 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/C14 {BL [] 0 setdash 2 copy moveto
+	2 copy vpt 90 360 arc closepath fill
+	vpt 0 360 arc} bind def
+/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill
+	vpt 0 360 arc closepath} bind def
+/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
+	neg 0 rlineto closepath} bind def
+/Square {dup Rec} bind def
+/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def
+/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def
+/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def
+/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def
+/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill
+	exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill
+	2 copy vpt Square fill Bsquare} bind def
+/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def
+/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill
+	Bsquare} bind def
+/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill
+	Bsquare} bind def
+/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def
+/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+	2 copy vpt Square fill Bsquare} bind def
+/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+	2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def
+/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def
+/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def
+/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def
+/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def
+/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def
+/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def
+/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def
+/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def
+/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def
+/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def
+/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def
+/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def
+/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def
+/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def
+/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def
+/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def
+/DiaE {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke} def
+/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke} def
+/TriUE {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke} def
+/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke} def
+/PentE {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore} def
+/CircE {stroke [] 0 setdash 
+  hpt 0 360 arc stroke} def
+/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def
+/DiaW {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V Opaque stroke} def
+/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V Opaque stroke} def
+/TriUW {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V Opaque stroke} def
+/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V Opaque stroke} def
+/PentW {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  Opaque stroke grestore} def
+/CircW {stroke [] 0 setdash 
+  hpt 0 360 arc Opaque stroke} def
+/BoxFill {gsave Rec 1 setgray fill grestore} def
+/Density {
+  /Fillden exch def
+  currentrgbcolor
+  /ColB exch def /ColG exch def /ColR exch def
+  /ColR ColR Fillden mul Fillden sub 1 add def
+  /ColG ColG Fillden mul Fillden sub 1 add def
+  /ColB ColB Fillden mul Fillden sub 1 add def
+  ColR ColG ColB setrgbcolor} def
+/BoxColFill {gsave Rec PolyFill} def
+/PolyFill {gsave Density fill grestore grestore} def
+/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def
+%
+% PostScript Level 1 Pattern Fill routine for rectangles
+% Usage: x y w h s a XX PatternFill
+%	x,y = lower left corner of box to be filled
+%	w,h = width and height of box
+%	  a = angle in degrees between lines and x-axis
+%	 XX = 0/1 for no/yes cross-hatch
+%
+/PatternFill {gsave /PFa [ 9 2 roll ] def
+  PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate
+  PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec
+  TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
+  clip
+  currentlinewidth 0.5 mul setlinewidth
+  /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def
+  0 0 M PFa 5 get rotate PFs -2 div dup translate
+  0 1 PFs PFa 4 get div 1 add floor cvi
+	{PFa 4 get mul 0 M 0 PFs V} for
+  0 PFa 6 get ne {
+	0 1 PFs PFa 4 get div 1 add floor cvi
+	{PFa 4 get mul 0 2 1 roll M PFs 0 V} for
+ } if
+  stroke grestore} def
+%
+/languagelevel where
+ {pop languagelevel} {1} ifelse
+dup 2 lt
+	{/InterpretLevel1 true def
+	 /InterpretLevel3 false def}
+	{/InterpretLevel1 Level1 def
+	 2 gt
+	    {/InterpretLevel3 Level3 def}
+	    {/InterpretLevel3 false def}
+	 ifelse }
+ ifelse
+%
+% PostScript level 2 pattern fill definitions
+%
+/Level2PatternFill {
+/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8}
+	bind def
+/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} 
+>> matrix makepattern
+/Pat1 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke
+	0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke}
+>> matrix makepattern
+/Pat2 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L
+	8 8 L 8 0 L 0 0 L fill}
+>> matrix makepattern
+/Pat3 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L
+	0 12 M 12 0 L stroke}
+>> matrix makepattern
+/Pat4 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L
+	0 -4 M 12 8 L stroke}
+>> matrix makepattern
+/Pat5 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L
+	0 12 M 8 -4 L 4 12 M 10 0 L stroke}
+>> matrix makepattern
+/Pat6 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L
+	0 -4 M 8 12 L 4 -4 M 10 8 L stroke}
+>> matrix makepattern
+/Pat7 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L
+	12 0 M -4 8 L 12 4 M 0 10 L stroke}
+>> matrix makepattern
+/Pat8 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L
+	-4 0 M 12 8 L -4 4 M 8 10 L stroke}
+>> matrix makepattern
+/Pat9 exch def
+/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def
+/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def
+/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def
+/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def
+/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def
+/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def
+/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def
+} def
+%
+%
+%End of PostScript Level 2 code
+%
+/PatternBgnd {
+  TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
+} def
+%
+% Substitute for Level 2 pattern fill codes with
+% grayscale if Level 2 support is not selected.
+%
+/Level1PatternFill {
+/Pattern1 {0.250 Density} bind def
+/Pattern2 {0.500 Density} bind def
+/Pattern3 {0.750 Density} bind def
+/Pattern4 {0.125 Density} bind def
+/Pattern5 {0.375 Density} bind def
+/Pattern6 {0.625 Density} bind def
+/Pattern7 {0.875 Density} bind def
+} def
+%
+% Now test for support of Level 2 code
+%
+Level1 {Level1PatternFill} {Level2PatternFill} ifelse
+%
+/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont
+dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall
+currentdict end definefont pop
+%
+/MFshow {
+   { dup 5 get 3 ge
+     { 5 get 3 eq {gsave} {grestore} ifelse }
+     {dup dup 0 get findfont exch 1 get scalefont setfont
+     [ currentpoint ] exch dup 2 get 0 exch R dup 5 get 2 ne {dup dup 6
+     get exch 4 get {textshow} {stringwidth pop 0 R} ifelse }if dup 5 get 0 eq
+     {dup 3 get {2 get neg 0 exch R pop} {pop aload pop M} ifelse} {dup 5
+     get 1 eq {dup 2 get exch dup 3 get exch 6 get stringwidth pop -2 div
+     dup 0 R} {dup 6 get stringwidth pop -2 div 0 R 6 get
+     textshow 2 index {aload pop M neg 3 -1 roll neg R pop pop} {pop pop pop
+     pop aload pop M} ifelse }ifelse }ifelse }
+     ifelse }
+   forall} def
+/Gswidth {dup type /stringtype eq {stringwidth} {pop (n) stringwidth} ifelse} def
+/MFwidth {0 exch { dup 5 get 3 ge { 5 get 3 eq { 0 } { pop } ifelse }
+ {dup 3 get{dup dup 0 get findfont exch 1 get scalefont setfont
+     6 get Gswidth pop add} {pop} ifelse} ifelse} forall} def
+/MLshow { currentpoint stroke M
+  0 exch R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MRshow { currentpoint stroke M
+  exch dup MFwidth neg 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MCshow { currentpoint stroke M
+  exch dup MFwidth -2 div 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/XYsave    { [( ) 1 2 true false 3 ()] } bind def
+/XYrestore { [( ) 1 2 true false 4 ()] } bind def
+Level1 SuppressPDFMark or 
+{} {
+/SDict 10 dict def
+systemdict /pdfmark known not {
+  userdict /pdfmark systemdict /cleartomark get put
+} if
+SDict begin [
+  /Title (time_x_n_dim_req.eps)
+  /Subject (gnuplot plot)
+  /Creator (gnuplot 5.0 patchlevel 5)
+%  /Producer (gnuplot)
+%  /Keywords ()
+  /CreationDate (Thu Oct 11 17:05:02 2018)
+  /DOCINFO pdfmark
+end
+} ifelse
+%
+% Support for boxed text - Ethan A Merritt May 2005
+%
+/InitTextBox { userdict /TBy2 3 -1 roll put userdict /TBx2 3 -1 roll put
+           userdict /TBy1 3 -1 roll put userdict /TBx1 3 -1 roll put
+	   /Boxing true def } def
+/ExtendTextBox { Boxing
+    { gsave dup false charpath pathbbox
+      dup TBy2 gt {userdict /TBy2 3 -1 roll put} {pop} ifelse
+      dup TBx2 gt {userdict /TBx2 3 -1 roll put} {pop} ifelse
+      dup TBy1 lt {userdict /TBy1 3 -1 roll put} {pop} ifelse
+      dup TBx1 lt {userdict /TBx1 3 -1 roll put} {pop} ifelse
+      grestore } if } def
+/PopTextBox { newpath TBx1 TBxmargin sub TBy1 TBymargin sub M
+               TBx1 TBxmargin sub TBy2 TBymargin add L
+	       TBx2 TBxmargin add TBy2 TBymargin add L
+	       TBx2 TBxmargin add TBy1 TBymargin sub L closepath } def
+/DrawTextBox { PopTextBox stroke /Boxing false def} def
+/FillTextBox { gsave PopTextBox 1 1 1 setrgbcolor fill grestore /Boxing false def} def
+0 0 0 0 InitTextBox
+/TBxmargin 20 def
+/TBymargin 20 def
+/Boxing false def
+/textshow { ExtendTextBox Gshow } def
+%
+% redundant definitions for compatibility with prologue.ps older than 5.0.2
+/LTB {BL [] LCb DL} def
+/LTb {PL [] LCb DL} def
+end
+%%EndProlog
+%%Page: 1 1
+gnudict begin
+gsave
+doclip
+50 50 translate
+0.050 0.050 scale
+0 setgray
+newpath
+(Helvetica) findfont 180 scalefont setfont
+BackgroundColor 0 lt 3 1 roll 0 lt exch 0 lt or or not {BackgroundColor C 1.000 0 0 7200.00 5040.00 BoxColFill} if
+1.000 UL
+LTb
+LCb setrgbcolor
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 576 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 576 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 576 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 256)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 831 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 1085 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1085 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 1085 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1024)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1340 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 1594 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1594 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 1594 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4096)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 1849 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 2103 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2103 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 2103 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16384)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2358 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 2612 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2612 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 2612 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 65536)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 2867 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 3121 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3121 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 3121 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 262144)]
+] -60.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3376 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 3630 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3630 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 3630 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1.04858x10)]
+[(Helvetica) 144.0 90.0 true true 0 (6)]
+] -78.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 3885 M
+31 0 V
+5206 0 R
+-31 0 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 4139 M
+5237 0 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 4139 M
+63 0 V
+5174 0 R
+-63 0 V
+stroke
+1530 4139 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4.1943x10)]
+[(Helvetica) 144.0 90.0 true true 0 (6)]
+] -78.0 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+0.500 UL
+LTa
+LCa setrgbcolor
+1638 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+1638 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+1638 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+2074 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+2511 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+2511 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+2511 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 64)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+2947 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+3384 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+3384 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+3384 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 256)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+3820 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+4257 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+4257 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+4257 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 1024)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+4693 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+5129 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+5129 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+5129 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 4096)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+5566 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+6002 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+6002 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+6002 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 16384)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+6439 576 M
+0 31 V
+0 3532 R
+0 -31 V
+stroke
+0.500 UL
+LTa
+LCa setrgbcolor
+6875 576 M
+0 3563 V
+stroke
+1.000 UL
+LTb
+LCb setrgbcolor
+6875 576 M
+0 63 V
+0 3500 R
+0 -63 V
+stroke
+6875 396 M
+[ [(Helvetica) 180.0 0.0 true true 0 ( 65536)]
+] -60.0 MCshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1.000 UL
+LTB
+LCb setrgbcolor
+1638 4139 M
+0 -3563 V
+5237 0 V
+0 3563 R
+-5237 0 R
+1.000 UP
+stroke
+LTb
+LCb setrgbcolor
+LCb setrgbcolor
+144 2357 M
+currentpoint gsave translate -270 rotate 0 0 moveto
+[ [(Helvetica) 180.0 0.0 true true 0 (Time \(ms\))]
+] -60.0 MCshow
+grestore
+LTb
+LCb setrgbcolor
+4256 126 M
+[ [(Helvetica) 180.0 0.0 true true 0 (# of dimensions required)]
+] -60.0 MCshow
+LTb
+LCb setrgbcolor
+4256 4409 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Latencies by numbers of dimensions required in log scale)]
+] -60.0 MCshow
+% Begin plot #1
+1.500 UP
+1.000 UL
+LTb
+1.00 0.00 0.00 C LCb setrgbcolor
+3258 4887 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 2)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+1.00 0.00 0.00 C 3366 4887 M
+495 0 V
+1638 946 M
+2074 776 L
+437 -13 V
+436 15 V
+437 14 V
+436 38 V
+437 114 V
+436 265 V
+436 363 V
+437 467 V
+436 520 V
+437 525 V
+436 557 V
+1638 946 BoxF
+2074 776 BoxF
+2511 763 BoxF
+2947 778 BoxF
+3384 792 BoxF
+3820 830 BoxF
+4257 944 BoxF
+4693 1209 BoxF
+5129 1572 BoxF
+5566 2039 BoxF
+6002 2559 BoxF
+6439 3084 BoxF
+6875 3641 BoxF
+3613 4887 BoxF
+% End plot #1
+% Begin plot #2
+1.500 UP
+1.000 UL
+LTb
+0.00 0.60 0.20 C LCb setrgbcolor
+3258 4707 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 4)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.00 0.60 0.20 C 3366 4707 M
+495 0 V
+1638 1142 M
+436 -139 V
+437 -4 V
+436 3 V
+437 5 V
+436 9 V
+437 26 V
+436 50 V
+436 129 V
+437 246 V
+436 368 V
+437 478 V
+436 527 V
+1638 1142 CircleF
+2074 1003 CircleF
+2511 999 CircleF
+2947 1002 CircleF
+3384 1007 CircleF
+3820 1016 CircleF
+4257 1042 CircleF
+4693 1092 CircleF
+5129 1221 CircleF
+5566 1467 CircleF
+6002 1835 CircleF
+6439 2313 CircleF
+6875 2840 CircleF
+3613 4707 CircleF
+% End plot #2
+% Begin plot #3
+1.500 UP
+1.000 UL
+LTb
+0.00 0.00 1.00 C LCb setrgbcolor
+5589 4887 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear by 8)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.00 0.00 1.00 C 5697 4887 M
+495 0 V
+1638 1353 M
+436 -105 V
+437 -2 V
+436 1 V
+437 4 V
+436 4 V
+437 5 V
+436 14 V
+436 26 V
+437 67 V
+436 163 V
+437 281 V
+436 456 V
+1638 1353 TriUF
+2074 1248 TriUF
+2511 1246 TriUF
+2947 1247 TriUF
+3384 1251 TriUF
+3820 1255 TriUF
+4257 1260 TriUF
+4693 1274 TriUF
+5129 1300 TriUF
+5566 1367 TriUF
+6002 1530 TriUF
+6439 1811 TriUF
+6875 2267 TriUF
+5944 4887 TriUF
+% End plot #3
+% Begin plot #4
+1.500 UP
+1.000 UL
+LTb
+0.75 0.50 1.00 C LCb setrgbcolor
+5589 4707 M
+[ [(Helvetica) 180.0 0.0 true true 0 (Linear combined)]
+] -60.0 MRshow
+1.500 UP
+1.000 UL
+LTb
+0.75 0.50 1.00 C 5697 4707 M
+495 0 V
+1638 1356 M
+436 -54 V
+437 92 V
+436 -114 V
+437 -29 V
+436 2 V
+437 14 V
+436 38 V
+436 7 V
+437 91 V
+436 151 V
+437 312 V
+436 435 V
+1638 1356 DiaF
+2074 1302 DiaF
+2511 1394 DiaF
+2947 1280 DiaF
+3384 1251 DiaF
+3820 1253 DiaF
+4257 1267 DiaF
+4693 1305 DiaF
+5129 1312 DiaF
+5566 1403 DiaF
+6002 1554 DiaF
+6439 1866 DiaF
+6875 2301 DiaF
+5944 4707 DiaF
+% End plot #4
+2.000 UL
+LTb
+LCb setrgbcolor
+1.000 UL
+LTB
+LCb setrgbcolor
+1638 4139 M
+0 -3563 V
+5237 0 V
+0 3563 R
+-5237 0 R
+1.000 UP
+stroke
+LTb
+LCb setrgbcolor
+stroke
+grestore
+end
+showpage
+%%Trailer
+%%DocumentFonts: Helvetica
diff --git a/package.json b/package.json
index 4e1f0b91236363a44e497ee277201504d9f2692c..b93f489a97535d103664790cda1e124340b1af5b 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
   "scripts": {
     "start": "env $(cat config/config.env) node index",
     "lint": "tslint -s node_modules/tslint-stylish -t stylish src/**/*.ts test/**/*.ts",
-    "test": "env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x \"**/*.spec.ts\" -e .ts _mocha",
+    "test": "env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x \"**/*.spec.ts\" -e .ts _mocha",
     "show-coverage": "xdg-open coverage/lcov-report/index.html",
     "doc-api": "raml2html -i specs/blendb-api-v1.raml -o doc/api-v1-reference.html",
     "schema": "env $(cat config/config.env ) ts-node scripts/schema.ts config/config.yaml schema.sql",
diff --git a/src/adapter/postgres.spec.ts b/src/adapter/postgres.spec.ts
deleted file mode 100644
index a77952af864b6238603528e85c3fe05e97c5450f..0000000000000000000000000000000000000000
--- a/src/adapter/postgres.spec.ts
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { PostgresAdapter } from "./postgres";
-import { MonetAdapter, MonetConfig } from "./monet";
-import { Adapter } from "../core/adapter";
-import { Fixture as FixPostgres } from "../../test/postgres/fixture";
-import { Fixture as FixMonet } from "../../test/monet/fixture";
-import { ConfigParser } from "../util/configParser";
-import { adapterScenario } from "../../test/scenario";
-
-describe("Sql adapter", () => {
-
-    // Initializing
-    let config: any;
-    let adapter: Adapter;
-    let fixture;
-    before(function (done): void {
-        // Arrow function not used to get acces to this and skip the test
-        const configPath =  process.env.BLENDB_SCHEMA_FILE;
-        config = ConfigParser.parse(configPath);
-
-        if (config.adapter === "postgres") {
-            fixture = new FixPostgres(config.connection);
-            fixture.load(config.loadViews, (err) => {
-                if (err) {
-                    throw err;
-                }
-                adapter = new PostgresAdapter(config.connection);
-                done();
-            });
-        }
-        else if (config.adapter === "monet") {
-            fixture = new FixMonet(config.connection);
-            fixture.load(config.loadViews, (err) => {
-                if (err) {
-                    throw err;
-                }
-                let parsedConfig: MonetConfig = {
-                    user: config.connection.user,
-                    dbname: config.connection.database,
-                    password: config.connection.password,
-                    host: config.connection.host,
-                    port: config.connection.port
-                };
-                adapter = new MonetAdapter(parsedConfig);
-                done();
-            });
-        }
-        else {
-            this.skip();
-        }
-    });
-    // Tests
-    it("should get data from single materialized view", (done) => {
-        let view = adapterScenario.materializedView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-            done();
-        });
-    });
-    it("should get data from join of 2 views (without selection)", (done) => {
-        let view = adapterScenario.noSelectionView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(1);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-            done();
-        });
-    });
-    it("should get data from join of 2 views (with selection)", (done) => {
-        let view = adapterScenario.withSelectionView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-            done();
-        });
-    });
-    it("should get data from single view (with sub-dimension)", (done) => {
-        let view = adapterScenario.subDimensionView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-            done();
-        });
-    });
-    it("should get data from join of 4 views (with selection)", (done) => {
-        let view = adapterScenario.join4View;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-            done();
-        });
-    });
-
-    it("should get data from different sub dimensions with same parent", (done) => {
-        let view = adapterScenario.dateView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-                expect(row).to.have.property("dim:0:year", 2017);
-            });
-            done();
-        });
-    });
-    it("should get data from view with all types of agreggation", (done) => {
-        let view = adapterScenario.aggrView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(1);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            expect(parseInt(result[0]["met:0"], 10)).to.be.equal(15);
-            expect(parseInt(result[0]["met:1"], 10)).to.be.equal(3);
-            expect(parseInt(result[0]["met:6"], 10)).to.be.equal(5);
-            expect(parseInt(result[0]["met:10"], 10)).to.be.equal(5);
-            expect(parseInt(result[0]["met:11"], 10)).to.be.equal(1);
-            done();
-        });
-    });
-
-    it("should get data from view when a single clause exists", (done) => {
-        let view = adapterScenario.clauseView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(1);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            expect(parseInt(result[0]["met:0"], 10)).to.be.equal(1);
-            expect(parseInt(result[0]["met:1"], 10)).to.be.equal(1);
-            expect(parseInt(result[0]["met:2"], 10)).to.be.equal(1);
-            expect(result[0]["dim:0"].getDate()).to.be.equal(1);
-            done();
-        });
-    });
-
-    it("should get data from view with single clause,  with more than on filter", (done) => {
-        let view = adapterScenario.multiFilterView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(2);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from view with multiple clauses", (done) => {
-        let view = adapterScenario.multiClauseView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(0);
-
-            done();
-        });
-    });
-
-    it("should get data from view with a clause with not equal operator", (done) => {
-        let view = adapterScenario.notEqualView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(2);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from view, using > AND < operators on filters", (done) => {
-        let view = adapterScenario.gtltView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(1);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from view, using >= AND <= operators on filters", (done) => {
-        let view = adapterScenario.geleView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(3);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data when a filter does not have any effect on the query", (done) => {
-        let view = adapterScenario.notMatchFilterView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(5);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data using COUNT when the view is not origin", (done) => {
-        let view = adapterScenario.notOriginCount;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(4);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from a unmaterializeble view", (done) => {
-        let view = adapterScenario.unMaterializebleView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(2);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from partial joins", (done) => {
-        let view = adapterScenario.partialJoinView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(1);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from view when joins can be propagated", (done) => {
-        let view = adapterScenario.propagatedClauseView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(2);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-
-    it("should get data from view when joins propaged is in the aggregation", (done) => {
-        let view = adapterScenario.propagatedClauseAggrView;
-        adapter.getDataFromView(view, (err, result) => {
-            expect(err).to.be.a("null");
-            expect(result).to.be.an("array");
-            expect(result).to.have.length(4);
-            expect(result[0]).to.be.an("object");
-            let keys: string[] = [];
-            keys = keys.concat(view.metrics.map((item) => item.name));
-            keys = keys.concat(view.dimensions.map((item) => item.name));
-            result.forEach((row) => {
-                expect(row).to.be.an("object");
-                expect(row).to.have.all.keys(keys);
-            });
-
-            done();
-        });
-    });
-});
diff --git a/src/api/controllers/collect.spec.ts b/src/api/controllers/collect.spec.ts
deleted file mode 100644
index 7ad1619a03cfff39812ba0bd6f0e33ab7d61668e..0000000000000000000000000000000000000000
--- a/src/api/controllers/collect.spec.ts
+++ /dev/null
@@ -1,262 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import * as request from "supertest";
-import { expect } from "chai";
-import * as server from "../../main";
-import { Adapter } from "../../core/adapter";
-import { ConfigParser } from "../../util/configParser";
-import { Fixture as FixPostgres } from "../../../test/postgres/fixture";
-import { Fixture as FixMonet } from "../../../test/monet/fixture";
-import { MonetAdapter, MonetConfig } from "../../adapter/monet";
-import { PostgresAdapter } from "../../adapter/postgres";
-
-describe("API collect controller", () => {
-
-    // Initializing
-    let config: any;
-    let adapter: Adapter;
-    let fixture;
-    before(function (done): void {
-        // Arrow function not used to get acces to this and skip the test
-        const configPath =  process.env.BLENDB_SCHEMA_FILE;
-        config = ConfigParser.parse(configPath);
-        if (config.adapter === "postgres") {
-            fixture = new FixPostgres(config.connection);
-            fixture.loadSource(config.sources, (err) => {
-                if (err) {
-                    throw err;
-                }
-                adapter = new PostgresAdapter(config.connection);
-                done();
-            });
-        }
-        else if (config.adapter === "monet") {
-            fixture = new FixMonet(config.connection);
-            fixture.loadSource(config.sources, (err) => {
-                if (err) {
-                    throw err;
-                }
-                let parsedConfig: MonetConfig = {
-                    user: config.connection.user,
-                    dbname: config.connection.database,
-                    password: config.connection.password,
-                    host: config.connection.host,
-                    port: config.connection.port
-                };
-                adapter = new MonetAdapter(parsedConfig);
-                done();
-            });
-        }
-        else {
-            this.skip();
-        }
-    });
-    it("should respond 500 when req.params.class does not exist on Sources", (done) => {
-        request(server)
-            .post("/v1/collect/thisisjustatest")
-            .send({"fields:1": 1, "fields:2": 2})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The source named 'thisisjustatest' was not found";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when fields:0 does not exist on Source", (done) => {
-        request(server)
-            .post("/v1/collect/source_0")
-            .send({"fields:1": 1, "fields:2": 2})
-            .expect(500)
-            .expect((res: any) => {
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The 'fields:0' wasn't informed on json";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 200 when data has been stored on source_0", (done) => {
-        request(server)
-            .post("/v1/collect/source_0")
-            .send({"fields:0": "teste", "fields:1": "test1", "fields:2": "teste2"})
-            .expect(200)
-            .expect((res: any) => {
-                const message = "Data has been successfully received and stored by the server";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when value isn't defined on enumtype:0 ", (done) => {
-        request(server)
-            .post("/v1/collect/source_1")
-            .send({"fields:0": 1, "fields:1": 2})
-            .expect(500)
-            .expect((res: any) => {
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value '1' from 'fields:0' isn't listed on enumtype:0";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 200 when data has been stored on source_1", (done) => {
-        request(server)
-            .post("/v1/collect/source_1")
-            .send({"fields:0": "male", "fields:1": "test1"})
-            .expect(200)
-            .expect((res: any) => {
-                const message = "Data has been successfully received and stored by the server";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when dataType from fields:0 isn't integer", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : "nope", "fields:1" : 95.5 , "fields:2" : "justabacon"
-            , "fields:3" : "1991-25-03" , "fields:4" : 1})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value 'nope' from 'fields:0' isn't a type integer";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when dataType from fields:1 isn't float", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : 1 , "fields:1" : "notafloat" , "fields:2" : "justabacon"
-            , "fields:3" : "1991-25-03" , "fields:4" : 1})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value 'notafloat' from 'fields:1' isn't a type float";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when dataType from fields:2 isn't string", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : 1 , "fields:1" : 95.5 , "fields:2" : 1
-            , "fields:3" : "1991-25-03" , "fields:4" : 1})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value '1' from 'fields:2' isn't a type string";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when dataType from fields:3 isn't boolean", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : 1 , "fields:1" : 95.5 , "fields:2" : "teste"
-            , "fields:3" : "notaboolean" , "fields:4" : "1999-10-10"})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value 'notaboolean' from 'fields:3' isn't a type boolean";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 500 when the first dataType from fields:4 isn't date", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : 1 , "fields:1" : 95.5 , "fields:2" : "teste"
-            , "fields:3" : "true" , "fields:4" : "1999-25-25"})
-            .expect(500)
-            .expect((res: any) => {
-
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The value '1999-25-25' from 'fields:4' isn't a type date";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-
-            })
-            .end(done);
-    });
-    it("should respond 200 when sucessfull insert data on source_4", (done) => {
-        request(server)
-            .post("/v1/collect/source_4")
-            .send({"fields:0" : 1 , "fields:1" : 95.5 , "fields:2" : "teste"
-            , "fields:3" : "true" , "fields:4" : "1999-10-10"})
-            .expect(200)
-            .expect((res: any) => {
-                const message = "Data has been successfully received and stored by the server";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body.message).to.be.eql(message);
-
-            })
-            .end(done);
-    });
-});
diff --git a/src/api/controllers/data.spec.ts b/src/api/controllers/data.spec.ts
deleted file mode 100644
index e11ac61d51705d456bca6e05759eaac1af60616e..0000000000000000000000000000000000000000
--- a/src/api/controllers/data.spec.ts
+++ /dev/null
@@ -1,228 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import * as request from "supertest";
-import { expect } from "chai";
-
-import * as server from "../../main";
-import { dataCtrlScenario as tests } from "../../../test/scenario";
-import { Query } from "../../common/query";
-
-interface StrQuery {
-    metrics: string;
-    dimensions: string;
-    filters?: string;
-    sort?: string;
-}
-
-function parseQuery(obj: Query): StrQuery {
-    let r: StrQuery = {
-        metrics: "",
-        dimensions: ""
-    };
-
-    r.metrics = obj.metrics.map ((item) => item.name).join(",");
-    r.dimensions = obj.dimensions.map ((item) => item.name).join(",");
-    return r;
-}
-
-describe("API data controller", () => {
-
-    it("should respond 500 when query has inexistent metric", (done) => {
-        request(server)
-            .get("/v1/data")
-            .query(parseQuery(tests.wrongMet))
-            .expect(500)
-            .expect((res: any) => {
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The metric named met:-1 was not found";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body).to.have.property("error");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-            })
-            .end(done);
-    });
-
-    it("should respond 500 when query has inexistent dimension", (done) => {
-        request(server)
-            .get("/v1/data")
-            .query(parseQuery(tests.wrongDim))
-            .expect(500)
-            .expect((res: any) => {
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The dimension named dim:-1 was not found";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body).to.have.property("error");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-            })
-            .end(done);
-    });
-
-    it("should respond 500 when query has sort item that is not in query data", (done) => {
-        let query = parseQuery(tests.clausal);
-        query.sort = "dim:0";
-        request(server)
-            .get("/v1/data")
-            .query(query)
-            .expect(500)
-            .expect((res: any) => {
-                const message = "Query execution failed: " +
-                "Could not construct query with the given parameters.";
-                const error = "The item 'dim:0'" +
-                    " is not present in neither metrics nor dimensions list";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("message");
-                expect(res.body).to.have.property("error");
-                expect(res.body.message).to.be.eql(message);
-                expect(res.body.error).to.be.eql(error);
-            })
-            .end(done);
-    });
-
-    it("should respond 200 and get some data", (done) => {
-        request(server)
-            .get("/v1/data")
-            .query(parseQuery(tests.correct))
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(5);
-                expect(result[0]).to.be.an("object");
-                let keys: string[] = [];
-                keys = keys.concat(tests.correct.metrics.map((item) => item.name));
-                keys = keys.concat(tests.correct.dimensions.map((item) => item.name));
-                result.forEach((row: any) => {
-                    expect(row).to.be.an("object");
-                    expect(row).to.have.all.keys(keys);
-                });
-            })
-            .end(done);
-    });
-
-    it("should respond 200 and get some data, using a single filter", (done) => {
-        // Clause does not come to scenario besause is a lot of work for
-        // only a single test
-        let query = parseQuery(tests.clausal);
-        query.filters = "dim:7==1";
-        request(server)
-            .get("/v1/data")
-            .query(query)
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(1);
-                expect(result[0]).to.be.an("object");
-                let keys: string[] = [];
-                keys = keys.concat(tests.clausal.metrics.map((item) => item.name));
-                keys = keys.concat(tests.clausal.dimensions.map((item) => item.name));
-                result.forEach((row: any) => {
-                    expect(row).to.be.an("object");
-                    expect(row).to.have.all.keys(keys);
-                });
-            })
-            .end(done);
-    });
-
-    it("should respond 200 and get some data, using filters with OR", (done) => {
-        // Clause does not come to scenario besause is a lot of work for
-        // only a single test
-        let query = parseQuery(tests.clausal);
-        query.filters = "dim:7==1,dim:7==2";
-        request(server)
-            .get("/v1/data")
-            .query(query)
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(2);
-                expect(result[0]).to.be.an("object");
-                let keys: string[] = [];
-                keys = keys.concat(tests.clausal.metrics.map((item) => item.name));
-                keys = keys.concat(tests.clausal.dimensions.map((item) => item.name));
-                result.forEach((row: any) => {
-                    expect(row).to.be.an("object");
-                    expect(row).to.have.all.keys(keys);
-                });
-            })
-            .end(done);
-    });
-
-    it("should respond 200 and get some data, using filters with AND", (done) => {
-        // Clause does not come to scenario besause is a lot of work for
-        // only a single test
-        let query = parseQuery(tests.clausal);
-        query.filters = "dim:7!=1;dim:0!=2017-01-01";
-        request(server)
-            .get("/v1/data")
-            .query(query)
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(4);
-                expect(result[0]).to.be.an("object");
-                let keys: string[] = [];
-                keys = keys.concat(tests.clausal.metrics.map((item) => item.name));
-                keys = keys.concat(tests.clausal.dimensions.map((item) => item.name));
-                result.forEach((row: any) => {
-                    expect(row).to.be.an("object");
-                    expect(row).to.have.all.keys(keys);
-                });
-            })
-            .end(done);
-    });
-
-    it("should respond 200 and get some data, sorted", (done) => {
-        // Clause does not come to scenario besause is a lot of work for
-        // only a single test
-        let query = parseQuery(tests.clausal);
-        query.sort = "dim:7,met:0";
-        request(server)
-            .get("/v1/data")
-            .query(query)
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(5);
-                expect(result[0]).to.be.an("object");
-                let keys: string[] = [];
-                keys = keys.concat(tests.clausal.metrics.map((item) => item.name));
-                keys = keys.concat(tests.clausal.dimensions.map((item) => item.name));
-                for (let i = 0; i < result.length; ++i) {
-                    const row = result[i];
-                    expect(row).to.be.an("object");
-                    expect(row).to.have.all.keys(keys);
-                    expect(row["dim:7"]).to.be.eql(i + 1);
-                }
-            })
-            .end(done);
-    });
-
-});
diff --git a/src/api/controllers/engine.spec.ts b/src/api/controllers/engine.spec.ts
deleted file mode 100644
index 45cb983c89f2a8e09c8e71c0b327ef0a24567f02..0000000000000000000000000000000000000000
--- a/src/api/controllers/engine.spec.ts
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import * as request from "supertest";
-import { expect } from "chai";
-
-import * as server from "../../main";
-
-describe("API engine controller", () => {
-
-    it("should respond 200 and the list of metrics", (done) => {
-        request(server)
-            .get("/v1/metrics")
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(12);
-            })
-            .end(done);
-    });
-    it("should respond 200 and the list of sources", (done) => {
-        request(server)
-            .get("/v1/sources")
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(5);
-            })
-            .end(done);
-    });
-    it("should respond 200 and the list of dimensions", (done) => {
-        request(server)
-            .get("/v1/dimensions")
-            .expect(200)
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(12);
-            })
-            .end(done);
-    });
-    it("should respond 200 and the list of enumTypes", (done) => {
-        request(server)
-            .get("/v1/enumtypes")
-            .expect((res: any) => {
-                let result = res.body;
-                expect(result).to.be.an("array");
-                expect(result).to.have.length(4);
-            })
-            .end(done);
-    });
-
-});
diff --git a/src/api/middlewares/error.spec.ts b/src/api/middlewares/error.spec.ts
deleted file mode 100644
index be9181ab3f2f90643661c91f29d940b571ed6993..0000000000000000000000000000000000000000
--- a/src/api/middlewares/error.spec.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import * as request from "supertest";
-import { expect } from "chai";
-
-import * as server from "../../main";
-
-describe("API error middleware", () => {
-
-    it("should respond 404 when a route does not exists", (done) => {
-        request(server)
-            .get("/v1/inexistent")
-            .expect(404)
-            .expect((res: any) => {
-                const error = "Cannot GET /v1/inexistent";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("error");
-                expect(res.body.error).to.be.eql(error);
-            })
-            .end(done);
-    });
-
-    it("should respond 400 for missing required parameters", (done) => {
-        request(server)
-            .get("/v1/data")
-            .query({metrics: "random"})
-            .expect(400)
-            .expect((res: any) => {
-                const error = "Bad request: Some problems with this request were found";
-                expect(res.body).to.be.an("object");
-                expect(res.body).to.have.property("error");
-                expect(res.body).to.have.property("requestErrors");
-                expect(res.body.error).to.be.eql(error);
-                expect(res.body.requestErrors).to.have.length(1);
-            })
-            .end(done);
-    });
-});
diff --git a/src/core/engine.spec.ts b/src/core/engine.spec.ts
deleted file mode 100644
index 03098f5eca2970e098880a908e4a0bfcc23f032c..0000000000000000000000000000000000000000
--- a/src/core/engine.spec.ts
+++ /dev/null
@@ -1,338 +0,0 @@
-/*
- * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { Engine } from "./engine";
-import { Metric } from "./metric";
-import { Filter, FilterOperator } from "./filter";
-import { Clause } from "./clause";
-import { View } from "./view";
-import { engineScenario } from "../../test/scenario";
-
-describe("engine class", () => {
-    const engine = new Engine();
-
-    const met = engineScenario.metrics;
-    const dim = engineScenario.dimensions;
-    const subdim = engineScenario.subDimensions;
-    const views = engineScenario.views;
-
-    met.forEach((item) => engine.addMetric(item));
-    dim.forEach((item) => engine.addDimension(item));
-    subdim.forEach((item) => engine.addDimension(item));
-
-    views.forEach((view) => engine.addView(view));
-
-    it("should be create a fill that cover all metrics and dimensions", () => {
-        let query = {
-            metrics : met.slice(0)
-            , dimensions : dim.slice(0)
-        };
-        let optimalView = engine.query(query);
-        expect(optimalView).to.be.an("object");
-        expect(optimalView).to.have.property("metrics");
-        expect(optimalView).to.have.property("dimensions");
-        expect(optimalView.metrics).to.be.an("array");
-        expect(optimalView.dimensions).to.be.an("array");
-        expect(optimalView.metrics).to.have.length(12);
-        expect(optimalView.dimensions).to.have.length(12);
-    });
-    it("should throw an exception, query with non-existent metric", () => {
-        let error: boolean = false;
-        try {
-            engine.query({metrics: [engineScenario.wrongMet], dimensions: [dim[0]]});
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal("Engine views cannot cover the query");
-
-        }
-        expect(error);
-    });
-
-    it("should throw an exception, query with non-existent dimension", () => {
-        let error: boolean = false;
-        try {
-            engine.query({metrics: [met[0]], dimensions: [engineScenario.wrongDim]});
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal("Engine views cannot cover the query");
-
-        }
-        expect(error);
-    });
-
-    it("should be create a fill that cover the query, that match perfectly with a existent view", () => {
-        let query = {
-            metrics : [met[0], met[1], met[2], met[10]]
-            , dimensions : [dim[0], dim[7]]
-        };
-        let optimalView = engine.query(query);
-        expect(optimalView).to.be.an("object");
-        expect(optimalView).to.have.property("metrics");
-        expect(optimalView).to.have.property("dimensions");
-        expect(optimalView).to.have.property("operation");
-        expect(optimalView.metrics).to.be.an("array");
-        expect(optimalView.dimensions).to.be.an("array");
-        expect(optimalView.operation).to.be.an("object");
-        expect(optimalView.metrics).to.have.length(4);
-        expect(optimalView.dimensions).to.have.length(2);
-        expect(optimalView.operation).to.have.property("opcode");
-
-        expect(optimalView.id).to.be.equal(views[0].id);
-    });
-
-    it("should be create a fill that cover the query, that match perfectly with a existent view, with clauses", () => {
-        const clause = new Clause({
-            filters: [new Filter({
-                target: dim[2],
-                operator: FilterOperator.NOTEQUAL,
-                value: "1"
-            })]
-        });
-        let query = {
-            metrics : [met[5], met[6], met[7]]
-            , dimensions : [dim[2]]
-            , clauses: [clause]
-        };
-        let optimalView = engine.query(query);
-        expect(optimalView).to.be.an("object");
-        expect(optimalView).to.have.property("metrics");
-        expect(optimalView).to.have.property("dimensions");
-        expect(optimalView).to.have.property("operation");
-        expect(optimalView.metrics).to.be.an("array");
-        expect(optimalView.dimensions).to.be.an("array");
-        expect(optimalView.operation).to.be.an("object");
-        expect(optimalView.metrics).to.have.length(3);
-        expect(optimalView.dimensions).to.have.length(1);
-        expect(optimalView.operation).to.have.property("opcode");
-
-        expect(optimalView.id).to.be.equal(views[9].id);
-    });
-
-    it("should be create a fill that cover the query, using sub dimensions", () => {
-        let emptyMetrics: Metric[] = [];
-        let query = {
-            metrics : emptyMetrics
-            , dimensions : subdim.slice(0, 2)
-        };
-        let optimalView = engine.query(query);
-        expect(optimalView).to.be.an("object");
-        expect(optimalView).to.have.property("metrics");
-        expect(optimalView).to.have.property("dimensions");
-        expect(optimalView.metrics).to.be.an("array");
-        expect(optimalView.dimensions).to.be.an("array");
-        expect(optimalView.metrics).to.have.length(0);
-        expect(optimalView.dimensions).to.have.length(2);
-
-        expect(optimalView).satisfy((optView: View) => {
-            return optView.dimensions.some((item) => item.name === subdim[0].name);
-        });
-        expect(optimalView).satisfy((optView: View) => {
-            return optView.dimensions.some((item) => item.name === subdim[1].name);
-        });
-    });
-
-    it("should be create a fill that cover the query, using the parents of sub dimensions", () => {
-        let emptyMetrics: Metric[] = [];
-        let query = {
-            metrics : emptyMetrics
-            , dimensions : [subdim[2], subdim[4]]
-        };
-        let optimalView = engine.query(query);
-        expect(optimalView).to.be.an("object");
-        expect(optimalView).to.have.property("metrics");
-        expect(optimalView).to.have.property("dimensions");
-        expect(optimalView.metrics).to.be.an("array");
-        expect(optimalView.dimensions).to.be.an("array");
-        expect(optimalView.metrics).to.have.length(0);
-        expect(optimalView.dimensions).to.have.length(2);
-
-        expect(optimalView).satisfy((optView: View) => {
-            return optView.dimensions.some((item) => item.name === subdim[2].name);
-        });
-        expect(optimalView).satisfy((optView: View) => {
-            return optView.dimensions.some((item) => item.name === subdim[4].name);
-        });
-    });
-
-    it("should throw an exception, sub-dimension with non-existent parent", () => {
-        let error: boolean = false;
-        try {
-            engine.query({metrics: [met[0]], dimensions: [subdim[3]]});
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal("Engine views cannot cover the query");
-
-        }
-        expect(error).to.be.true;
-    });
-
-    it("should parse a clause, with target as dimension and operator as ==", () => {
-        const strFilter = "dim:0==0";
-        const clause = engine.parseClause(strFilter);
-        expect(clause).to.be.an("object");
-        expect(clause).to.have.property("filters");
-        expect(clause).to.have.property("id");
-        expect(clause.filters).to.be.an("array");
-        expect(clause.filters).to.have.length(1);
-        expect(clause.filters[0]).to.have.property("id");
-        expect(clause.filters[0]).to.have.property("target");
-        expect(clause.filters[0]).to.have.property("value");
-        expect(clause.filters[0]).to.have.property("operator");
-        expect(clause.filters[0].target).to.be.equal(dim[0]);
-        expect(clause.filters[0].value).to.be.equal("0");
-        expect(clause.filters[0].operator).to.be.equal(FilterOperator.EQUAL);
-    });
-    it("should parse a clause, with target as metric and operator as !=", () => {
-        const strFilter = "met:0!=0";
-        const clause = engine.parseClause(strFilter);
-        expect(clause).to.be.an("object");
-        expect(clause).to.have.property("filters");
-        expect(clause).to.have.property("id");
-        expect(clause.filters).to.be.an("array");
-        expect(clause.filters).to.have.length(1);
-        expect(clause.filters[0]).to.have.property("id");
-        expect(clause.filters[0]).to.have.property("target");
-        expect(clause.filters[0]).to.have.property("operator");
-        expect(clause.filters[0]).to.have.property("value");
-        expect(clause.filters[0].target).to.be.equal(met[0]);
-        expect(clause.filters[0].value).to.be.equal("0");
-        expect(clause.filters[0].operator).to.be.equal(FilterOperator.NOTEQUAL);
-    });
-    it("should throw an exception, when a dimension is not found", () => {
-        let error: boolean = false;
-        const strFilter = "dim:-1==0";
-        const exeption = "Filter could not be created: \"dim:-1\" was not found";
-        try {
-            engine.parseClause(strFilter);
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal(exeption);
-
-        }
-        expect(error).to.be.true;
-    });
-    it("should throw an exception, when a metric is not found", () => {
-        let error: boolean = false;
-        const strFilter = "met:-1==0";
-        const exeption = "Filter could not be created: \"met:-1\" was not found";
-        try {
-            engine.parseClause(strFilter);
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal(exeption);
-
-        }
-        expect(error).to.be.true;
-    });
-    it("should throw an exception, when a operator is not found", () => {
-        let error: boolean = false;
-        let strFilter = "met:-1=?0";
-        let exeption = "Filter could not be created: Operator on \"" + strFilter + "\" could not be extracted";
-        try {
-            engine.parseClause(strFilter);
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal(exeption);
-
-        }
-        expect(error).to.be.true;
-        error = false;
-        strFilter = "met:-1!?0";
-        exeption = "Filter could not be created: Operator on \"" + strFilter + "\" could not be extracted";
-        try {
-            engine.parseClause(strFilter);
-        }
-        catch (e){
-            error = true;
-            expect(e.message).to.be.equal(exeption);
-
-        }
-        expect(error).to.be.true;
-    });
-
-    it("should throw an exception, when a operator does not suit", () => {
-        const operators = [">", "<", "<=", ">="];
-        for (let i = 0; i < operators.length; ++i) {
-            let error: boolean = false;
-            let strFilter = "dim:3" + operators[i] + "joao";
-            let exeption = "Filter could not be created: Operator \"" + operators[i] + "\" is invalid for target \"dim:3\"";
-            try {
-                engine.parseClause(strFilter);
-            }
-            catch (e){
-                error = true;
-                expect(e.message).to.be.equal(exeption);
-
-            }
-        }
-    });
-
-    it("should parse clauses with several operators for dates and integers", () => {
-        const operators: {[key: string]: FilterOperator} = {
-            ">": FilterOperator.GREATER,
-            "<": FilterOperator.LOWER,
-            "<=": FilterOperator.LOWEREQ,
-            ">=": FilterOperator.GREATEREQ,
-            "==": FilterOperator.EQUAL,
-            "!=": FilterOperator.NOTEQUAL
-        };
-        for (let op of Object.keys(operators)) {
-            const strFilter = "dim:0" + op + "0";
-            const clause = engine.parseClause(strFilter);
-            expect(clause).to.be.an("object");
-            expect(clause).to.have.property("filters");
-            expect(clause).to.have.property("id");
-            expect(clause.filters).to.be.an("array");
-            expect(clause.filters).to.have.length(1);
-            expect(clause.filters[0]).to.have.property("id");
-            expect(clause.filters[0]).to.have.property("target");
-            expect(clause.filters[0]).to.have.property("operator");
-            expect(clause.filters[0]).to.have.property("value");
-            expect(clause.filters[0].target).to.be.equal(dim[0]);
-            expect(clause.filters[0].value).to.be.equal("0");
-            expect(clause.filters[0].operator).to.be.equal(operators[op]);
-        }
-
-        for (let op of Object.keys(operators)) {
-            const strFilter = "dim:2" + op + "0";
-            const clause = engine.parseClause(strFilter);
-            expect(clause).to.be.an("object");
-            expect(clause).to.have.property("filters");
-            expect(clause).to.have.property("id");
-            expect(clause.filters).to.be.an("array");
-            expect(clause.filters).to.have.length(1);
-            expect(clause.filters[0]).to.have.property("id");
-            expect(clause.filters[0]).to.have.property("target");
-            expect(clause.filters[0]).to.have.property("operator");
-            expect(clause.filters[0]).to.have.property("value");
-            expect(clause.filters[0].target).to.be.equal(dim[2]);
-            expect(clause.filters[0].value).to.be.equal("0");
-            expect(clause.filters[0].operator).to.be.equal(operators[op]);
-        }
-    });
-});
diff --git a/src/core/filter.spec.ts b/src/core/filter.spec.ts
deleted file mode 100644
index 6b6b4e05b59e122a46f042e5197f31bab9be040c..0000000000000000000000000000000000000000
--- a/src/core/filter.spec.ts
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { FilterOperator, Filter } from "./filter";
-
-describe("filter class", () => {
-    it("should correctly parse the operators", () => {
-        expect(Filter.parseOperator("==")).to.be.equal(FilterOperator.EQUAL);
-        expect(Filter.parseOperator("!=")).to.be.equal(FilterOperator.NOTEQUAL);
-        expect(Filter.parseOperator(">")).to.be.equal(FilterOperator.GREATER);
-        expect(Filter.parseOperator("<")).to.be.equal(FilterOperator.LOWER);
-        expect(Filter.parseOperator(">=")).to.be.equal(FilterOperator.GREATEREQ);
-        expect(Filter.parseOperator("<=")).to.be.equal(FilterOperator.LOWEREQ);
-        expect(Filter.parseOperator("?=")).to.be.equal(FilterOperator.NONE);
-    });
-});
diff --git a/src/experiments-10-14.spec.ts b/src/experiments-10-14.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6a9ad6d097a49d0fab7f45d375ad5ea28b9652d6
--- /dev/null
+++ b/src/experiments-10-14.spec.ts
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
+ * Departamento de Informatica - Universidade Federal do Parana
+ *
+ * This file is part of blendb.
+ *
+ * blendb is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * blendb is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+import { expect } from "chai";
+
+import { Engine } from "./core/engine";
+import { Metric } from "./core/metric";
+import { Filter, FilterOperator } from "./core/filter";
+import { Clause } from "./core/clause";
+import { View } from "./core/view";
+import { ConfigParser } from "./util/configParser";
+import { PostgresAdapter } from "./adapter/postgres";
+import { PoolConfig } from "pg";
+
+function loadTest(file: string): any {
+    const engine = new Engine();
+    const config = ConfigParser.parse(file)
+
+    const met = config.metrics.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+
+    const dim = config.dimensions.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+    const views = config.views;
+
+    met.forEach((item) => engine.addMetric(item));
+    dim.forEach((item) => engine.addDimension(item));
+
+    views.forEach((view) => engine.addView(view));
+
+    const parsedConfig: PoolConfig = {
+        user: config.connection.user
+        , database: config.connection.database
+        , password: config.connection.host
+        , host: config.connection.host
+        , port: config.connection.port
+        , max: 10
+        , idleTimeoutMillis: 3000
+    }
+
+    return {
+        engine: engine
+        , adapter: new PostgresAdapter(parsedConfig)
+        , queries: {
+            "linear": {
+                metrics: [met[0]]
+                , dimensions: [dim[dim.length-1]]
+            }
+        }
+    };
+}
+
+describe("Article experiments", () => {
+
+    /*const test16 = loadTest("experiments/test-16.yaml")
+    const test32 = loadTest("experiments/test-32.yaml")
+    const test64 = loadTest("experiments/test-64.yaml")
+    const test128 = loadTest("experiments/test-128.yaml")
+    const test256 = loadTest("experiments/test-256.yaml")
+    const test512 = loadTest("experiments/test-512.yaml")
+    const test1024 = loadTest("experiments/test-1024.yaml")
+    */
+
+    // To change between the graph layouts another script is used
+    const path = "experiments/tests/develop/layout/";
+    //for (let i = 4; i <= 16; ++i) {
+    //    const n = Math.pow(2,i);
+    //    const test = loadTest(path + n + ".yaml")
+    //    it("LayoutView;n=" + n, () => {
+    //        const engine = test.engine;
+    //        const adapter = test.adapter;
+    //        const query = test.queries["linear"];
+
+    //        const view = engine.query(query);
+    //        expect(view).to.be.an("object");
+    //    });
+    //}
+
+    for (let i = 10; i <= 14; ++i) {
+        const n = Math.pow(2,i);
+        const test = loadTest(path + n + ".yaml")
+        it("LayoutSQL;n=" + n, () => {
+            const engine = test.engine;
+            const adapter = test.adapter;
+            const query = test.queries["linear"];
+
+            const view = engine.query(query);
+            const strQuery = adapter.getQueryFromView(view);
+            expect(view).to.be.an("object");
+            expect(strQuery).to.be.an("string");
+        });
+    }
+
+    /*it("LinearGraph;n=16", () => {
+        const engine = test16.engine;
+        const query = test16.queries["linear"];
+
+        let optimalView = engine.query(query);
+        // expect(optimalView).to.be.an("object");
+        // expect(optimalView).to.have.property("metrics");
+        // expect(optimalView).to.have.property("dimensions");
+        // expect(optimalView).to.have.property("childViews");
+        // expect(optimalView.metrics).to.be.an("array");
+        // expect(optimalView.dimensions).to.be.an("array");
+        // expect(optimalView.childViews).to.be.an("array");
+        // expect(optimalView.metrics).to.have.length(12);
+        // expect(optimalView.dimensions).to.have.length(12);
+    });*/
+});
diff --git a/src/experiments-15-16.spec.ts b/src/experiments-15-16.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cfae87f97ccce1045c323ece10160629ab0f3801
--- /dev/null
+++ b/src/experiments-15-16.spec.ts
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
+ * Departamento de Informatica - Universidade Federal do Parana
+ *
+ * This file is part of blendb.
+ *
+ * blendb is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * blendb is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+import { expect } from "chai";
+
+import { Engine } from "./core/engine";
+import { Metric } from "./core/metric";
+import { Filter, FilterOperator } from "./core/filter";
+import { Clause } from "./core/clause";
+import { View } from "./core/view";
+import { ConfigParser } from "./util/configParser";
+import { PostgresAdapter } from "./adapter/postgres";
+import { PoolConfig } from "pg";
+
+function loadTest(file: string): any {
+    const engine = new Engine();
+    const config = ConfigParser.parse(file)
+
+    const met = config.metrics.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+
+    const dim = config.dimensions.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+    const views = config.views;
+
+    met.forEach((item) => engine.addMetric(item));
+    dim.forEach((item) => engine.addDimension(item));
+
+    views.forEach((view) => engine.addView(view));
+
+    const parsedConfig: PoolConfig = {
+        user: config.connection.user
+        , database: config.connection.database
+        , password: config.connection.host
+        , host: config.connection.host
+        , port: config.connection.port
+        , max: 10
+        , idleTimeoutMillis: 3000
+    }
+
+    return {
+        engine: engine
+        , adapter: new PostgresAdapter(parsedConfig)
+        , queries: {
+            "linear": {
+                metrics: [met[0]]
+                , dimensions: [dim[dim.length-1]]
+            }
+        }
+    };
+}
+
+describe("Article experiments", () => {
+
+    /*const test16 = loadTest("experiments/test-16.yaml")
+    const test32 = loadTest("experiments/test-32.yaml")
+    const test64 = loadTest("experiments/test-64.yaml")
+    const test128 = loadTest("experiments/test-128.yaml")
+    const test256 = loadTest("experiments/test-256.yaml")
+    const test512 = loadTest("experiments/test-512.yaml")
+    const test1024 = loadTest("experiments/test-1024.yaml")
+    */
+
+    // To change between the graph layouts another script is used
+    const path = "experiments/tests/develop/layout/";
+    //for (let i = 4; i <= 16; ++i) {
+    //    const n = Math.pow(2,i);
+    //    const test = loadTest(path + n + ".yaml")
+    //    it("LayoutView;n=" + n, () => {
+    //        const engine = test.engine;
+    //        const adapter = test.adapter;
+    //        const query = test.queries["linear"];
+
+    //        const view = engine.query(query);
+    //        expect(view).to.be.an("object");
+    //    });
+    //}
+
+    for (let i = 15; i <= 16; ++i) {
+        const n = Math.pow(2,i);
+        const test = loadTest(path + n + ".yaml")
+        it("LayoutSQL;n=" + n, () => {
+            const engine = test.engine;
+            const adapter = test.adapter;
+            const query = test.queries["linear"];
+
+            const view = engine.query(query);
+            const strQuery = adapter.getQueryFromView(view);
+            expect(view).to.be.an("object");
+            expect(strQuery).to.be.an("string");
+        });
+    }
+
+    /*it("LinearGraph;n=16", () => {
+        const engine = test16.engine;
+        const query = test16.queries["linear"];
+
+        let optimalView = engine.query(query);
+        // expect(optimalView).to.be.an("object");
+        // expect(optimalView).to.have.property("metrics");
+        // expect(optimalView).to.have.property("dimensions");
+        // expect(optimalView).to.have.property("childViews");
+        // expect(optimalView.metrics).to.be.an("array");
+        // expect(optimalView.dimensions).to.be.an("array");
+        // expect(optimalView.childViews).to.be.an("array");
+        // expect(optimalView.metrics).to.have.length(12);
+        // expect(optimalView.dimensions).to.have.length(12);
+    });*/
+});
diff --git a/src/experiments-4-9.spec.ts b/src/experiments-4-9.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f654aa68500e9a47af861c3951f72f102555b643
--- /dev/null
+++ b/src/experiments-4-9.spec.ts
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
+ * Departamento de Informatica - Universidade Federal do Parana
+ *
+ * This file is part of blendb.
+ *
+ * blendb is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * blendb is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+import { expect } from "chai";
+
+import { Engine } from "./core/engine";
+import { Metric } from "./core/metric";
+import { Filter, FilterOperator } from "./core/filter";
+import { Clause } from "./core/clause";
+import { View } from "./core/view";
+import { ConfigParser } from "./util/configParser";
+import { PostgresAdapter } from "./adapter/postgres";
+import { PoolConfig } from "pg";
+
+function loadTest(file: string): any {
+    const engine = new Engine();
+    const config = ConfigParser.parse(file)
+
+    const met = config.metrics.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+
+    const dim = config.dimensions.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+    const views = config.views;
+
+    met.forEach((item) => engine.addMetric(item));
+    dim.forEach((item) => engine.addDimension(item));
+
+    views.forEach((view) => engine.addView(view));
+
+    const parsedConfig: PoolConfig = {
+        user: config.connection.user
+        , database: config.connection.database
+        , password: config.connection.host
+        , host: config.connection.host
+        , port: config.connection.port
+        , max: 10
+        , idleTimeoutMillis: 3000
+    }
+
+    return {
+        engine: engine
+        , adapter: new PostgresAdapter(parsedConfig)
+        , queries: {
+            "linear": {
+                metrics: [met[0]]
+                , dimensions: [dim[dim.length-1]]
+            }
+        }
+    };
+}
+
+describe("Article experiments", () => {
+
+    /*const test16 = loadTest("experiments/test-16.yaml")
+    const test32 = loadTest("experiments/test-32.yaml")
+    const test64 = loadTest("experiments/test-64.yaml")
+    const test128 = loadTest("experiments/test-128.yaml")
+    const test256 = loadTest("experiments/test-256.yaml")
+    const test512 = loadTest("experiments/test-512.yaml")
+    const test1024 = loadTest("experiments/test-1024.yaml")
+    */
+
+    // To change between the graph layouts another script is used
+    const path = "experiments/tests/develop/layout/";
+    //for (let i = 4; i <= 16; ++i) {
+    //    const n = Math.pow(2,i);
+    //    const test = loadTest(path + n + ".yaml")
+    //    it("LayoutView;n=" + n, () => {
+    //        const engine = test.engine;
+    //        const adapter = test.adapter;
+    //        const query = test.queries["linear"];
+
+    //        const view = engine.query(query);
+    //        expect(view).to.be.an("object");
+    //    });
+    //}
+
+    for (let i = 4; i <= 9; ++i) {
+        const n = Math.pow(2,i);
+        const test = loadTest(path + n + ".yaml")
+        it("LayoutSQL;n=" + n, () => {
+            const engine = test.engine;
+            const adapter = test.adapter;
+            const query = test.queries["linear"];
+
+            const view = engine.query(query);
+            const strQuery = adapter.getQueryFromView(view);
+            expect(view).to.be.an("object");
+            expect(strQuery).to.be.an("string");
+        });
+    }
+
+    /*it("LinearGraph;n=16", () => {
+        const engine = test16.engine;
+        const query = test16.queries["linear"];
+
+        let optimalView = engine.query(query);
+        // expect(optimalView).to.be.an("object");
+        // expect(optimalView).to.have.property("metrics");
+        // expect(optimalView).to.have.property("dimensions");
+        // expect(optimalView).to.have.property("childViews");
+        // expect(optimalView.metrics).to.be.an("array");
+        // expect(optimalView.dimensions).to.be.an("array");
+        // expect(optimalView.childViews).to.be.an("array");
+        // expect(optimalView.metrics).to.have.length(12);
+        // expect(optimalView.dimensions).to.have.length(12);
+    });*/
+});
diff --git a/src/experiments2.spec.ts b/src/experiments2.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..631625fe0b54fb60569c03ad1bb6e83aad0d986e
--- /dev/null
+++ b/src/experiments2.spec.ts
@@ -0,0 +1,124 @@
+/*
+ * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
+ * Departamento de Informatica - Universidade Federal do Parana
+ *
+ * This file is part of blendb.
+ *
+ * blendb is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * blendb is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+import { expect } from "chai";
+
+import { Engine } from "./core/engine";
+import { Metric } from "./core/metric";
+import { Filter, FilterOperator } from "./core/filter";
+import { Clause } from "./core/clause";
+import { View } from "./core/view";
+import { ConfigParser } from "./util/configParser";
+import { PostgresAdapter } from "./adapter/postgres";
+import { PoolConfig } from "pg";
+
+function loadTest(file: string): any {
+    const engine = new Engine();
+    const config = ConfigParser.parse(file)
+
+    const met = config.metrics.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+
+    const dim = config.dimensions.sort((a ,b) => {
+        const aValue = parseInt(a.name.split(":")[1], 10);
+        const bValue = parseInt(b.name.split(":")[1], 10);
+        return aValue -bValue;
+    });
+    const views = config.views;
+
+    met.forEach((item) => engine.addMetric(item));
+    dim.forEach((item) => engine.addDimension(item));
+
+    views.forEach((view) => engine.addView(view));
+
+    const parsedConfig: PoolConfig = {
+        user: config.connection.user
+        , database: config.connection.database
+        , password: config.connection.host
+        , host: config.connection.host
+        , port: config.connection.port
+        , max: 10
+        , idleTimeoutMillis: 3000
+    }
+
+    let queries: any = {}
+
+    for (let i = 4; i <= 16; ++i) {
+        const n = Math.pow(2,i);
+        queries["" + n] = {
+            metrics: [met[0]]
+            , dimensions: [dim[n-1]]
+        }
+    }
+
+    return {
+        engine: engine
+        , adapter: new PostgresAdapter(parsedConfig)
+        , queries: queries
+    };
+}
+
+describe("Article experiments", () => {
+
+    /*const test16 = loadTest("experiments/test-16.yaml")
+    const test32 = loadTest("experiments/test-32.yaml")
+    const test64 = loadTest("experiments/test-64.yaml")
+    const test128 = loadTest("experiments/test-128.yaml")
+    const test256 = loadTest("experiments/test-256.yaml")
+    const test512 = loadTest("experiments/test-512.yaml")
+    const test1024 = loadTest("experiments/test-1024.yaml")
+    */
+
+    // To change between the graph layouts another script is used
+    const path = "experiments/tests/develop/layout/";
+    const test = loadTest(path + Math.pow(2,16) + ".yaml")
+    for (let i = 4; i <= 16; ++i) {
+        const n = Math.pow(2,i);
+        it("MaxGraphSQL;n=" + n, () => {
+            const engine = test.engine;
+            const adapter = test.adapter;
+            const query = test.queries["" + n];
+
+            const view = engine.query(query);
+            const strQuery = adapter.getQueryFromView(view);
+            expect(view).to.be.an("object");
+            expect(strQuery).to.be.an("string");
+        });
+    }
+
+    /*it("LinearGraph;n=16", () => {
+        const engine = test16.engine;
+        const query = test16.queries["linear"];
+
+        let optimalView = engine.query(query);
+        // expect(optimalView).to.be.an("object");
+        // expect(optimalView).to.have.property("metrics");
+        // expect(optimalView).to.have.property("dimensions");
+        // expect(optimalView).to.have.property("childViews");
+        // expect(optimalView.metrics).to.be.an("array");
+        // expect(optimalView.dimensions).to.be.an("array");
+        // expect(optimalView.childViews).to.be.an("array");
+        // expect(optimalView.metrics).to.have.length(12);
+        // expect(optimalView.dimensions).to.have.length(12);
+    });*/
+});
diff --git a/src/util/configParser.spec.ts b/src/util/configParser.spec.ts
deleted file mode 100644
index f31d5610783c93a87cd4dc6a9476999ec3dfa55f..0000000000000000000000000000000000000000
--- a/src/util/configParser.spec.ts
+++ /dev/null
@@ -1,304 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-import { ConfigParser, ViewParsingOptions } from "./configParser";
-import { Dimension, DimensionStrOptions } from "../core/dimension";
-import { RelationType , DataType} from "../common/types";
-import { EnumType } from "../core/enumType";
-import { EnumHandler } from "../util/enumHandler";
-import { MetricStrOptions } from "../core/metric";
-import { SourceStrOptions } from "../core/source";
-
-function strToRelationType (str: string): RelationType {
-    switch (str) {
-        case "day":
-            return RelationType.DAY;
-        case "month":
-            return RelationType.MONTH;
-        case "year":
-            return RelationType.YEAR;
-        default:
-            return RelationType.NONE;
-    }
-}
-
-describe("configParser utility library", () => {
-    it("should throw expection for inexistent metric", () => {
-        let opts: ViewParsingOptions =  {
-            alias: "Test",
-            data: "test",
-            dimensions: [],
-            metrics: ["met:-1"]
-        };
-
-        let error: boolean = false;
-        try {
-            ConfigParser.parseViewOpt(opts, {}, {});
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] Non exist metric set to view " + opts.alias);
-        }
-
-        expect(error).to.be.true;
-    });
-
-    it("should throw expection for inexistent dimension", () => {
-        let opts: ViewParsingOptions =  {
-            alias: "Test",
-            data: "test",
-            dimensions: ["dim:-1"],
-            metrics: []
-        };
-
-        let error: boolean = false;
-        try {
-            ConfigParser.parseViewOpt(opts, {}, {});
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] Non exist dimension set to view " + opts.alias);
-        }
-
-        expect(error).to.be.true;
-    });
-
-    it("should throw expection for inexistent parent for subdimension", () => {
-        let opts: DimensionStrOptions =  {
-            name: "dim:-1",
-            dataType: "integer",
-            parent: "dim:0",
-            relation: "none"
-        };
-
-        let dims: Dimension[] = [];
-
-        let error: boolean = false;
-        try {
-            ConfigParser.parseDimOpts(opts, dims, null);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] Parent for subdimension " + opts.name + "  not found");
-        }
-
-        expect(error).to.be.true;
-    });
-
-    it("should throw expection for bad formed clause, invalid operator", () => {
-        let opts: ViewParsingOptions =  {
-            alias: "thisMUSTgoesWrong",
-            data: "someRandomPath",
-            origin: true,
-            dimensions: ["dim:0"],
-            metrics: [],
-            clauses: ["dim:0?=1"]
-        };
-
-        let dimMap: {[key: string]: Dimension} = {
-            "dim:0" : new Dimension({name: "dim:0", dataType: DataType.INTEGER})
-        };
-
-        let error: boolean = false;
-        try {
-            ConfigParser.parseViewOpt(opts, {}, dimMap);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] Bad formed clause: on view \"" + opts.alias +
-                   "\" the clause \"dim:0?=1\" could not be created");
-        }
-
-        expect(error).to.be.true;
-    });
-
-    it("should throw expection for bad formed clause, invalid target", () => {
-        let opts: ViewParsingOptions =  {
-            alias: "thisMUSTgoesWrong",
-            data: "someRandomPath",
-            origin: true,
-            dimensions: ["dim:0"],
-            metrics: [],
-            clauses: ["dim:1==1"]
-        };
-
-        let dimMap: {[key: string]: Dimension} = {
-            "dim:0" : new Dimension({name: "dim:0", dataType: DataType.INTEGER})
-        };
-
-        let error: boolean = false;
-        try {
-            ConfigParser.parseViewOpt(opts, {}, dimMap);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] Bad formed clause: on view \"" + opts.alias +
-                   "\" the clause \"dim:1==1\" could not be created");
-        }
-
-        expect(error).to.be.true;
-    });
-
-    it("should parse subdimentions relations correctly", () => {
-        let opts: DimensionStrOptions[] =  [
-            {
-                name: "dim:day",
-                dataType: "integer",
-                parent: "dim:0",
-                relation: "day"
-            },
-            {
-                name: "dim:month",
-                dataType: "integer",
-                parent: "dim:0",
-                relation: "month"
-            },
-            {
-                name: "dim:year",
-                dataType: "integer",
-                parent: "dim:0",
-                relation: "year"
-            },
-            {
-                name: "dim:none",
-                dataType: "integer",
-                parent: "dim:0",
-                relation: "none"
-            }
-        ];
-
-        let dims: Dimension[] = [
-            new Dimension({name: "dim:a", dataType: DataType.DATE}),
-            new Dimension({name: "dim:0", dataType: DataType.DATE})
-        ];
-
-        for (let i = 0; i < opts.length; ++i) {
-            let parsed = ConfigParser.parseDimOpts(opts[i], dims, null);
-            expect(parsed.name).to.be.equal(opts[i].name);
-            expect(EnumHandler.stringfyDataType(parsed.dataType)).to.be.equal(opts[i].dataType);
-            expect(parsed.parent).to.be.equal(dims[1]);
-            expect(parsed.relation).to.be.equal(strToRelationType(opts[i].relation));
-        }
-    });
-
-    it("should parse correctly enumType with dimension", () => {
-
-        let opts: DimensionStrOptions =  {
-            name: "dim:day",
-            dataType: "enumtype",
-            enumType: "enumtype:5",
-            parent: "dim:0",
-            relation: "day"
-        };
-        let dims: Dimension[] = [
-            new Dimension({name: "dim:0", dataType: DataType.DATE})
-        ];
-        let enumMap: {[key: string]: EnumType} = {
-            "enumtype:5" : new EnumType({name: "enumtype:5", values: ["nope", "test"]})
-        };
-        let parsed = ConfigParser.parseDimOpts(opts, dims, enumMap);
-
-        expect(parsed.enumType).to.be.equal(enumMap["enumtype:5"].name);
-    });
-
-    it("should fail to parse enumType with dimension", () => {
-
-        let opts: DimensionStrOptions =  {
-            name: "dim:day",
-            dataType: "enumtype:4",
-            parent: "dim:0",
-            relation: "day"
-        };
-        let dims: Dimension[] = [
-            new Dimension({name: "dim:0", dataType: DataType.INTEGER})
-        ];
-        let enumMap: {[key: string]: EnumType} = {
-            "enumtype:5" : new EnumType({name: "enumtype:5", values: ["nope", "test"]})
-        };
-        let error: boolean = false;
-        try {
-            ConfigParser.parseDimOpts(opts, dims, enumMap);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] DataType: '" + opts.dataType + "' does not exist on Dimension");
-        }
-        expect(error).to.be.true;
-
-    });
-
-    it("should fail to parse dataType with Metrics", () => {
-        let met: MetricStrOptions;
-        met = {
-            name: "met:0",
-            aggregation: "sum",
-            dataType: "string",
-            description: "just for test"
-        };
-        let error: boolean = false;
-        try {
-            ConfigParser.parseMetOpts(met);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] DataType: '" + met.dataType + "' does not exist on Metric");
-        }
-        expect(error).to.be.true;
-
-    });
-    it("should fail to parse enumType with Source", () => {
-        let sourc: SourceStrOptions;
-        sourc = {
-            name: "source_10",
-            description: "source used for test only",
-            fields: [
-                    {name: "fields:0",
-                    description: "first entry",
-                    dataType: "string"},
-                    {name: "fields:1",
-                    description: "second entry",
-                    dataType: "enumtype",
-                    enumType: "enumtype:10"}
-            ]
-        };
-        let enumMap: {[key: string]: EnumType} = {
-            "enumtype:5" : new EnumType({name: "enumtype:5", values: ["nope", "test"]})
-        };
-        let error: boolean = false;
-        try {
-            ConfigParser.parseSourceOpts(sourc, enumMap);
-        }
-        catch (e) {
-            error = true;
-            expect(e.message).to.be
-            .equal("[Parsing error] EnumType: '" + sourc.fields[1].enumType + "' does not exist on Source");
-        }
-        expect(error).to.be.true;
-    });
-
-});
diff --git a/src/util/graph.spec.ts b/src/util/graph.spec.ts
deleted file mode 100644
index 8dc8ea982468a6e32235da45507d7dae24220dc8..0000000000000000000000000000000000000000
--- a/src/util/graph.spec.ts
+++ /dev/null
@@ -1,636 +0,0 @@
-/*
- * Copyright (C) 2017 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { Metric } from "../core/metric";
-import { Dimension } from "../core/dimension";
-import { View } from "../core/view";
-import { Filter, FilterOperator } from "../core/filter";
-import { Clause } from "../core/clause";
-import { Graph } from "./graph";
-import { AggregationType, RelationType, DataType } from "../common/types";
-import { Query } from "../common/query";
-
-describe("graph class", () => {
-
-    it("should not create 2 vertices with the same dimension", () => {
-        let g = new Graph();
-        let dim = new Dimension({name: "dim:test", dataType: DataType.STRING});
-
-        expect(g.addDimension(dim)).to.be.true;
-        expect(g.addDimension(dim)).to.be.false;
-    });
-
-    it("should not create 2 vertices with same metric", () => {
-        let g = new Graph();
-        let met = new Metric({
-            name: "met:test",
-            aggregation: AggregationType.SUM,
-            dataType: DataType.STRING
-        });
-
-        expect(g.addMetric(met)).to.be.true;
-        expect(g.addMetric(met)).to.be.false;
-    });
-
-    it("should not create a vertex with a invalid dimension", () => {
-        let g = new Graph();
-        let dim: Dimension;
-
-        expect(g.addDimension(dim)).to.be.false;
-    });
-
-    it("should not create a vertex with a invalid metric", () => {
-        let g = new Graph();
-        let met: Metric;
-
-        expect(g.addMetric(met)).to.be.false;
-    });
-
-    it("should not create a vertex with a subdimension when parent is not a vertex", () => {
-        let g = new Graph();
-        let dim = new Dimension({name: "dim:test", dataType: DataType.STRING});
-        let subdim = new Dimension({
-            name: "dim:sub_test",
-            dataType: DataType.STRING,
-            relation: RelationType.MONTH,
-            parent: dim
-        });
-
-        expect(g.addDimension(subdim)).to.be.false;
-    });
-
-    it("should add a set of views", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.STRING}),
-            new Dimension({name: "dim:1", dataType: DataType.STRING}),
-            new Dimension({name: "dim:2", dataType: DataType.STRING}),
-            new Dimension({name: "dim:3", dataType: DataType.STRING})
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < dims.length; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let views = [
-            new View({
-                metrics: [],
-                dimensions: [dims[0], dims[1]],
-                origin: true
-            }),
-            new View({
-                metrics: [],
-                dimensions: [dims[2], dims[3]],
-                origin: true
-            }),
-            new View({
-                metrics: [],
-                dimensions: dims,
-                origin: true
-            })
-        ];
-
-        for (let i = 0; i < views.length; ++i) {
-            expect(g.addView(views[i])).to.be.true;
-        }
-    });
-
-    it("should not add a view twice", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.STRING}),
-            new Dimension({name: "dim:1", dataType: DataType.STRING}),
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < dims.length; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let view = new View({
-            metrics: [],
-            dimensions: [dims[0], dims[1]],
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.true;
-        expect(g.addView(view)).to.be.false;
-    });
-
-    it("should not add views when metrics and dimensions are not vertices", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.STRING}),
-            new Dimension({name: "dim:1", dataType: DataType.STRING}),
-            new Dimension({name: "dim:2", dataType: DataType.STRING})
-        ];
-
-        let g = new Graph();
-
-        expect(g.addDimension(dims[0])).to.be.true;
-
-        let view = new View({
-            metrics: [],
-            dimensions: dims,
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.false;
-    });
-
-    it("should not add invalid views", () => {
-        let g = new Graph();
-        expect(g.addView(null)).to.be.false;
-    });
-
-    it("should add only once a view with only one vertex", () => {
-        let dim = new Dimension({name: "dim:0", dataType: DataType.STRING});
-
-        let g = new Graph();
-
-        expect(g.addDimension(dim)).to.be.true;
-
-        let view = new View({
-            metrics: [],
-            dimensions: [dim],
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.true;
-        expect(g.addView(view)).to.be.false;
-    });
-
-    it("should create a cover for a single vertex", () => {
-        let dim = new Dimension({name: "dim:0", dataType: DataType.STRING});
-
-        let g = new Graph();
-
-        expect(g.addDimension(dim)).to.be.true;
-
-        let view = new View({
-            metrics: [],
-            dimensions: [dim],
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.true;
-        const query: Query = { metrics: [], dimensions: [dim] };
-        let children = g.cover(query);
-        expect(children).to.be.an("array");
-        expect(children).to.have.length(1);
-        expect(children[0].id).to.be.equal(view.id);
-    });
-
-    it("should create a cover for several vertices", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.STRING}),
-            new Dimension({name: "dim:1", dataType: DataType.STRING}),
-            new Dimension({name: "dim:2", dataType: DataType.STRING})
-        ];
-
-        let mets = [
-            new Metric({name: "met:0", dataType: DataType.INTEGER, aggregation: AggregationType.SUM}),
-            new Metric({name: "met:1", dataType: DataType.INTEGER, aggregation: AggregationType.AVG}),
-            new Metric({name: "met:2", dataType: DataType.INTEGER, aggregation: AggregationType.AVG})
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-            expect(g.addMetric(mets[i])).to.be.true;
-        }
-
-        let views = [
-            new View({
-                metrics: [mets[0]],
-                dimensions: [dims[0]],
-                origin: true
-            }),
-            new View({
-                metrics: [mets[1]],
-                dimensions: [dims[1]],
-                origin: true
-            }),
-            new View({
-                metrics: [mets[2]],
-                dimensions: [dims[2]],
-                origin: true
-            }),
-            new View({
-                metrics: [],
-                dimensions: dims,
-                origin: true
-            }),
-            new View({
-                metrics: mets,
-                dimensions: dims,
-                origin: true
-            }),
-            new View({
-                metrics: [mets[0], mets[1]],
-                dimensions: [dims[0], dims[1]],
-                origin: true
-            }),
-        ];
-
-        for (let i = 0; i < views.length; ++i) {
-            expect(g.addView(views[i])).to.be.true;
-        }
-
-        const query: Query = { metrics: [mets[0], mets[1]], dimensions: [dims[0], dims[1]] };
-        let children = g.cover(query);
-        expect(children).to.be.an("array");
-        expect(children).to.have.length(1);
-        expect(children[0].id).to.be.equal(views[views.length - 1].id);
-    });
-
-    it("should create a cover with sub dimensions", () => {
-        let dim = new Dimension({name: "dim:0", dataType: DataType.DATE});
-        let dims = [
-            dim,
-            new Dimension({
-                name: "subdim:0",
-                dataType: DataType.STRING,
-                parent: dim,
-                relation: RelationType.MONTH
-            }),
-            new Dimension({
-                name: "subdim:1",
-                dataType: DataType.STRING,
-                parent: dim,
-                relation: RelationType.DAY
-            }),
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let view = new View({
-            metrics: [],
-            dimensions: [dims[0]],
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.true;
-
-        const query: Query = { metrics: [], dimensions: [dims[1], dims[2]] };
-        let children = g.cover(query);
-        expect(children).to.be.an("array");
-        expect(children).to.have.length(1);
-        expect(children[0].id).to.be.equal(view.id);
-    });
-
-    it("should return empty when try to cover a empty list", () => {
-        let dim = new Dimension({name: "dim:0", dataType: DataType.DATE});
-        let dims = [
-            dim,
-            new Dimension({
-                name: "subdim:0",
-                dataType: DataType.STRING,
-                parent: dim,
-                relation: RelationType.MONTH
-            }),
-            new Dimension({
-                name: "subdim:1",
-                dataType: DataType.STRING,
-                parent: dim,
-                relation: RelationType.DAY
-            }),
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let view = new View({
-            metrics: [],
-            dimensions: [dims[0]],
-            origin: true
-        });
-
-        expect(g.addView(view)).to.be.true;
-
-        const query: Query = { metrics: [], dimensions: [] };
-        let children = g.cover(query);
-        expect(children).to.be.an("array");
-        expect(children).to.be.empty;
-    });
-
-    it("should cover the graph, even when a constraint edge can not be used", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.DATE}),
-            new Dimension({name: "dim:1", dataType: DataType.DATE}),
-            new Dimension({name: "dim:2", dataType: DataType.DATE}),
-        ];
-
-        let filter1 = new Filter({
-            target: dims[0],
-            operator: FilterOperator.EQUAL,
-            value: "01/01/01"
-        });
-        let filter2 = new Filter({
-            target: dims[0],
-            operator: FilterOperator.EQUAL,
-            value: "01/01/02"
-        });
-        let clause1 = new Clause({filters: [filter1]});
-        let clause2 = new Clause({filters: [filter2]});
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let view1 = new View({
-            metrics: [],
-            dimensions: [dims[0], dims[1]],
-            origin: true
-        });
-
-        let view2 = new View({
-            metrics: [],
-            dimensions: [dims[1], dims[2]],
-            origin: true
-        });
-
-        let view3 = new View({
-            metrics: [],
-            dimensions: dims,
-            origin: false,
-            clauses: [clause1]
-        });
-
-        expect(g.addView(view1)).to.be.true;
-        expect(g.addView(view2)).to.be.true;
-        expect(g.addView(view3)).to.be.true;
-
-        const query: Query = { metrics: [], dimensions: dims, clauses: [clause2] };
-        let children = g.cover(query);
-        expect(children).to.be.an("array");
-        expect(children).to.have.length(2);
-        expect(children.every((item) => item.id !==  view3.id)).to.be.true;
-    });
-
-    it("should cover the query, using filters of intervals", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.FLOAT}),
-            new Dimension({name: "dim:1", dataType: DataType.FLOAT}),
-            new Dimension({name: "dim:2", dataType: DataType.DATE}),
-        ];
-
-        const filters = [
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.GREATEREQ,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.LOWER,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.GREATER,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.LOWEREQ,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.GREATEREQ,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.LOWER,
-                value: "10"
-            })
-        ];
-
-        const clauses = [
-            new Clause({filters: [filters[0]]}),
-            new Clause({filters: [filters[1]]}),
-            new Clause({filters: [filters[2]]}),
-            new Clause({filters: [filters[3]]}),
-            new Clause({filters: [filters[4]]}),
-            new Clause({filters: [filters[5]]}),
-        ];
-
-        const filtersTest = [
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.GREATER,
-                value: "1"
-            }),
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.LOWEREQ,
-                value: "9"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.GREATEREQ,
-                value: "1"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.LOWER,
-                value: "9"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.GREATER,
-                value: "1"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.LOWEREQ,
-                value: "9"
-            })
-        ];
-
-        const testClauses = [
-            new Clause({filters: [filtersTest[0]]}),
-            new Clause({filters: [filtersTest[1]]}),
-            new Clause({filters: [filtersTest[2]]}),
-            new Clause({filters: [filtersTest[3]]}),
-            new Clause({filters: [filtersTest[4]]}),
-            new Clause({filters: [filtersTest[5]]}),
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let view0 = new View({
-            metrics: [],
-            dimensions: dims,
-            origin: false,
-            clauses: clauses
-        });
-
-        expect(g.addView(view0)).to.be.true;
-
-        const query: Query = { metrics: [], dimensions: dims, clauses: testClauses };
-        let children = g.cover(query);
-        expect(children).to.have.length(1);
-        expect(children[0].id === view0.id).to.be.true;
-    });
-
-    it("should cover the query, not using filters of intervals", () => {
-        let dims = [
-            new Dimension({name: "dim:0", dataType: DataType.FLOAT}),
-            new Dimension({name: "dim:1", dataType: DataType.FLOAT}),
-            new Dimension({name: "dim:2", dataType: DataType.DATE}),
-        ];
-
-        const filters = [
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.GREATEREQ,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.LOWER,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.GREATER,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.LOWEREQ,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.GREATEREQ,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.LOWER,
-                value: "0"
-            })
-        ];
-
-        const clauses = [
-            new Clause({filters: [filters[0]]}),
-            new Clause({filters: [filters[1]]}),
-            new Clause({filters: [filters[2]]}),
-            new Clause({filters: [filters[3]]}),
-            new Clause({filters: [filters[4]]}),
-            new Clause({filters: [filters[5]]}),
-        ];
-
-        const filtersTest = [
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.GREATER,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[0],
-                operator: FilterOperator.LOWEREQ,
-                value: "10"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.GREATEREQ,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[1],
-                operator: FilterOperator.LOWER,
-                value: "11"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.GREATER,
-                value: "0"
-            }),
-            new Filter({
-                target: dims[2],
-                operator: FilterOperator.LOWEREQ,
-                value: "10"
-            })
-        ];
-
-        const testClauses = [
-            new Clause({filters: [filtersTest[0]]}),
-            new Clause({filters: [filtersTest[1]]}),
-            new Clause({filters: [filtersTest[2]]}),
-            new Clause({filters: [filtersTest[3]]}),
-            new Clause({filters: [filtersTest[4]]}),
-            new Clause({filters: [filtersTest[5]]}),
-        ];
-
-        let g = new Graph();
-
-        for (let i = 0; i < 3; ++i) {
-            expect(g.addDimension(dims[i])).to.be.true;
-        }
-
-        let views = [
-            new View({
-                metrics: [],
-                dimensions: dims,
-                origin: false
-            })
-        ];
-
-        for (let  i = 0; i < testClauses.length; ++i) {
-            views.push(new View({
-                metrics: [],
-                dimensions: dims,
-                origin: false,
-                clauses: [clauses[i]]
-            }));
-        }
-
-        for (let  i = 0; i < views.length; ++i) {
-            expect(g.addView(views[i])).to.be.true;
-        }
-
-        const query: Query = { metrics: [], dimensions: dims, clauses: testClauses };
-        let children = g.cover(query);
-        expect(children).to.have.length(1);
-        expect(children[0].id === views[0].id).to.be.true;
-    });
-
-});
diff --git a/src/util/hash.spec.ts b/src/util/hash.spec.ts
deleted file mode 100644
index 37688cb470453cf1c0ed47f19c5cb7334fed9ff0..0000000000000000000000000000000000000000
--- a/src/util/hash.spec.ts
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { Hash } from "./hash";
-
-describe("hash utility library", () => {
-    it("should generate a sha1 hash for a collection of objects", () => {
-        let h = Hash.sha1("test", { obj: "test" }, ["list", "of", "things"]);
-
-        expect(h).to.be.a("string");
-        expect(h).to.not.be.empty;
-    });
-
-    it("should generate the same hash for the same input", () => {
-        let h1 = Hash.sha1("test", { obj: "test" }, 43.2, ["list", "of", "things"]);
-        let h2 = Hash.sha1("test", { obj: "test" }, 43.2, ["list", "of", "things"]);
-
-        expect(h1).to.be.a("string");
-        expect(h2).to.be.a("string");
-        expect(h1).to.be.equal(h2);
-    });
-
-    it("should generate the same hash for different order of input", () => {
-        let h1 = Hash.sha1("test", { obj: "test" }, ["list", "of", "things"]);
-        let h2 = Hash.sha1("test", ["list", "of", "things"], { obj: "test" });
-
-        expect(h1).to.be.a("string");
-        expect(h2).to.be.a("string");
-        expect(h1).to.be.equal(h2);
-    });
-
-    it("should not generate the same hash for distinct input", () => {
-        let h1 = Hash.sha1("test", { obj: "test" }, ["list", "of", "things"]);
-        let h2 = Hash.sha1("test", { obj: "test", x: true },
-            ["list", "of", "things"]);
-
-        expect(h1).to.be.a("string");
-        expect(h2).to.be.a("string");
-        expect(h1).to.not.be.equal(h2);
-    });
-
-    it("should not generate the same hash for different order in deep lists", () => {
-        let h1 = Hash.sha1("test", { obj: "test" }, ["list", "of", "things"]);
-        let h2 = Hash.sha1("test", { obj: "test" }, ["of", "list", "things"]);
-
-        expect(h1).to.be.a("string");
-        expect(h2).to.be.a("string");
-        expect(h1).to.not.be.equal(h2);
-    });
-
-    it("should throw an error for unhashable objects", () => {
-        expect(() => {
-            Hash.sha1(
-                "test",
-                function (a: number, b: number) { return a + b; },
-                ["of", "list", "things"]
-            );
-        }).to.throw(TypeError);
-    });
-});
diff --git a/src/util/tsort.spec.ts b/src/util/tsort.spec.ts
deleted file mode 100644
index cbb268c47a198de482461745a3b9a85487556980..0000000000000000000000000000000000000000
--- a/src/util/tsort.spec.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2015 Centro de Computacao Cientifica e Software Livre
- * Departamento de Informatica - Universidade Federal do Parana
- *
- * This file is part of blendb.
- *
- * blendb is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * blendb is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with blendb.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-import { expect } from "chai";
-
-import { Tsort, TsortDep } from "./tsort";
-
-describe("topological sorting utility library", () => {
-    it("should sort the dependencies", () => {
-        let deps: TsortDep[] = [
-            {value: "dim:1", dependOf: "dim:0"},
-            {value: "dim:2", dependOf: "dim:0"},
-            {value: "dim:3", dependOf: "dim:1"},
-            {value: "dim:4", dependOf: "dim:2"},
-            {value: "dim:5", dependOf: "dim:3"},
-            {value: "dim:5", dependOf: "dim:2"},
-        ];
-        let sorted = Tsort.dependencies(deps);
-        let res: string[] = ["dim:0", "dim:2", "dim:4", "dim:1", "dim:3", "dim:5"];
-
-        expect(res).to.be.a("array");
-        expect(res).to.not.be.empty;
-        for (let i = 0; i < sorted.length; ++i) {
-            expect(sorted[i]).to.be.a("string");
-            expect(sorted[i]).to.be.eql(res[i]);
-        }
-    });
-});
diff --git a/src/util/viewHandler.ts b/src/util/viewHandler.ts
index 0e0252df1bc459e3db18bd4532e0d33dcfd4d3f3..bbee932e0ade4bad60cf2994172c14398f4025a6 100644
--- a/src/util/viewHandler.ts
+++ b/src/util/viewHandler.ts
@@ -320,35 +320,17 @@ export class ViewHandler {
             dimensions in the keys.
         */
         const views = v.map((i) => i);
-        let similarity = 0;
-        let idx0 = 0;
-        let idx1 = 1;
+        let dims: Dimension[] = [];
+        let mets: Metric[] = [];
+        let clauses: Clause[] = [];
         for (let i = 0; i < views.length; ++i) {
-            for (let j = i + 1 ; j < views.length; ++j) {
-                const pi = views[i].dimensions;
-                const pj = views[j].dimensions;
-                let score = this.similarDimensions (pi, pj);
-                if (similarity < score) {
-                    similarity = score;
-                    idx0 = i;
-                    idx1 = j;
-                }
-            }
+            mets = mets.concat(views[i].metrics);
+            dims = dims.concat(views[i].dimensions);
+            clauses = clauses.concat(views[i].clauses);
         }
 
-        const partial0 = views[idx0];
-        const partial1 = views[idx1];
-
-        views.splice(idx1, 1);
-        views.splice(idx0, 1);
-
-        let dims = partial0.dimensions.concat(partial1.dimensions);
         dims = ViewHandler.removeDuplicatedDimensions(dims);
-
-        let mets = partial0.metrics.concat(partial1.metrics);
         mets = ViewHandler.removeDuplicatedMetrics(mets);
-
-        let clauses = partial0.clauses.concat(partial1.clauses);
         clauses = ViewHandler.removeDuplicatedClauses(clauses);
 
         const partialQuery: Query = {
@@ -357,9 +339,8 @@ export class ViewHandler {
             clauses: clauses
         };
 
-        const partial = ViewHandler.queryJoin(partialQuery, [partial0, partial1]);
-        views.push(partial);
-        return views;
+        const partial = ViewHandler.queryJoin(partialQuery, views);
+        return [partial];
     }
 
     /**
diff --git a/test/mocha.opts b/test/mocha.opts
index a77aa39d8340d7ebfdee336b6ad5585c46125f13..8a41d4091264165362df1f7af00c23df25f7b7dd 100644
--- a/test/mocha.opts
+++ b/test/mocha.opts
@@ -2,9 +2,9 @@
 --reporter spec
 --ui bdd
 --recursive
---colors
---timeout 60000
---slow 300
+--no-colors
+--timeout 6000000
+--slow 0
 --check-leaks
 --globals expect
 ./src/**/*.spec.ts